Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Invalid character value for cast specification??

Status
Not open for further replies.

Sheffield

Programmer
Joined
Jun 1, 2001
Messages
180
Location
US
I'm attempting to import Access2000 *.mdb into SQL Server 7.0. All of my tables (except one) converted successfully.

Here is the error I received:

Error at Destination for Row number 1. Errors encountered so far in this task: 1. Invalid character value for cast specification.



Can anyone tell me what this actually means? Is there anything specific that I should look for?


All responses are greatly appreciated:-)
 
That meand that you may have a data type on access that is not implicity convetible to the sql datatype.
Investigate the cas / convert function on sql server and the data type on Access, the portable datatype that is trying to create.
I could be that just a an example 11/5/01 is a date but SQL server would not convert from char to datetime, it would say something like "out of range converting datetime from char" because the expected char would be 11/05/01.
That's all It comes to mind right now, let me know further
AL Almeida
NT/DB Admin
"May all those that come behind us, find us faithfull"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top