Hi,
I am importing an image (successfully on my dev machine) using the following code:
[Thumbnail] = (SELECT MyImage.* from Openrowset(Bulk 'C:\SRC\Tx3SqlScripts\Initialise\Images\Tasks.png', Single_Blob) MyImage)
However, I need to specify the path as a relative path because the build server extracts to a different folder.
I've tried:
.\Images\Tasks.png
...and other variations but none work.
Can OpenRowSet be used with relative paths and if so how?
Paul.