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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inserting records from Access to SQL 2000 Gets error of "OVERFLOW"

Status
Not open for further replies.

VicRauch

Programmer
Sep 26, 2004
242
US
I'm using Access 2002 and I am using a query within an Access DB to insert records (the whole table) into a SQL 2000 table. All I'm getting is an error box that states "Overflow" Where should I look to fix this problem?

I have checked the data in the Access table, and fixed some dates, but now all the data is easily within the range of the respective data types for each field.

Thanks in advance,
Vic
 
Check the data types in the SQL table for tinyint, smallint, smalldatetime.

For such fields, check the corresponding Access field, probably it's larger. If this is the case, change the type in SQL: tinyint->smallint or int (or even bigint), smalldatetime->datetime

HTH



[pipe]
Daniel Vlas
Systems Consultant

 
also check for char() or varchar() fields

--------------------
Procrastinate Now!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top