Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

EXECUTION OF PROCEDURES

Status
Not open for further replies.

ijitnoin

Programmer
Joined
Jan 26, 2006
Messages
18
Location
US
If have created Views of which I assume can be called by an application to create a form or report. I am not sure how this work.

My problem mainly is how to execute a procedure to see/test the output; verifying that the results are acquate.
 
Don't know If I understand you completely but take a look at this

Code:
create procedure prTestViews 
@id int
as

set nocount on

select * from YourView
where id = @id

set nocount off

then to test
Code:
exec prTestViews 1

Denis The SQL Menace
SQL blog:
Personal Blog:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top