Viewing 15 posts - 4,546 through 4,560 (of 5,685 total)
Paul White NZ (12/14/2010)
For the deletes, use this:
DELETE psa
FROM #DelPortList AS dpl WITH (TABLOCKX)
JOIN PortSecAgg AS psa WITH (TABLOCKX)
ON psa.PortfolioID = dpl.PortfolioID
AND...
December 15, 2010 at 10:54 am
dso808 (12/15/2010)
SET @Where = ''
When I tried to do this:
@Where NVARCHAR(4000) = ''
I got this error message:
Cannot assign...
December 15, 2010 at 10:43 am
WayneS (12/14/2010)
Gail, are you trying for sainthood?
Yeah, she is.
December 14, 2010 at 11:15 pm
Steve Jones - SSC Editor (12/14/2010)
Is it now more, or less, frightening?
I'm now wishing I was underwater in the scuba gear... kilts skeer me! Won any blue ribbons you...
December 14, 2010 at 3:51 pm
LutzM (12/14/2010)
Any chance to post the index def for #DelPortList and PortSecAgg? It seems like the clustered indexes don't match.
They don't, not directly.
#DelPortList's index is in the proc, listed here...
December 14, 2010 at 3:45 pm
JAWDROP.
Step - Find duplicated AsOfDate/PortIDs between batches: 75 seconds.
Step - Remove duplicated AsOfDate/PortIDs between batches: 0 seconds.
Step - Declare and open cursor: 0 seconds.
Step - Insert into #DelPortList for Batch...
December 14, 2010 at 3:37 pm
evald (12/14/2010)
It seems that Microsoft agree with mehttp://support.microsoft.com/kb/926292
I'm going to verify if this hotfix is installed on my sql server and also i'll verify on a sql server 2008
Of...
December 14, 2010 at 3:30 pm
Ignore this, bad post.
December 14, 2010 at 3:19 pm
Alrighty. So, status update on the processing so far.
I am still doing an all file load to the _staging table. The reason for this necessity is some business...
December 14, 2010 at 2:36 pm
GilaMonster (12/14/2010)
Brandie Tarvin (12/14/2010)
(Where's my halo? Self-righteous doesn't work without my halo, darnit!)
How long did it take you to forge your own halo, in between the lightning strikes, Gail? ...
December 14, 2010 at 1:41 pm
bleach (12/14/2010)
Yes, indeed I see that service running on the server. I've attached a screen shot.
Then it's got to be login related, or a serious glitch on the system....
December 14, 2010 at 1:36 pm
GSquared (12/14/2010)
Alvin Ramard (12/14/2010)
Stay out of the gutter Gus. It's crowded enough in here without you. 😛
Trust me, I am WAY below the gutter.
Marianas Trench is uphill from...
December 14, 2010 at 1:30 pm
This is sounding like SSIS wasn't installed, at all.
Can you check the services on that machine, make sure you see a running SQL SERVER INTEGRATION SERVICES on that system? ...
December 14, 2010 at 11:30 am
For some reason straight integer divide didn't want to work here, I had to actually convert it on my 2k5. Wierdness.
declare @numeric decimal(32, 8)
set @numeric = 1.02
print ( CONVERT(...
December 14, 2010 at 10:24 am
Gyeah!!!! Hold on Paul! 😀
My word man, you make me look like I never type anything! 😛 Though, I appreciate the extensive discussion. Don't misunderstand.
Going to tackle...
December 14, 2010 at 12:09 am
Viewing 15 posts - 4,546 through 4,560 (of 5,685 total)