Viewing 15 posts - 151 through 165 (of 1,580 total)
Thanks for the information; I will check it out 🙂
November 14, 2014 at 7:15 am
2 days after-the-fact, a full check returns no errors
DBCC CHECKDB ('MYDB') WITH ALL_ERRORMSGS, NO_INFOMSGS
September 9, 2014 at 6:53 pm
You maybe able to uses the sysprocesses table to determine the hostprocess ID. You can use the hostprocess ID to find the PID on the server it originated from:SELECT
...
September 4, 2014 at 11:08 am
Interesting.
On the other server where I restored the latest full/diff backup, I ran a serious of checks (including the ones you mentioned) and finished it all off with DBCC CHECKDB('SSRS')...
September 4, 2014 at 10:43 am
Thanks Gail, as always I appreciate the feedback. Yes, I tried the restart and while it resolved the CLR issues, it still comes back after running a full blown...
September 3, 2014 at 12:16 pm
Interestingly enough, running this returned no errors
EXECUTE sp_MSforeachtable 'PRINT ''?''; DBCC CHECKTABLE ([?]) WITH NO_INFOMSGS, ALL_ERRORMSGS'
September 3, 2014 at 11:43 am
What exactly isn't working? Are you getting an error? Could be that one of your values in the CASE is NULL...
August 25, 2014 at 8:29 am
TheSQLGuru (8/18/2014)Don't forget the other part of the equation - Cost Threshold for Parallelism. The default of 5 is universally too low.
What's a good way to determine...
August 18, 2014 at 10:18 pm
Thanks for that clarification 🙂 Appreciate it!
August 8, 2014 at 5:52 pm
hiram.osiris (12/5/2013)
1.-Stop SQL Server service from Configuration Manager
2.-Open CMD console as administrator and go to the following path: C:\Program Files\Microsoft SQL Server\MSSQL11.SQL2012(Here...
August 8, 2014 at 7:43 am
Seems about right but would strongly encourage you to verify that the anonymous/immediate_sync options have been set properly, if they are not set to 0, when you trigger the snapshot...it...
July 28, 2014 at 11:13 am
You can query the BackupSet and BackupMediaFamily tables in the msdb database:SELECT
CONVERT(CHAR(100), SERVERPROPERTY('Servername')) AS Server,
bu.database_name,
bu.backup_start_date, ...
July 28, 2014 at 9:24 am
Thanks Scott, that's kind of what I thought might happen but wanted confirmation. I know if the size was "reduced" it would cause that to happen, but wasn't sure...
July 18, 2014 at 2:34 pm
Can what run? The actual shrink process or the rollback?
The shrink process can take days depending on how much you're attempting to shrink at a time...the rollback should be...
July 18, 2014 at 1:33 pm
Killing it won't do any harm whatsoever. It shouldn't take long at all to rollback and it's only doing small chunks behind the scenes
July 18, 2014 at 1:25 pm
Viewing 15 posts - 151 through 165 (of 1,580 total)