![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I'm using SQL 2000, which is integrated with a VB.NET 2003 app. I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger, with the exception of the table name. I could manually change the table name in the trigger and create it, over and over, but I'd like to automate this - by iterating through the collection of tables and passing the tablename to something that would create the audit trigger for that table. Any ideas? With any scripting language I can create the text of the CREATE TRIGGER procedure for each table and use simple text replacement, but how do I automate that inside of SQL? |
#3
| |||
| |||
|
|
I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger, with the exception of the table name. |
#4
| |||
| |||
|
|
I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger, with the exception of the table name. Go tell the lawyers and the accountants that the audit data is being kept in the same schema as the data being audited. They will want to put that in the "reason for termination" in your personnel file. Get a third party audit tool that will run outside the schema and trap things as they cross the system boundary. This data should then be sent to physically separate data store, so that if (read: WHEN) the database is trashed or crashes, you can still reconstruct the audit trail. Do you keep your backup on the same hard drive as the database? No! Of course not! This is the same thing. |
#5
| |||
| |||
|
|
I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger, with the exception of the table name. Go tell the lawyers and the accountants that the audit data is being kept in the same schema as the data being audited. They will want to put that in the "reason for termination" in your personnel file. Get a third party audit tool that will run outside the schema and trap things as they cross the system boundary. This data should then be sent to physically separate data store, so that if (read: WHEN) the database is trashed or crashes, you can still reconstruct the audit trail. Do you keep your backup on the same hard drive as the database? No! Of course not! This is the same thing. |
#6
| |||
| |||
|
|
Ots (otsmc... (AT) yahoo (DOT) com) writes: I'm using SQL 2000, which is integrated with a VB.NET 2003 app. I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger, with the exception of the table name. I could manually change the table name in the trigger and create it, over and over, but I'd like to automate this - by iterating through the collection of tables and passing the tablename to something that would create the audit trigger for that table. Any ideas? With any scripting language I can create the text of the CREATE TRIGGER procedure for each table and use simple text replacement, but how do I automate that inside of SQL? I don't see why you would use T-SQL to generate the triggers? Why not simply use a scripting language of your choice for the job. Besides I don't get a good feeling when you say that it is the same trigger, save for the table name. That indicates that you are looping over the column set, use a lot of dynamic SQL. It's not going to be healthy for the performance of your system. It would be a better idea to that looping in the trigger-generator, so that the trigger code is static SQL only. An even better idea may be to invest which third-party products that could meet your needs. ApexSQL has a trigger-based product SQLAudit. There are also auditing solutions that works from the transaction long, Lumigent has one I know. -- Erland Sommarskog, SQL Server MVP, esq... (AT) sommarskog (DOT) se Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books... Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |
#7
| |||
| |||
|
|
My goodness! Maybe I should explain a little... this is a configuration database for a large industrial process. The database itself is backed up every night, so the machinery / process can always be restored to a known working state. |
|
The purpose of my audit table, which is indeed stored in the same database, is so that when the process begins behaving differently, folks can go back and see that, during a previous shift, an operator tweaked (or fat fingered) an operational value. |
|
I suppose the audit table could indeed provide a "reason for termination" someday, but hopefully not mine... |
#8
| |||
| |||
|
|
You were right, Erland, the performance of the trigger was quite poor. In considering your response, and after looking through your online documention (thanks for the providing such informative work on dynamic SQL, it's much appreciated), I re-wrote the trigger for one table using no dynamic SQL. I compare the inserted and deleted logical tables field by field, and it seems to perform much better. This particular table has over 130 columns, however, and hand coding is quite tedious (the test trigger had over 130,000 characters. So, of course, I'd like to automate the task, which brings me back to my original post. It would seem straightforward enough to build the trigger as a varchar string, looping through the table's column names and inserting the 15 or so lines that check for an insert, update, or delete for each. Unfortunately, I'm stuck w/ SQL 2000, and would quickly exceed the 8000 character limit. In the past I used your tip of building the SQL statement in pieces, and using EXEC while concatenating the pieces together (thanks again!), but in that case I knew how many pieces I would need in advance. Here I do not, as the size of the entire 'CREATE TRIGGER ...' procedure is dependant upon the number of columns in the table, which is variable. I could go the third-party audit software route, but then I wouldn't learn anything. I could use something like VB to create the text of the trigger, and then just cut and paste it into Query Analyzer, but my employer wants this done as a stored procedure (they want to limit the number of external applications that have to be maintained). So, what I'd like to do is write a stored procedure that dynamically builds the individual pieces of the trigger column by column, then use EXEC( col1trigger + col2trigger + ... + col_n_trigger) to create the trigger itself. The question is how to handle a variable number of arguments to EXEC... any ideas out there? On May 2, 4:29 pm, Erland Sommarskog <esq... (AT) sommarskog (DOT) se> wrote: Ots (otsmc... (AT) yahoo (DOT) com) writes: I'm using SQL 2000, which is integrated with a VB.NET 2003 app. I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger, with the exception of the table name. I could manually change the table name in the trigger and create it, over and over, but I'd like to automate this - by iterating through the collection of tables and passing the tablename to something that would create the audit trigger for that table. Any ideas? With any scripting language I can create the text of the CREATE TRIGGER procedure for each table and use simple text replacement, but how do I automate that inside of SQL? I don't see why you would use T-SQL to generate the triggers? Why not simply use a scripting language of your choice for the job. Besides I don't get a good feeling when you say that it is the same trigger, save for the table name. That indicates that you are looping over the column set, use a lot of dynamic SQL. It's not going to be healthy for the performance of your system. It would be a better idea to that looping in the trigger-generator, so that the trigger code is static SQL only. An even better idea may be to invest which third-party products that could meet your needs. ApexSQL has a trigger-based product SQLAudit. There are also auditing solutions that works from the transaction long, Lumigent has one I know. -- Erland Sommarskog, SQL Server MVP, esq... (AT) sommarskog (DOT) se Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books... Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/books.mspx- Hide quoted text - - Show quoted text - |
#9
| |||
| |||
|
|
It would seem straightforward enough to build the trigger as a varchar string, looping through the table's column names and inserting the 15 or so lines that check for an insert, update, or delete for each. Unfortunately, I'm stuck w/ SQL 2000, and would quickly exceed the 8000 character limit. |
|
I could use something like VB to create the text of the trigger, and then just cut and paste it into Query Analyzer, but my employer wants this done as a stored procedure (they want to limit the number of external applications that have to be maintained). |
#10
| |||
| |||
|
|
We don't want too many tools in this company! You must not use hammers! We have very good screwdrivers! Use them to get the nails in place! Doing this in a stored procedure in SQL 2000 is just sheer stupidity. In SQL 2005, it's different, as you could put your VB code in a CLR stored procedure. And if you still like to hurt yourself and do string manipulation in T-SQL, you could use nvarchar(MAX). I'll tell you what, if your employer is that boneheaded, tell him that you really must use Screwdriver 2005 for this, but the Express version is sufficient. That is, download and install an instance of SQL Express on the same machine, and set up a linked server. Built the triggers on SQL Express, and then use EXEC() AT to deploy them on SQL 2000. Of course, you will still do the job faster with a VB or a Perl hammer, assuming that you have experience of string manipulation in these languages. Then again, since you are employed and not a consultant that charge by the other, maybe your employer doesn't care. -- Erland Sommarskog, SQL Server MVP, esq... (AT) sommarskog (DOT) se Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books... Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |
![]() |
| Thread Tools | |
| Display Modes | |
| |