Viewing 15 posts - 8,011 through 8,025 (of 18,926 total)
In case it can help you, maybe you can read straight from the ssc site here : http://www.sqlservercentral.com/NewsletterArchive
May 27, 2010 at 10:11 am
If this is a SP, then you can definitly try this.
DECLARE @LocalWeek INT
SET @LocalWeek = @ParamValue
The use @LocalWeek in the query that will help the optimiser.
Also add the with recompile...
May 27, 2010 at 10:08 am
Have you tried something along those lines?
Select identity(int,1,1) as DeleteID, WeekNo, Id into #tmp FROM DeletingTbl where WeekNo <= @Whatever
set rowcount 50000
set @Loop = 0
while @@Rowcount <> 0
begin
SET @Loop =...
May 27, 2010 at 9:38 am
Steve Jones - Editor (5/27/2010)
Paul White NZ (5/27/2010)
The Red Gate product seems far superior, but I am not prepared to part with money 😎
Why not? Just curious. If it really...
May 27, 2010 at 8:55 am
Well even if you only delete 1 week of data that equates to roughly 2% of the data in the table. With that much data, a scan will always...
May 27, 2010 at 8:48 am
nik27184 (5/25/2010)
I have one db in sql 2008 but we need to send same to db to client as sql...
May 25, 2010 at 4:51 am
Open the application you are afraid to break and look up the source code or odbc connection.
Or if you are afraid to offend someone, change the password and tell them...
May 20, 2010 at 12:06 pm
I've forwarded everything to the local admin. We're waiting on a test window to keep going. So far everything seems ok (we've moved backups earlier in the night...
May 13, 2010 at 12:47 pm
Awesome guys. I'll let you know the outcome.
May 13, 2010 at 10:13 am
Trey Staker (5/13/2010)
May 13, 2010 at 9:16 am
Steve Jones - Editor (5/13/2010)
What's the code?The move shouldn't lock of the server. That makes me suspect coincidence and there's another issue.
Glad to see I'm not insane :w00t:.
Here's the...
May 13, 2010 at 9:01 am
Steve Jones - Editor (5/13/2010)
May 13, 2010 at 8:41 am
That was the only job that hang.
Also in all logs, there's no notice that the agent was ever stopped / started other than the forced reboots we did on the...
May 13, 2010 at 7:49 am
I still need you guys... thread is almost 1 day old and no help so far (no offense to Bhuvnesh who gave it a shot).
May 13, 2010 at 7:27 am
Ok let's approach from this angle :
If it happens again what the heck can I do to figure out the problem?
Right now I'm thinking MS support. But is...
May 13, 2010 at 7:24 am
Viewing 15 posts - 8,011 through 8,025 (of 18,926 total)