×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Conversion failed because the data value overflowed

Conversion failed because the data value overflowed

Conversion failed because the data value overflowed

(OP)
Hi all,
I use sql server 2005 with a linked server to Pervasive.
Using ODBC Pervasive version 10.
My Problem is that there is a date field in Pervasive that can contain the value 00/00/0000.

When I run and open query sql runs ok until it hots one of these dates.The I get the error "Conversion failed because the data value overflowed the data type used by the provider."

I know this is because SQL is saying what the hell is this 00/00/0000?
But I need all these columns returned..

The only way so far that I can get all columns back is by using convert to varchar but this takes along time to run..
Any other ideas?

eg:Below takes 8Mins to run but I get 00-00-0000 returned.
Need to speed things up

SELECT *
FROM OPENQUERY(cellular, 'SELECT refnumber,Convert(InWorkShopDate, SQL_VARCHAR)as InWorkShopDate,FROM JOBSE ')

Ray

RE: Conversion failed because the data value overflowed

There's not a lot you can do.  Btrieve allows any value to be stored in any field (it may not sort properly in an index but it will still store).  Developers have used 00/00/0000 as a null value in the past.  You could try fixing all of the 00/00/0000 dates but that won't prevent new values from being inserted.  
In your slow query, how many records are you returning?  How many do you need?  Have you tried running the query (SELECT refnumber,Convert(InWorkShopDate, SQL_VARCHAR)as InWorkShopDate,FROM JOBSE ) in the PCC to see how slow/fast it is there?  
Have you tried PSQL v10.10 (latest update)?  I believe there was a fix for "legacy" null dates.  I don't know if it'll help in your case.  

Mirtheil
Certified Pervasive Developer
Certified Pervasive Technician
http://www.mirtheil.com

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close