Viewing 15 posts - 31 through 45 (of 91 total)
My answer was based on the logical understanding of instance configurations. And yes I got it correct. Good QoTD. Thanks.
September 28, 2011 at 11:38 pm
Yes Auto Close and Auto Shrink are not good options.
Also please update us with your findings. I guess Trace thingy must helped you.
Best Regards,
Sudhir
September 28, 2011 at 7:19 am
Or you may also try these:
select * from sys.sysprocesses
EXEC sp_who
EXEC sp_who2
Please see there are ProgramName, HostName columns to help you up to some extents.
September 27, 2011 at 1:25 am
Interesting Question, revising about the issue. Thanks.
September 27, 2011 at 12:59 am
Please refer these URLs.
http://msdn.microsoft.com/en-us/magazine/cc163854.aspx
http://msdn.microsoft.com/en-us/library/ff647813.aspx
Also I would suggest you for following things if something has changed last week at application level:
1. See how many connection strings are being created in your...
September 27, 2011 at 12:40 am
For continuously calling usp_exampleproc until an error occurs you could of course use a while loop:
Why would one like to do so?? I can't understand.:unsure:
For logging you can write your...
September 26, 2011 at 5:15 am
Execute statement :
EXEC CreateTable TableName= 'CommaSEperated3' ,@InputTable='AtulTest'
Please read your question again by yourself. TableName should be written as @TableName. Also your procedure name is different in definition.
September 26, 2011 at 12:57 am
I am part of development of an erp application.I need to capture the history of data which is mandatory for capturing history..details.
Can anyone give solution-how to handle this scenario by...
September 24, 2011 at 6:08 am
You may use code like this:
ALTER TABLE [TableName] WITH NOCHECK
ADD CONSTRAINT [PrimaryKeyName] PRIMARY KEY CLUSTERED ([ExistingColumn])
WITH (FILLFACTOR = 75, ONLINE = ON, PAD_INDEX = ON);
September 23, 2011 at 3:13 pm
Jason:
It is one of those cases where it is safe to bet that the question is about the current release or within the past 2 releases.
Yes, I do agree...
September 22, 2011 at 10:49 pm
This time I tried logically and thought that after Truncate command the distribution statistics must be deleted. But I got wrong. Anyways learnt something from this.
But still I think...
September 22, 2011 at 10:26 pm
Open or type a Transact-SQL script that contains the queries you want to analyze into the Management Studio query editor. After the script has been loaded into the Management Studio...
September 20, 2011 at 10:55 pm
Viewing 15 posts - 31 through 45 (of 91 total)