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 | |
|
Re^2: Retrieve file BLOB from SQL Server 'Image' field type
by porg (Novice) on Sep 24, 2015 at 14:05 UTC |