With SQL 7 and 2000, you can use BULK INSERT in a script or procedure.
BULK INSERT DBName.dbo.TableName
FROM 'f:\pathname\filename.csv'
WITH (FIELDTERMINATOR = ',',
ROWTERMINATOR = ',\n')
You can get more details in SQL BOL.
Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.