Viewing 11 posts - 706 through 716 (of 716 total)
Florian Reischl (5/11/2009)
Have a look at the attached statistic results of my tests.
Flo,
Which cursor based split solution were you using in those statistics?
May 11, 2009 at 5:27 pm
Jeff Moden (5/11/2009)
UMG Developer (5/11/2009)
May 11, 2009 at 9:06 am
Paul White (5/10/2009)
May 11, 2009 at 1:24 am
Jeff Moden (5/10/2009)You say you get the data from an Oracle 10 DB... do you mean directly or is it in a text file? Even if it's not in...
May 10, 2009 at 8:11 pm
Flo,
Yes the data is all text. I'll have to take a look at your proposed solution, but it would need some work to handle all the possible crap data cases....
May 10, 2009 at 6:32 pm
Jeff Moden (5/10/2009)
I'm confused... why would you put over 4 million comments together only to break them apart again?
Because in the source data an individual line may be broken across...
May 10, 2009 at 3:03 pm
I know I am coming in late, but boy has it been a read so far and I can't wait to see the final outcome.
In the particular problem I am...
May 10, 2009 at 12:17 pm
ben.rosato (5/7/2009)
I was playing around with this and can't figure out why the "-" in the where clause has to come before all the other individual characters. If I...
May 7, 2009 at 11:37 am
Jeff Moden (4/16/2009)
Here's the code...
[font="Courier New"]DECLARE @PrevActualCost MONEY,
@RunningTotal MONEY,
@PrevID INT
SELECT @PrevActualCost = 0,
@RunningTotal = 0
UPDATE t
SET @RunningTotal = RunningTotal = @RunningTotal + ActualCost,
@PrevID = ID
FROM #tmp t WITH (INDEX(0),TABLOCKX)
OPTION...
April 16, 2009 at 10:34 am
Jonathan Kehayias (3/13/2009)
The correct way to do this is to create a SQL Agent Job that runs the SSIS/DTS package, and then start that job using sp_start_job. SQLCLR is...
March 16, 2009 at 10:09 am
How about a SQLCLR method to execute a DTS or SSIS package on the server instead of using xp_cmdshell and calling DTEXEC.EXE? (Or is there another way to do that...
March 3, 2009 at 9:35 am
Viewing 11 posts - 706 through 716 (of 716 total)