Support required for SQL Server 2000 - TechRepublic
General discussion
April 6, 2003 at 02:27 PM
arif9000

Support required for SQL Server 2000

by arif9000 . Updated 23 years, 3 months ago

Hi

Would really appreciate if some one can help me in developing code
for loading data from 2-3 source files (text format) into SQL server.

o Pls. find attach the scripts & the data
o Your support would highly be appreciated.
———————————————————-

1. Table structure:
CREATE TABLE temp
(
column1 varchar(11) NOT NULL,
column2 varchar(11) NOT NULL,
)

———————————————————-
2. Bulk Insert query (coyingone source file into table)
BULK INSERT Billing.dbo.cust
FROM
‘c:\a.txt’
WITH
(
FIELDTERMINATOR = ‘,’,
)

Result: [this was successfully implemented)

———————————————————-
3. Problem Area (copying three source files into one table)
BULK INSERT Billing.dbo.cust
FROM
‘c:\a.txt’
‘c:\b.txt’
‘c:\c.txt’
WITH
(
FIELDTERMINATOR = ‘,’,
)

Result: [Errors)

———————————————————-

PLEASE HELP ME

This discussion is locked

All Comments