SQL Server Compare field value with its default - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T04:13:02Zhttp://stackoverflow.com/feeds/question/460873http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/460873/sql-server-compare-field-value-with-its-default0SQL Server Compare field value with its default_J_2009-01-20T11:17:36Z2009-01-20T11:50:37Z
<p>I need to iterate through the fields on a table and do something if its value does not equal its default value.</p>
<p>I'm in a trigger and so I know the table name. I then loop through each of
the fields using this loop:</p>
<pre><code>select @field = 0, @maxfield = max(ORDINAL_POSITION) from
INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = @TableName
while @field < @maxfield
begin
...
</code></pre>
<p>I can then get the field name on each iteration through the loop:</p>
<pre><code>select @fieldname = COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME = @TableName
and ORDINAL_POSITION = @field
</code></pre>
<p>And I can get the default value for that column:</p>
<pre><code>select @ColDefault = SUBSTRING(Column_Default,2,LEN(Column_Default)-2)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE Table_Name = @TableName
AND Column_name = @fieldname
</code></pre>
<p>I have everything I need but I can't see how to then compare the 2. Because
I don't have the field name as a constant, only in a variable, I can't see
how to get the value out of the 'inserted' table (remember I'm in a trigger)
in order to see if it is the same as the default value (held now in
@ColDefault as a varchar).</p>
http://stackoverflow.com/questions/460873/sql-server-compare-field-value-with-its-default/460989#4609892Answer by Brent Ozar for SQL Server Compare field value with its defaultBrent Ozar2009-01-20T11:50:37Z2009-01-20T11:50:37Z<p>First, remember that a trigger can be fired with multiple records coming in simultaneously. If I do this:</p>
<pre><code>INSERT INTO dbo.MyTableWithTrigger
SELECT * FROM dbo.MyOtherTable
</code></pre>
<p>then my trigger on the MyTableWithTrigger will need to handle more than one record. The "inserted" pseudotable will have more than just one record in it.</p>
<p>Having said that, to compare the data, you can run a select statement like this:</p>
<pre><code>DECLARE @sqlToExec VARCHAR(8000)
SET @sqlToExec = 'SELECT * FROM INSERTED WHERE [' + @fieldname + '] <> ' + @ColDefault
EXEC(sqlToExec)
</code></pre>
<p>That will return all rows from the inserted pseudotable that don't match the defaults. It sounds like you want to DO something with those rows, so what you might want to do is create a temp table before you call that @sqlToExec string, and instead of just selecting the data, insert it into the temp table. Then you can use those rows to do whatever exception handling you need.</p>
<p>One catch - this T-SQL only works for numeric fields. You'll probably want to build separate handling for different types of fields. You might have varchars, numerics, blobs, etc., and you'll need different ways of comparing those.</p>