Viewing 15 posts - 4,456 through 4,470 (of 5,685 total)
I think it's because of where you're including the replicated 0's.
This will work:
DECLARE @MilDate VARCHAR(20)
SET @MilDate = '13:38'
SET @MilDAte = REPLACE( @MilDate, ':', '')
SELECT @MilDate
SET @MilDate = LEFT( @MilDate +...
January 6, 2011 at 4:49 pm
I would agree that turning down parallelism should help with the worker starvation.
One other thing about VM boxes that I recently ran into is that you will want to talk...
January 6, 2011 at 4:18 pm
Try using CAST( nTextField AS nVARCHAR(MAX)) = uniqueIDField.
It'll run like a three legged dog, but it should run.
January 6, 2011 at 2:55 pm
mtillman-921105 (1/6/2011)
January 6, 2011 at 12:50 pm
WebTechie38 (1/6/2011)
Hello,What would be the best approach to make to create the unique index and get rid of the duplicates?
I'd start with getting a straight count on the number of...
January 6, 2011 at 12:36 pm
mtillman-921105 (1/6/2011)
January 6, 2011 at 12:30 pm
GSquared (1/6/2011)
January 6, 2011 at 12:16 pm
martin.edward (1/6/2011)
The update values are dynamic and not fixed as such.
You missed some of Todd's sarcasm in that. You've given us very little to work from in terms of...
January 6, 2011 at 12:08 pm
TravisDBA (1/6/2011)
Eric Russell 13013 (1/6/2011)
January 6, 2011 at 12:05 pm
JayK (1/5/2011)
When I set the 'Run as user' to 'dbo' in the Job Step it runs without an...
January 6, 2011 at 11:36 am
GilaMonster (1/6/2011)
Craig Farrell (1/6/2011)
January 6, 2011 at 11:26 am
vk24/7 (1/6/2011)
I have not copied these q's from any site, these are the questions i was asked in the interview. I'm a newbie to this site and this is my...
January 6, 2011 at 11:24 am
WayneS (1/6/2011)
jcrawf02 (1/6/2011)
WayneS (1/6/2011)
January 6, 2011 at 11:14 am
pwalter83 (1/6/2011)
Hi Harinerella,Thanks for your reply. However, I dont know what you mean by CTE ?
CTE is a common table expression. It's a pretty way to write a subquery....
January 6, 2011 at 11:09 am
Koen (da-zero) (1/6/2011)
Craig Farrell (1/5/2011)
January 6, 2011 at 12:41 am
Viewing 15 posts - 4,456 through 4,470 (of 5,685 total)