Viewing 5 posts - 1 through 5 (of 5 total)
Another idea is to use a job with Agent Tokens to name your log file by "job start time" for instance.
Here is an example of what the job text might look...
April 20, 2005 at 8:34 am
This query gives you the row size of every table in the db.
select o.name, sum(c.length)
from sysobjects o,
syscolumns c
where o.id = c.id
and o.type = 'U'
group by o.name
order...
February 18, 2005 at 8:43 am
There are a few different ways to do this. The method I use the most is to create a temp table in the parent stored procedure and then insert the...
November 30, 2004 at 8:33 am
In the past I have used 2 techniques to by pass triggers. One is to create a dummy temp table on the connection and then check in the trigger for...
November 24, 2004 at 8:52 am
Here is code that will give you the table name to which the currently executing trigger belongs.
Create Trigger <triggerName> on <table>
for update, insert, delete
as
Select TableName = Object_Name(Parent_Obj)
From SysObjects o
Where...
October 26, 2004 at 8:32 am
Viewing 5 posts - 1 through 5 (of 5 total)