September 11, 2017 at 8:06 am
Hi Every one.
I want to convert blob data into normal file using SQL, So, I refered below script, its working fine, but, the converted file not able to write/Save through sql script in remote location(Another server location). I wants to save files in remote location using sp_OAMethod . Please kindly help me how to achieve this
Declare @folderPath varchar(500)
Declare @cmdpath varchar(500)
SET @cmdpath = 'MD '+ @folderPath
SET @folderPath = '\\<SERVERName>\d$\Storage\Activity_2017\123.png'
insert into @tempresult (result) exec master.dbo.xp_cmdshell @cmdpath
select @message = ISNULL(@message + ' - ','') + result from @tempresult where result is not null
select @message
EXEC sp_OACreate 'ADODB.Stream', @init OUTPUT; -- An instace created
EXEC sp_OASetProperty @init, 'Type', 1;
EXEC sp_OAMethod @init, 'Open'; -- Calling a method
EXEC sp_OAMethod @init, 'Write', NULL, @data; -- Calling a method
EXEC sp_OAMethod @init, 'SaveToFile', NULL, @fPath, 2; -- Calling a method
EXEC sp_OAMethod @init, 'Close'; -- Calling a method
EXEC sp_OADestroy @init; -- Closed the resources print 'Document Generated at - '+ @fPath
September 11, 2017 at 10:26 am
manavairajan - Monday, September 11, 2017 8:06 AMHi Every one.I want to convert blob data into normal file using SQL, So, I refered below script, its working fine, but, the converted file not able to write/Save through sql script in remote location(Another server location). I wants to save files in remote location using sp_OAMethod . Please kindly help me how to achieve this
Declare @folderPath varchar(500)
Declare @cmdpath varchar(500)
SET @cmdpath = 'MD '+ @folderPath
SET @folderPath = '\\<SERVERName>\d$\Storage\Activity_2017\123.png'insert into @tempresult (result) exec master.dbo.xp_cmdshell @cmdpath
select @message = ISNULL(@message + ' - ','') + result from @tempresult where result is not null
select @message
EXEC sp_OACreate 'ADODB.Stream', @init OUTPUT; -- An instace created
EXEC sp_OASetProperty @init, 'Type', 1;
EXEC sp_OAMethod @init, 'Open'; -- Calling a method
EXEC sp_OAMethod @init, 'Write', NULL, @data; -- Calling a method
EXEC sp_OAMethod @init, 'SaveToFile', NULL, @fPath, 2; -- Calling a method
EXEC sp_OAMethod @init, 'Close'; -- Calling a method
EXEC sp_OADestroy @init; -- Closed the resources print 'Document Generated at - '+ @fPath
Please post the error message you receive.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply