Viewing 10 posts - 1 through 10 (of 10 total)
I will write values to a debug_table to debug processing within a trigger. ex. create debug_table(code varchar(20), desc varchar(254))
For stored procs, for simple debugging I use a print.
For more...
January 16, 2015 at 7:23 am
Excellent. I use this method too but for temp tables.
select * into #temp_table from perm_table where 1=2
April 23, 2010 at 8:07 am
Just an honest real time sharing of information; you don't have to agree. Our conversion to logical indexes along with stored proc coding enhancements is making incredible improvements.... and we...
March 16, 2010 at 9:31 am
We have many logical clustered indexes larger than this and do not experience page splitting. Our databases with the volume of data in them would not perform with a...
March 16, 2010 at 9:08 am
Nice article with great statistics.
Although in the real world, I would think that a table containing only distinct products would be available, and that on the SalesDetail table placing the...
March 16, 2010 at 8:58 am
I do agree with Gail Shaw's articles about the indexes, but I did not read where he suggested to make the clustered unique index on the unique identity column of...
March 12, 2010 at 7:10 am
Why would you cluster an index for an Identity column key? I understand a unique index on an identity key, but clustering is for organizing your data on the...
March 11, 2010 at 6:01 am
You can add a temp table check at the beginning of the trigger like below:
if object_id('tempdb..#skip_trigger) is not null
return
-----------------------------------------------
Then on the occasions when you want...
October 12, 2009 at 8:23 am
We did not use SSIS. We found that bcp worked best to transfer data from Sybase to MS SQL with our thousands of tables and many being quite large,...
June 23, 2009 at 2:09 pm
This past year we converted multiple instances of Sybase servers having eleven integrated databases on each to MS SQL, and we used the Migration Assistant as one of tools to...
June 23, 2009 at 1:20 pm
Viewing 10 posts - 1 through 10 (of 10 total)