How to write / Save files in Remote location using sp_OAMethod in SQL SERVER

  • 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

  • manavairajan - Monday, September 11, 2017 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

    Please post the error message you receive.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply