Viewing 15 posts - 4,891 through 4,905 (of 6,486 total)
Try using BULK INSERT.... WITH (CODEPAGE='RAW')?
Seems to work for me (from a cut and paste from your post).
February 5, 2008 at 11:49 am
Performance-wise - it is usually better to make your files "big" so that they don't have to auto-grow. The problem with auto-grow is that it will almost invariably happen...
February 5, 2008 at 11:30 am
Assuming you easnt to use "native" SSIS functions, you're going to want to look at the lookup tasks, conditional split and data conversion tasks, and how to use the "errors"...
February 5, 2008 at 11:23 am
Float and Decimal math are two entirely different "animals". From what you seem to be talking about - you're going to want to steer towards decimal types, which are...
February 5, 2008 at 11:09 am
Nisha (2/4/2008)
It's set to unrestrictive growth by default, right?
And what about the Temp folder? When...
February 5, 2008 at 10:52 am
What does DBCC OPENTRAN mention?
If there are open transactions, then try a COMMIT transaction, or a ROLLBACK until such time as nothing is left open. Obviously you'd...
February 5, 2008 at 10:45 am
Yes - if you don't make your clustered index unique, you certainly can have dupes in your clustered index Keys. To account for that, SQL will add some hidden...
February 5, 2008 at 10:12 am
Also - depending on which one you're in - there's an option in the scripting category to "create scripts with compatibility for SQL2000" or something very closely related to that....
February 5, 2008 at 10:03 am
If you can afford the sticker shock - stick with the Core 2 duo's T7000 and higher. They've included some nice chipset improvements to memory management and cache pipelining...
February 5, 2008 at 9:56 am
If you're looking to improve your performance - you need to ditch the inner cursor. Selecting one row at a time, and process updates one row at a time...
February 5, 2008 at 9:40 am
Peso (2/5/2008)
I then calculate the ranking for only these 10 records.
Then I eventually...
February 5, 2008 at 9:20 am
The default behavior with division on SQL Server is to return the SAME datatype as the starting columns. So if ColA is an integer, the result of ColA/5 would...
February 5, 2008 at 7:39 am
I think the flaw in the whole "equity" thing so prevalent in HR these days is that is has the effect of "dehumanizing" the process. As Steve said very...
February 5, 2008 at 7:33 am
Are you looking to make sure you run this process on EXACTLY 1M rows, or just looking to limit the recordset? I mean - creating a new ID isn't...
February 5, 2008 at 7:14 am
Notice that my latest calls your Temp table solution, the CTE solution.
You really should give some of this a whirl. Running RANK() to the whole set just...
February 5, 2008 at 6:55 am
Viewing 15 posts - 4,891 through 4,905 (of 6,486 total)