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

Conversion failed because the data value overflowed

Status
Not open for further replies.

rwaldron

MIS
Aug 6, 2002
53
IE
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
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top