Forum Replies Created

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

  • RE: Convert RTF data

    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...

  • RE: Convert RTF data

    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...

  • RE: Convert RTF data

    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...

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