Jump to content

BULK INSERT help


pengu

Recommended Posts

Having some problems with BULK INSERT *shudder*

 

Got some data off a client, emphasis on some which is where my problem is.

 

The table I want to insert into is the following.

I'll do an example of the data this text file contains. Using the table.

 

client_id	first_name	last_name	address1	city	postal	plate_number	email	phone	id2	desc
	mark		turner		123 fake st	bris	4600							

 

A lot of information is missing.  Now when I try to do a BULK INSERT.

BULK INSERT Client_Desc
    FROM 'c:\clients.txt' 
    WITH 
    ( 
        FIRSTROW = 2, 
        FIELDTERMINATOR = '\t', 
        ROWTERMINATOR = '\t\n'
    )

 

I get the following error.

 

Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 2, column 1 (Client_ID).

 

Which is to do with the Client_ID which is Auto Increment.  Any suggestions or am I manually going to have to write up the insert line for each client, which works..

Link to comment
https://forums.phpfreaks.com/topic/202787-bulk-insert-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.