in reply to Retrieve file BLOB from SQL Server 'Image' field type

select t.RDFILE from DB_NAME.schema.TABLE_NAME t where t.UNIQUEID = $uniqueId

Are you sure that the rows get returned in the order you want?

You will need an ORDER BY clause on something.

Replies are listed 'Best First'.
Re^2: Retrieve file BLOB from SQL Server 'Image' field type
by monkey_boy (Priest) on Sep 24, 2015 at 13:21 UTC
    The column names suggest a single row will be returned.


    This is not a Signature...
Re^2: Retrieve file BLOB from SQL Server 'Image' field type
by porg (Novice) on Sep 24, 2015 at 14:05 UTC
    Hi, thanks for the reply - this will only return one result, so I would assume the info is returned in the manner i should read it.