Forum Replies Created

Viewing 4 posts - 1 through 5 (of 5 total)

  • RE: Tracking User Activity

    I realize that I slightly misstated my question. How may we track user activity as it is occurring to provide support for a user that may be encountering a problem with...

  • RE: Stored Procedure

    SQL Server will not allow you to say

    Select * from Table where ColumnName in (@Paramater)

    Options include:

    1) Use dyanmic SQL:

    declare @DynSQL varchar(1000)

    declare @Company varchar(1000) --Parameter declaration would be in proc declaration

    set...

  • RE: Dynamic Sql

    Try executing the below statement before executing the dynamic sql.

    print @cprice_sql

    The above statement will allow you to preview the sql before it is executed.

    Also, if @LNID is a non-string...

  • RE: Query Analyzer and TSQL

    You can highlight the table name in QA and then press Alt, F1. Make sure you are still holding down Alt when you click F1.

    Hi,

    Is there a way to display...

Viewing 4 posts - 1 through 5 (of 5 total)