BULK INSERT

BULK INSERT is an import-only Transact-SQL statement that is similar in syntax and operation to BCP. BULK INSERT is faster than BCP and DTS, thus making it very appealing for those operations that require maximum performance.

Use the following syntax to perform BULK INSERT operations:

BULK INSERT [['database_name'.]['owner'].]{'table_name' FROM data_file} 
[WITH
([switch1 parameter1] [switch2]
...
[switch10 parameter10]
...)

where the following are the parameters:

database_nameName of the database being accessed. Database name is optional; if the database name is omitted, the user's default database is used.
ownerOwner of the table or view being accessed.
table_nameName of the table or view being accessed.
datafileThe name of the data ...

Get Microsoft® SQL Server™ 2000 DBA Survival Guide, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.