I want to insert say 50,000 records into sql server database 2000 at a time. How to accomplish this?
|
|
|
|
|
|
|
You can use the SELECT TOP clause: in MSSQL 2005 it was extended allowing you to use a variable to specify the number of records (older version allowed only a numeric constant) You can try something like this: (untested, because I have no access to a MSSQL2005 at the moment)
|
||
|
|
|
Do you mean for a test of some kind?
But I expect this is not what you mean. If you mean the best way to do a bulk insert, use |
|||
|
|
|
Are you inserting from another db/table, programmatically or from a flat file? |
||
|
|
|
From an external data source bcp can be used to import the data. The -b switch allows you to specify a batch size. |
||
|
|
|
|
Could you be more specific on your request? Example of some sort helps |
||
|
|
|
|
declare @rows as int set @rows = 1 while @rows >0 begin
set @rows = @@rowcount end This is code we are currently using in production in SQL Server 2000 with table and fieldnames changed. |
||
|
|
|
|
With SQL 2000, I'd probably lean on DTS to do this depending on where the data was located. You can specifically tell DTS what to use for a batch commit size. Otherwise, a modified version of the SQL 2005 batch solution would be good. I don't think you can use TOP with a variable in SQL 2000. |
||
|
