Forum Replies Created

Viewing 3 posts - 61 through 63 (of 63 total)

  • RE: cursor in stored procedure

    quote:


    can i write a cursor in a stored procedure?


    Yes you can, anything...

  • RE: What is causing SQL7 high CPU usage

    Execute system proc. sp_who2. as follows

    Exec Master..sp_who2

    This proc. will report all current sessions on any given SQL server,

    including CPU Time, Disk IO, Client Source (ex. IIS, Query Analyzer)...

  • RE: Stored Procedures - OUTPUT?

    Here is an example:

    CREATE PROC Author_Info

    @Au_Id VARCHAR(14) OUT,

    @Au_FName VARCHAR(14) OUT,

    @Au_LName VARCHAR(14) OUT,

    @Phone VARCHAR(14) OUT

    ...

Viewing 3 posts - 61 through 63 (of 63 total)