Viewing 15 posts - 301 through 315 (of 769 total)
If possible, can you help in introducing threading to this so that instead of reading servername one by one, it can do that in batches and can save time in...
July 30, 2015 at 4:48 pm
Use of 0 will delete all .bkp files from the path but I need to delte files older than the date I mentioned,.
July 29, 2015 at 5:08 pm
If the question could have been asked to check the returned value:
SELECT Value
FROM #tmpOldValue
WHERE Value NOT IN (SELECT Value FROM #tmpNewValue)
The answer would have been := 6
July 28, 2015 at 9:07 am
Got it correct. But Most of the time I have observed that the answer may appear diff in diff cases.
July 27, 2015 at 8:30 am
I think inside the begin trans...commit, it all are counted as a single transaction. Hence 1 row is affected.
July 24, 2015 at 4:03 pm
Microsoft SQL Server 2008 Express edition has a database size limit to 4GB. Microsoft SQL Server 2008 R2 Express edition has a database size limit to 10GB. Microsoft SQL Server...
July 24, 2015 at 1:19 pm
Great One.
July 23, 2015 at 12:25 pm
Thnx Wayne. Appreciate your response.
July 23, 2015 at 12:14 pm
To the Room, this is my final query now..
--1.
DECLARE @sn NVARCHAR(1000);
EXEC master.dbo.xp_regread
'HKEY_LOCAL_MACHINE',
'SYSTEM\CurrentControlSet\services\MSSQLServer',
'ObjectName',
@sn OUTPUT;
SELECT @sn;
--2.
declare @string VARCHAR(4000);
SET @string = 'setspn -L "' + @sn + '"'
select @string
exec xp_cmdshell...
July 23, 2015 at 12:08 pm
Many thanks, Crystal. Good Day.
July 23, 2015 at 11:58 am
IS this a good query to check or do you suggest any other probable best way to find the details? Please suggest
select net_library,loginame,hostname,spid from sysprocesses
where spid > 50 and net_library...
July 23, 2015 at 11:45 am
Good Question. Little knowledge on theoretical it needs but a nice question.
July 23, 2015 at 11:39 am
Viewing 15 posts - 301 through 315 (of 769 total)