Viewing 3 posts - 61 through 63 (of 63 total)
quote:can i write a cursor in a stored procedure?
quote:
Yes you can, anything...
June 6, 2003 at 8:54 am
#460200
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)...
June 6, 2003 at 8:45 am
#460194
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
...
June 5, 2003 at 9:58 am
#459997