Viewing 7 posts - 1 through 7 (of 7 total)
Do a rolling upgrade.
1. Isolate primary node from passive so it can't failover
2. Apply service pack to secondary/passive node
3. Activate passive node back on cluster for failover
4. manually failover primary...
August 20, 2012 at 9:55 am
better than set rowcount use top option in the loop. It's even faaster.
wrote this before Sybase had the top option .. sql server always had it.
begin tran
delete top 500...
August 16, 2012 at 12:59 pm
Try Qlikview at qlikview.com .. for demos http://demo.qlikview.com/?ga-link=promo ..
May 11, 2011 at 6:22 am
My first PC was an IBM/XT circa 198x. It had a 10MB (that's MB, not a type) ahrd drive, with 256 bytes of memory (the mem upgrade was on a...
March 16, 2011 at 1:04 pm
We are migrating to a 2-node active-passive cluster on Win 2008/R2 with SQL Server 2008 Enterprise, with 64gb of RAM on HX5 blades. The use is data pump for HIPAA...
March 16, 2011 at 7:50 am
The reason range deletes are slow is single log writes, and lots of contect switching. The below example does 1 log commit for 500 rows, and two context switches (runq...
November 17, 2009 at 2:28 pm
declare @rows int
select @rows = 1
set rowcount 500 -- domain Udt commits
begin tran
while @rows > 0
begin
end
November 17, 2009 at 2:21 pm
Viewing 7 posts - 1 through 7 (of 7 total)