Viewing 2 posts - 1 through 2 (of 2 total)
Nick, Great Post !! It is good to know that we have to allocate more memory to utilize R functionality in 2016.
February 1, 2016 at 12:54 pm
#1855796
Try something like this
DECLARE @TaskOutFile VarChar(255)
select * from dbo.Table where ID=@ID
Select @TaskOutFile = 'C:\ABC\' + @ID + '.html'
EXEC sp_makewebtask @outputfile = @TaskOutFile, @query = 'select * from dbo.Table where...
October 13, 2013 at 4:33 pm
#1658145