Microsoft
Software
Hardware
Network
Question : Perl SQL Server error - SQL-01004
Well,
I wrote a simple Perl program to read from one table, one record at a time. Process, then insert into another.
Got SQL-01004 error when read a particular row.
--------------------------
DBD::ODBC::st fetchrow_array failed: [Microsoft][ODBC SQL Server Driver]String data, right truncation (SQL-01004) at Y:\work\cp\scripts\DataSto
re\load
DiagnosisLabIntegrate.pl line 32.
--------------------------
How do I fix this?
Answer : Perl SQL Server error - SQL-01004
I answered me own question. Yay!.
I set
$dbh->{LongReadLen} = 20480;
$dbh->{LongTruncOk} = 1;
and it works.
Random Solutions
how to change sql query not to pull duplicates
Output the Month's Name?
Opening Organization chart with open office
Access IDE - Key Shortcuts for Bookmark?
Outlook 2007 connecting to Exchange 2010. Cannot connect to email folders.
Received error "ActiveX component can't create object" while calling WinFax.SDKSend in VBA
Click event overrides DblClick event
Exchange 2010 coexistence with Exchange 2003
Is there a way of inserting hyphens (-) into all of the existing phone numbers contained in my Outlook 2007 contacts list? So the format will be 123-456-7890 instead of 1234567890
Loading images from directory into 5 Pictureboxes HOW?