|
You could run the stored procedure from the query analyzer using a simpe command
exec usp_displayallusers
where usp_displayallusers is the stored procedure name it can be anyting abc, sp_abc, or usp_xyz. usp is added by many programmers
just to denote user stored procedure (usp) just like iHello for integer in hungarian notation.
|