text data type retrieval?

  • I have 2 databases on the same server that essentially have the same structure and data. One is used for development and one for QA.

    I have a developer trying to query the data from a text field from Cold Fusion MX. The data bigger than 64,000 characters. From Database A (Development), every last bit of the data is returned. But from Database B (QA) only 64,000 characters are returned. Same query, same Cold Fusion template. The only difference is the databases.

    I cannot think of any setting I would have changed to account for the differences in the behavior between the databases. Any ideas?

    Here is the CF query

    SELECT txtSessionPacket

     FROM tblLookupSession

     WHERE CFID = #val(COOKIE.CFID)#

     AND CFTOKEN = '#COOKIE.CFTOKEN#'

     
    Thanks for any help!
  • This was removed by the editor as SPAM

  • What happens when you try to retrieve the data without CF?

    GaryA

     

  • Cross,

    There is a TEXTSIZE property, which by default is 64KB (i.e. 64,000). Check it on both databases via I belive SELECT @@TEXTSIZE and the way to set it is by SET TEXTSIZE function. Check BOL and hopefully this should resolve your problem. Let me know if it works,

     


    Cheers,

    Digesh

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

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