Link to home
Start Free TrialLog in
Avatar of LuckyLucks
LuckyLucks

asked on

Importing text with first column which is int

Hi:

 I am trying to import a textfile into MS SQL 2000. However, the first column contains numeric values and the DTS doesnt like this. How do I get around this?

THanks
Avatar of Sirees
Sirees

Does it give any error?
Please post your code.
Avatar of LuckyLucks

ASKER

Well, the first col is numeric and the rest are text surrounded by double quotes.Fields are TABB delimited. SO when it reads it in it screws up on the field delimitation since the first col is numeric and not surrounded by double quotes.

I get this error:

Invalid delimited data : text quantifier must be followed by a column delimitor (except the last column).
Context: Error caalling OpenRowSet on the provider.

Avatar of Anthony Perkins
>>However, the first column contains numeric values and the DTS doesnt like this.<<
There should be no problem importing a numeric value without text delimiters, we do it all the time.  Cosnider posting some sample data and the structure of the SQL Server table.
I am using a DTS Import Wizard to read in data from a text file. The following is the first row of the text file

Customer_ID      Title      Last_Name      First_Name      Language      Address      Address2      City      Province      Postal_Code      Last_Visit      Recall_Date      

1014      "MR"      "MAY"      "DOE"      " "      "111 ST W"      ""      "St. JOHN"      "PEI"      "H2K6TQ"      29-03-2004      29-03-2008      
what row delimiter are you using in the file?
CR LF
Now can we have the structure of the SQL Server table?
Oh sorry. Here it is:
Customer_ID bigint
Title varchar(5)
Last_Name varchar(35)
First_Name vacrchar(35)
Language char(1)
Address   varchar(50)
Address2  "
City         varcchar(20)
Province   vacrchar(2)
Postal_COde vacrchar(10)
Last_Visit     smalldatetime
Recall_Date   smalldatetime
ASKER CERTIFIED SOLUTION
Avatar of Anthony Perkins
Anthony Perkins
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I have tried repeatedly to post the steps I took, unfortunately I am not having any luck.  I repeatedly get "The page cannot be displayed".

Suffice to say, that I did not have any problems.
Is this supposed to be tab delimited or column aligned?
tab delimited