RPC Errors

  • HI Team ,

    I am finding the below error from application error log ??

    any idea on this ??

    com.microsoft.sqlserver.jdbc.SQLServerException: The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect.

    We are getting this error from appliction error log .

    Regards,

    Lavanaya

  • Lavanyasri (10/26/2011)


    HI Team ,

    I am finding the below error from application error log ??

    any idea on this ??

    com.microsoft.sqlserver.jdbc.SQLServerException: The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect.

    We are getting this error from appliction error log .

    Regards,

    Lavanaya

    We need more information. Can you post the entire error message including anything before or after it? Can you post a stack trace or anything from the client?

    Normally after this message, you will get additional info about what exactly is "incorrect"... I.e. you are passing text to a datetime parameter... usually this message means the client is trying to do something wrong, but with the information you gave us there is no way for us to determine what that is.

  • HI NJ,

    Can you please look into the below for complete error ..

    com.microsoft.sqlserver.jdbc.SQLServerException: The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Parameter 11 (""): The supplied value is not a valid instance of data type float. Check the source data for invalid values. An example of an invalid value is data of numeric type with scale greater than precision.

    Thanks,

    Lavanya

  • Lavanyasri (10/27/2011)


    HI NJ,

    Can you please look into the below for complete error ..

    com.microsoft.sqlserver.jdbc.SQLServerException: The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Parameter 11 (""): The supplied value is not a valid instance of data type float. Check the source data for invalid values. An example of an invalid value is data of numeric type with scale greater than precision.

    Thanks,

    Lavanya

    OK- so this error is telling ou exactl what the problem is... Parameter 11 (""): The supplied value is not a valid instance of data type float. Check the source data for invalid values.

    You are passing a parameter that is not the correct datatype. So, for example, if you have some stored procedure which accepts a parameter or 12, and the 11th parameter expects datatype Float- and you are passing it data which is not float, like a date, a string, or maybe a pair of double quotes, you might get this error.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply