Viewing 15 posts - 136 through 150 (of 191 total)
this post from microsoft says
http://msdn.microsoft.com/en-us/library/ms189799.aspx
Because SQL Server does not support user-defined triggers on system tables,
we recommend that you do not create user-defined triggers on system tables.
July 28, 2009 at 1:06 pm
I have created this trigger but its still not what i want. i guess its hard to achieve this.
ALTER TRIGGER [check_column_names]
ON DATABASE
for CREATE_TABLE
AS
BEGIN
DECLARE @data...
July 28, 2009 at 12:50 pm
Well thanks but i need to create a DDL trigger means i need to prevent user from creating table if he is not
creating it according to my standard.
--this...
July 28, 2009 at 12:24 pm
I didnt get that. but here is the question.I have one select statement in my environment
running since last 6 months with 100 different parameters for 100 times in the morning
say...
June 9, 2009 at 10:53 am
Now if i try the same thing with select statement and supply 100 different parameters then wht will be the result?
sql will create 100 different execution...
June 9, 2009 at 8:13 am
I have 8 GB RAM on windows 2003 server Enterprise Edition with SP2 and AWE is enabled on sql server.
I can see this after running sp_configure
name ...
May 27, 2009 at 7:21 pm
dbcc traceon(1204,3605,-1)
dbcc traceon(1205,-1)
dbcc traceon(3604,-1)
All of above...
May 21, 2009 at 2:39 pm
Thanks for ur feedback
But its a kind of small environment and not large traffic so may be
they are doing it since long back to avoid more memory,I/o and resources...
May 12, 2009 at 3:56 pm
Well I should not kill processes and it can create a mess.I agree.
But if i am doing it then I am also taking care of innocent processes
and i...
May 12, 2009 at 3:41 pm
Thats a good option to use scripts.
But is there any possible solution for this situation..?
Like if I start taking my trn log backup job for every 15 minutes for that...
April 29, 2009 at 12:24 pm
Wow that’s a nice description. I will correct all things but
If u consider my scenario(I know its not good) but it used to work fine until now.
The question is...
March 25, 2009 at 2:26 pm
Well thanks for ur replies but
Books online says
MaximumErrorCount The maximum number of errors that can occur before a package stops running. The default value of this property is 1.
In...
March 25, 2009 at 1:51 pm
I can see these settings
Fail Package on Failure =False (package fails on step-1 and 2 but still goes to next step)
Max ErrorCount =1
So according to u I need...
March 25, 2009 at 1:38 pm
Viewing 15 posts - 136 through 150 (of 191 total)