Firstly, I have more or less zero knowledge of SQl but I have some SQL code that needs to be installed on a clients DB. We don't have access to the clients server to directly test things and it is paramount that nothing bad happens to their DB.
The SQL code is a DB trigger that is called "after insert", e.g. when an event is entered in to the DB the trigger is called. The trigger passes the data to an external windows DLL library, which in turn sends the data to our remote server through UDP.
The SQL works fine in SQL Server 2005 but the "create assembly" procedures do not seem to be supported on SQL Server 2000.
I need a simple work around to accomplish this task. It is perfectly feasible to replace the DLL with some other means of establishing a UDP connection to our server.
I am very lost since I really don't have a clue about SQL. Any advice much appreciated. So far the advice seems to be update to >= SQL 2005, but that is simply not feasible since it is our clients DB and government agencies don't like changing their software (we still access computers running NT4, win95, and earlier....).
The SQL code is a DB trigger that is called "after insert", e.g. when an event is entered in to the DB the trigger is called. The trigger passes the data to an external windows DLL library, which in turn sends the data to our remote server through UDP.
The SQL works fine in SQL Server 2005 but the "create assembly" procedures do not seem to be supported on SQL Server 2000.
I need a simple work around to accomplish this task. It is perfectly feasible to replace the DLL with some other means of establishing a UDP connection to our server.
I am very lost since I really don't have a clue about SQL. Any advice much appreciated. So far the advice seems to be update to >= SQL 2005, but that is simply not feasible since it is our clients DB and government agencies don't like changing their software (we still access computers running NT4, win95, and earlier....).