Viewing 15 posts - 571 through 585 (of 4,477 total)
It's from the snapshot created by the DBCC CHECKDB process. Try restarting the SQL Server service - it should clean up itself on a restart.
Sue
May 17, 2019 at 6:43 pm
Sorry...posted at the same time. But all of it goes to show how stupid it was to use the term truncate.
May 17, 2019 at 6:16 pm
That's exactly what Jeff is saying, it's really an issue about poor word usage. Microsoft's use of "truncate" for the transaction logs means marking the inactive portions of the log...
May 17, 2019 at 6:13 pm
Some of it is undocumented. The job activity monitory executes several things, collects data into temp tables to eventually get the view you see in SSMS.
Ways to get currently executing...
May 17, 2019 at 5:10 pm
Nope all worked, meant exactly what I wrote.
There have been problems with other QoDs with broken links, incorrect explanations and just poor questions. In comparison to some of those, yours...
May 17, 2019 at 2:13 pm
This is an interesting blog post on the subject:
May 16, 2019 at 8:43 pm
You would just filter on run_date to work in your scenario or possibly include run_time if you are doing last 24 hours.
Sue
May 16, 2019 at 6:54 pm
I thought it was a fun question. I think the thorough explanation, links (that worked) are great!
Thanks for doing such a good job with QoD where it ends up being...
May 16, 2019 at 4:37 pm
You can try playing with something like the following to grab jobs that were successful and just look at the duration of the job (instead of each job step):
May 15, 2019 at 7:23 pm
You can connect with Windows Authentication or SQL login. You can use different processes or whatever but for the login itself, there really aren't other alternatives. Windows or SQL.
Sue
May 14, 2019 at 8:14 pm
No, it's not a DDL operation so a DDL trigger won't fire. You have to pick from several not too clear cut options if you want to get notified about...
May 14, 2019 at 4:44 pm
Usually there is more to the error message...additional error numbers, messages. You may also want to check for any additional error log files in the the directory: Program Files\Microsoft SQL...
May 13, 2019 at 7:59 pm
You can get that error when renaming a computer but not updating the server name using sp_dropserver, sp_addserver. Check the server names with: select @@servername.
Sue
May 13, 2019 at 7:54 pm
No you can't put a trigger on it but I don't think would need an insert trigger. That's why you would poll the view. If nothing else and you aren't...
May 9, 2019 at 9:12 pm
There isn't a specific error number for stack dumps. Have you considered doing something like monitoring sys.dm_server_memory_dumps? There is a row in the view every stack dump that is generated...
May 9, 2019 at 8:24 pm
Viewing 15 posts - 571 through 585 (of 4,477 total)