Viewing 15 posts - 1,456 through 1,470 (of 9,399 total)
June 3, 2017 at 6:13 pm
For connections to SQL, the following query will give you a table of current sessions.
SELECT *
FROM sys.dm_exec_sessions
WHERE session_id > 50;
June 3, 2017 at 6:00 pm
Also check the file properties on both the data and log files to ensure they're not read-only. If they're read-only because of the SAN snapshot and you don't have permissions...
June 3, 2017 at 5:45 pm
Here's an article by Wayne Sheffield that explains the great technique. http://www.sqlservercentral.com/articles/comma+separated+list/71700/
June 3, 2017 at 5:41 pm
Select Code From [MyDatabase$Job Queue]
Where [Last Heartbeat] <
DateAdd(hour, 5, GETDATE())
DateAdd(hour, 5, GETDATE())
You do realize that...
June 3, 2017 at 3:18 pm
Nice article, Mickey. I missed it when it was first published, but it sounds like the stuff I talk about all the time.
June 3, 2017 at 3:12 pm
Grant addressed hardware and Jeff addressed software, so I won't go into either one except to say that I have experience with what they've both said. Hardware and efficiency of...
June 3, 2017 at 3:06 pm
Boy, what a great editorial. Your point about the British Airway press releases and statements being vetted by lawyers sure was on point. In fact, that's what I think is...
June 3, 2017 at 2:56 pm
The article looks like it could be interesting, but without the actual XML to play with, it really doesn't give me anything to test or try. A picture of part...
June 3, 2017 at 2:34 pm
Grant, first off let me compliment you on your editorial - nice job. Let me next tell you that my Windows 10 Pro updates itself and restarts whenever it wants...
June 3, 2017 at 1:36 pm
Maybe most of your guys it is Simple question and it is simple question...
June 3, 2017 at 1:15 pm
Also, the data is written to the MDF and the log is written to the LDF. SQL first logs (LDF) the fact that it's creating, deleting or updating something. It...
June 3, 2017 at 9:04 am
June 2, 2017 at 8:51 pm
Viewing 15 posts - 1,456 through 1,470 (of 9,399 total)