Viewing 4 posts - 1 through 4 (of 4 total)
Using the alter table ???? disable trigger ???? is totally crap. Shouldn't the trigger fire when some other procedure executes for which it SHOULD fire?
I have implemented the same effect...
October 22, 2003 at 3:06 am
If the variables are going to be used later in the procedure anyway, then what is the harm in fetching all variables in one place and use those where ever...
June 5, 2003 at 6:55 am
Chandu, here is a script that you can run to compact all the databases and their log files in one go.
*****************************
declare db_cur cursor
for
select name from master.dbo.sysdatabases order by name
declare
January 6, 2003 at 7:22 am
Viewing 4 posts - 1 through 4 (of 4 total)