37

We are doing some performance tests on our website and we are getting the following error a lot:

*** 'C:\inetpub\foo.plex' log message at: 2008/10/07 13:19:58
DBD::ODBC::st execute failed: [Microsoft][SQL Native Client]String data, right truncation (SQL-22001) at C:\inetpub\foo.plex line 25.

Line 25 is the following:

SELECT DISTINCT top 20 ZIP_CODE, CITY, STATE FROM Zipcodes WHERE (ZIP_CODE like ?) OR (CITY like ?) ORDER BY ZIP_CODE

And lastly, this is perl code.

Any ideas?

EDIT: the issue here was that I was searching in the zip file with the string "74523%" which is too long. I ended up just not adding the % if they give five digits.

Frew Schmidt
  • 9,364
  • 16
  • 64
  • 86

7 Answers7

30

Either the parameter supplied for ZIP_CODE is larger (in length) than ZIP_CODEs column width or the parameter supplied for CITY is larger (in length) than CITYs column width.

It would be interesting to know the values supplied for the two ? placeholders.

Chris Driver
  • 2,245
  • 2
  • 19
  • 14
17

This is a known issue of the mssql ODBC driver. According to the Microsoft blog post:

The ColumnSize parameter of SQLBindParameter refers to the number of characters in the SQL type, while BufferLength is the number of bytes in the application's buffer. However, if the SQL data type is varchar(n) or char(n), the application binds the parameter as SQL_C_CHAR or SQL_C_VARCHAR, and the character encoding of the client is UTF-8, you may get a "String data, right truncation" error from the driver even if the value of ColumnSize is aligned with the size of the data type on the server. This error occurs since conversions between character encodings may change the length of the data. For example, a right apostrophe character (U+2019) is encoded in CP-1252 as the single byte 0x92, but in UTF-8 as the 3-byte sequence 0xe2 0x80 0x99.

You can find the full article here.

hui chen
  • 1,004
  • 14
  • 19
2

I got around the issue by using a convert on the "?", so my code looks like convert(char(50),?) and that got rid of the truncation error.

Keegan
  • 1
  • 1
1

I was facing the same issue. So, i created a stored Procedure and defined the size like @FromDate datetime, @ToDate datetime, @BL varchar(50)

After defining the size in @BL varchar(50), i did not face any problem. Now it is working fine

1

If the connection is done via PHP, we solved with the connection parameter "CharacterSet":

sqlsrv_connect(DB_PTH_HOST, array(
                                "Database" => ***,
                                "UID" => ***,
                                "PWD" => ***,
                                "CharacterSet" => "UTF-8"));
luca.vercelli
  • 898
  • 7
  • 24
0

I experienced this today on an application that has been running for years. My cause was a little different, so I figured I'd share to help anyone in the future that this happens to.

For the issue I experienced, we have an application that runs on Client machines and the clients talk to the DB server via ODBC connection. For whatever reason, the ODBC driver on the client had updated to a newer version than the server had, (which usually didn't matter in the past). The version was only 1 month apart but was the cause of the issue. I went to windows patch history and uninstalled the patch whose date most closely matched the ODBC driver date, and this resolved the issue. (to check ODBC driver version, just search for ODBC in windows start, open ODBC 32, click on the drivers tab, scroll to the driver for the connection type you use, and the date is listed far right.)

0

Similar to the solution provided by luca.vercelli: in R, using dbConnect from the odbc package, you can specify the encoding used by the database. My database uses the SQL_Latin1_General_CP1_CI_AS collation, and specifying the latin1 encoding in dbConnect solved the problem.