Viewing 3 posts - 1 through 3 (of 3 total)
Hi Lowell,
when i try to execute the function which you have given i am getting error
Msg 443, Level 16, State 14, Procedure RTF2TXT, Line 9
Invalid use of side-effecting or time-dependent...
November 7, 2008 at 11:56 am
#895761
Hi Lowel,
I have used this function
create function dbo.RTF2TXT(@in varchar(8000)) RETURNS varchar(8000) AS
BEGIN
DECLARE @object int
DECLARE @hr int
DECLARE @out varchar(8000)
-- Create an object that points to the SQL Server
EXEC @hr...
November 7, 2008 at 9:54 am
#895674
Hi Lowell
I have done same, create the function and called it inside the store procedure.
But in SP that column is returning NULL.
If i see the table then there is...
November 7, 2008 at 8:54 am
#895616