Viewing 15 posts - 41,746 through 41,760 (of 49,571 total)
The message saying the connection was forcefully closed usually means that either the connection was explicitly killed by someone, or the query hit a high severity error and was disconnected.
Both...
January 14, 2009 at 1:51 pm
SQL will cache frequently used data. If the database is often used, the data will be in memory.
Pintable is still usable on SQL 2005, but it does nothing.
January 14, 2009 at 1:42 pm
Before you go truncating your transaction log on a regular basis, please note that truncating the log is not a good maintenance practice.
January 14, 2009 at 1:40 pm
Grant Fritchey (1/14/2009)
Some consultant somewhere is going to make a mint.
Pity it won't be me.
It took me all of 20 sec or so to find that on google,...
January 14, 2009 at 1:37 pm
Bob Hovious (1/14/2009)
January 14, 2009 at 1:15 pm
I believe it is required in the latest SQL standard. (correct me if I'm wrong, I haven't actually read the standards docs)
One of the reasons that it will be required...
January 14, 2009 at 1:13 pm
Joseph (1/14/2009)
What if I run some kind of audit that requires the snapshot to represent a specific date and time?
Don't let the disk run out of space. In addition, make...
January 14, 2009 at 1:05 pm
Just don't call that directly from within a trigger. I detailed all the reasons earlier in this thread.
January 14, 2009 at 1:02 pm
Sandra Skaar (1/14/2009)
Total Drives (C, E, and F):Disk Writes/Sec: 10.74
Disk Reads/Sec: .067
Not so interested in the reads/sec. What does the avg sec/read and avg sec/write look like?
January 14, 2009 at 12:53 pm
foxjazz (1/14/2009)
January 14, 2009 at 12:50 pm
foxjazz (1/14/2009)
I have triggers that call a stored procedure that sends a message using service broker.
Ok, I'm confused. You didn't mention anything about service broker before.
Wouldn't it be possible to...
January 14, 2009 at 9:43 am
foxjazz (1/14/2009)
It's too bad however I can't use it to send a udp message to listening clients.
Why not? Have the service broker queue's activation procedure be a CLR procedure. It...
January 14, 2009 at 9:39 am
Why the cursor?
DELETE FROM Logins
WHERE UserID IN (SELECT USER_ID
FROM...
January 14, 2009 at 9:30 am
In the future, if you post pieces from the error log, please find and open the error log in a text editor. The log reader within management studio puts the...
January 14, 2009 at 9:26 am
Ok, let's see....
4 processes involved in the deadlock,
Process 1 - Spid 174, running the select on line 136 of the procedure with ID 2099048 in database 20. It wants a...
January 14, 2009 at 9:13 am
Viewing 15 posts - 41,746 through 41,760 (of 49,571 total)