Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Overflow of $DBI::rows

by roboticus (Chancellor)
on Dec 07, 2012 at 16:29 UTC ( [id://1007781]=note: print w/replies, xml ) Need Help??


in reply to Overflow of $DBI::rows

DanEllison:

I'd try one of two things: Either tell the database to explicitly use a larger numeric datatype in the hope that the driver will handle it:

select convert(numeric(15),count(*)) from ...

or failing that, have the database convert it to a string:

select convert(varchar(32),count(*)) from ...

I've never used Teradata, so I don't know if the syntax would need tweaking, but I'd expect a trick like this to get you to your goal.

...roboticus

When your only tool is a hammer, all problems look like your thumb.

Replies are listed 'Best First'.
Re^2: Overflow of $DBI::rows
by DanEllison (Scribe) on Dec 07, 2012 at 16:35 UTC
    I'm trying to avoid doing the separate SELECT COUNT(*). What we are performing is:
    my $sth = $dbh->prepare("UPDATE ...;") or die DBI::errstr; $sth->execute or die DBI::errstr; printf "Rows: %s\n", $sth->rows;
    and $sth->rows is returning a negative number.

      DanEllison:

      D'oh! Sorry about that. You were clear, I just had a brain glitch.

      I don't know a way to fix that, but I took a quick look at the ODBC Programmers Reference at msdn, and they're mentioning that the MDAC 2.7 ODBC libraries allow 64-bit values for the SQLLEN data type (used by SQLRowCount). If you're on a Windows platform, it might be sufficient to make sure you're using the latest ODBC libraries. (Of course, the Teradata end might still be using the 32 bit types, in which case you're probably out of luck.)

      ...roboticus

      When your only tool is a hammer, all problems look like your thumb.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1007781]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-03-19 11:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found