Viewing 15 posts - 1,471 through 1,485 (of 5,394 total)
Cumulative Updates are, well... Cumulative Updates! 🙂
The first line in the KB article for CU6 should be clear enough:
Cumulative Update 6 contains hotfixes for the Microsoft SQL Server 2008 R2...
August 13, 2012 at 2:23 am
Only CU1 to CU5.
This KB article explains it all: http://support.microsoft.com/kb/2567616/en-us
Glenn Berry has a nice post on the subject:
http://sqlserverperformance.wordpress.com/2012/07/27/sql-server-2008-r2-service-pack-2/
August 13, 2012 at 2:19 am
WayneS (8/12/2012)
For those that enjoy this sort of thing, here is a pretty good comparison of the various running totals methods available.http://www.sqlperformance.com/2012/07/t-sql-queries/running-totals
Thanks for the link, Wayne.
It could look like...
August 13, 2012 at 2:11 am
Lynn Pettis (8/10/2012)
August 10, 2012 at 2:30 pm
anthony.green (8/9/2012)
Yep it is RPO, dont know where I got RTP from, must be a combination of RTO and RPO.
Ah, great. Thanks Anthony.
August 9, 2012 at 7:18 am
ESAT ERKEC (8/9/2012)
How can i merge production db and backup in sys.objects ?
Sorry, can you rephrase? I don't think I understand what you mean.
August 9, 2012 at 7:02 am
anthony.green (8/9/2012)
RTO = Recovery time objective - How long do you have to recover service?RTP = Recovery time point - How much data can you afford to loose?
Weird, I always...
August 9, 2012 at 6:59 am
ESAT ERKEC (8/9/2012)
Restore database dosen't solve this problemsbecause backup of database involve system tables of
database
I suggest running CHECKDB more often than you're doing.
Taking a backup of a corrupt...
August 9, 2012 at 6:52 am
Here's an example:
DECLARE @ErrorMessage NVARCHAR(4000)
DECLARE @ErrorSeverity INT
DECLARE @ErrorState INT
-- CREATE A TEST TABLE
IF OBJECT_ID('tempdb..#test1') IS NOT NULL
DROP TABLE #test1;
CREATE TABLE #test1 (i INT PRIMARY KEY);
BEGIN TRY
...
August 9, 2012 at 6:50 am
This is the solution I had in mind.
If you feel confident, try it. If it was my database, I would restore from backup.
August 9, 2012 at 6:33 am
Don't run profiler. Use sp_WhoIsActive or something similar to find the offending query.
August 9, 2012 at 5:18 am
If CPU is hitting 100% I'm pretty sure adding more memory won't help.
You seriously need to find what sends CPU to the roof. It could be a runaway query that...
August 9, 2012 at 3:47 am
No way, AFAIK.
If you need such a feature, then take a look at Visio.
A free alternative is DB-MAIN or ER-Win Community Edition[/url].
August 9, 2012 at 3:42 am
Kwisatz78 (8/9/2012)
August 9, 2012 at 2:50 am
Looks like logical corruption.
I would restore from backup if possible.
There's another method, but I won't disclose it unless you have no backups.
August 9, 2012 at 2:47 am
Viewing 15 posts - 1,471 through 1,485 (of 5,394 total)