Viewing 15 posts - 1,486 through 1,500 (of 2,436 total)
last_batch in sysprocesses is the place to look. Try an experiment yourself. Open up a QA session and run sp_who. Then let it go idle for 15-20 minutes. Then open...
March 1, 2006 at 11:23 am
For large operations (them 'batch') I'd opt for SQLCMD.
The sqlcmd utility allows you to enter Transact-SQL statements, system procedures, and script files at the command prompt. This utility uses OLE...
March 1, 2006 at 9:52 am
I disagreee. It can and should be in order to tighten security. However never do this without researching and testing. As far as I know the only reason that you should...
March 1, 2006 at 9:46 am
I too chose the closest answer (a reasonable guesstimate) but as always ran the T-SQL code just to make sure (especially since I could not remember that part of my...
March 1, 2006 at 9:35 am
I agree with many points ... most importantly, licensing is a nightmare and you need a reasonabley versed techie to use the sight. However this is one of the few times...
March 1, 2006 at 9:25 am
For such a short article it's certainly a lot to wrap your mind around !
February 28, 2006 at 10:10 am
We drop them from all environments.
February 28, 2006 at 9:47 am
... doesn't it seem counter productive to have an index where a portion of it may be 'NULL' ???
February 28, 2006 at 9:40 am
I'd try it again and in another window execute sp_who to look for blocking. Then maybe check the SQL Server errorlog and the Windows Event logs. As a last resort...
February 28, 2006 at 9:28 am
Before looking at the OS and configuration I'd start with:
Round I
DBCC UPDATEUSAGE
UPDATE STATISTICS (with FULL scan) for all tables
exec sp_recompile for all tables
exec sp_refreshview for all...
February 23, 2006 at 12:43 pm
SETUSER is included for backward compatbility in SQL 2K5. BOL states you should use ECECUTE AS instead.
February 23, 2006 at 11:36 am
I can spot only a couple of differences between your process and mine. I use the Service Control Manager to start/stop things as a service during master database recovery. The other...
February 21, 2006 at 2:25 pm
I just reread the entire thread. The 'error' you are getting after the master database has been restored is normal. Anytime the master database has been restored SQL Server immediately...
February 21, 2006 at 1:53 pm
An absolutely wonderful article David. All to often it is sad and very true. I've had my share of blank stares out windows and walking the hallways muttering ... damn,...
February 21, 2006 at 11:13 am
Here's everything you need to know for SQL 2000:
http://support.microsoft.com/default.aspx?kbid=314546#top
http://support.microsoft.com/default.aspx?kbid=246133
http://support.microsoft.com/default.aspx?scid=kb;en-us;253817
http://support.microsoft.com/default.aspx?scid=kb;EN-US;240867
http://support.microsoft.com/kb/224071/en-us
http://support.microsoft.com/kb/304692/EN-US/
Have fun !
February 21, 2006 at 10:59 am
Viewing 15 posts - 1,486 through 1,500 (of 2,436 total)