Viewing 4 posts - 1 through 4 (of 4 total)
did you ever find an answer to this problem?
September 4, 2015 at 6:43 am
Thats very true too, but I'm referring to point b. in the article: Wait for Microsoft to implement JSON Support and then upgrade. Upper-middle-management will have to be a...
August 31, 2015 at 5:23 am
SQL 2016 which is at stage CTP2 has native support for JSON.
August 31, 2015 at 2:36 am
Why not use native T-SQL commands?
DECLARE @DataBinary VARBINARY(MAX)
DECLARE @DocumentFullPath VARCHAR(255) = 'd:\image.jpg'
DECLARE @SqlStringNVARCHAR(4000) = 'SELECT @DataBinary = DATA FROM OPENROWSET(BULK ''' + @DocumentFullPath + ''', SINGLE_BLOB) AS RESULT(DATA)'
EXECUTEsp_executesql @Sqlstring, N'@DataBinary...
May 26, 2015 at 2:03 am
Viewing 4 posts - 1 through 4 (of 4 total)