Viewing 15 posts - 31 through 45 (of 81 total)
It's uploaded and working now
January 20, 2011 at 12:25 pm
Correct, I updated all statistics with FULL SCAN and I checked that the statistics show they were last updated today. Auto_Create_Statistics is Enabled for the database too.
I've attached the...
January 20, 2011 at 12:22 pm
I agree, so I tried creating a temp table and clustered index on that inside the stored procedure and inserting all the records from the User Defined Table Type into...
January 20, 2011 at 11:01 am
In the slow stored procedure:
Looks like the Query Optimizer thinks (estimates) that the Index Seek will result in 6 rows, however, it results in (actual) 380,349 and then joins to...
January 20, 2011 at 9:44 am
I completlely understand, I'll see what I can post, I appreciate your time. If it looks like you need some more details in the text output format let me...
January 20, 2011 at 8:41 am
I was thinking that was correct until I did the following test
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
BEGIN TRANSACTION
UPDATE dbo.Table SET Name = 'Test' where ID = 1
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
EXEC...
May 26, 2010 at 8:44 am
I think this question really makes me think. I thought the log backup chain was broken after a full backup based on this I read on MSDN
"If a log...
April 30, 2010 at 8:34 am
I just realized my question was silly... I need to do an update statement in the trigger instead and join on the inserted table rather than an insert.. doh
But...
March 18, 2010 at 10:50 am
Intersting I didn't know that. I looked and the SSIS package was using the Fast load option, I switched that to just use table and the trigger fires now,...
March 18, 2010 at 10:20 am
This may or may not be relevant here but we did load testing on our MOSS 2007 website and we were able to triple the user count by enabling BLOB...
March 17, 2010 at 1:49 pm
My issue is that the varbinary data results of these queries don't match up... Sorry, I probably didn't expain the issue very well..
SELECT SUSER_SID('domain\user')
AND
Results from
whoami /user as a...
March 9, 2010 at 8:14 am
Is this login for a 3rd party application? I ask because I discovered an interesting issue with MS Dynamics that uses SQL Logins for each user version 8. ...
February 9, 2010 at 8:48 am
Ok, I now see my confusion by looking closer. I was confusing WITH NOCHECK and NOCHECK CONSTRAINT while reading the syntax of ALTER TABLE. Now it's clear, there...
January 22, 2010 at 3:55 pm
That is acutally the command I've already tried to execute manually. It runs OK, but shows 0 records cleaned up. If you look under the SQL Agent job...
January 19, 2010 at 12:51 pm
Viewing 15 posts - 31 through 45 (of 81 total)