Viewing 15 posts - 46 through 60 (of 295 total)
External auditors love this kind of stuff. You need emails to CYA if management insist.
Several years ago, I actually started BCC'ing emails to my web based private account to CYA...
October 21, 2005 at 8:32 am
Unless you have the switches set to produce a report text file, you'll never know unless there is soemthing in teh SQL error log.
Check the job command line to see if...
October 21, 2005 at 8:27 am
Try this:
back it up
reconnect to the box as "sa"
restore it
(not tried it myself)
October 18, 2005 at 8:58 am
I'd expect this. What are you asking?
This is an average figure, over 249 extents or between 1985 and 1992 pages.
An average of only 4.1 bytes difference free per page. 1992...
October 18, 2005 at 7:14 am
I agree with SQLBill, but a bit of a typo...
RESTORE DATABASE dbname WITH RECOVERY
October 18, 2005 at 6:51 am
No, you are not wrong.
October 3, 2005 at 8:30 am
This is a problem that has been around for ages in SQL Server.
It drove me nuts, I had to restart the SQL services if the email servers were bounced or...
September 30, 2005 at 3:26 am
In this case, just remove the transaction handling - it's just overhead
September 30, 2005 at 12:40 am
It just cuts down the number of perfmon counters loaded and used.
I guess these ones are more intensive to monitor, thus leaving them out frees up resources.
It will have no...
September 28, 2005 at 8:50 am
I've not used this myself.
But it (from BOL):
"Disables the keeping of CPU time and cache-hit ratio statistics. Allows maximum performance."
It doesn't "sacrifice the cache hit ratio".
September 28, 2005 at 8:37 am
Without using BEGIN and COMMIT etc, each DML statement is a transaction in itself.
You can use SET IMPLICIT_TRANSACTIONS ON to do an implicit BEGIN TRAN if you wanted
In your case,...
September 28, 2005 at 8:21 am
The query optimiser may be applying the WHERE in the view after the ISNULL.
In the SQL Server engine, then there is no guarantee of the JOIN being executed before the WHERE...
September 28, 2005 at 7:53 am
This group is in AD by default, just change to advanced view...
But you don't need to do this!
What happens is that the domain account for SQL server can not read...
September 16, 2005 at 8:10 am
Use the scm command line util that comes with SQL to change pwd, stop services, start services etc
See BOL for more
Knock up a batch file that just need runs on each...
September 15, 2005 at 6:47 am
Viewing 15 posts - 46 through 60 (of 295 total)