Feb 10, 2006 #1 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.
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.
Feb 10, 2006 #2 SQLDenis Programmer Joined Oct 1, 2005 Messages 5,575 Location US 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:http://sqlservercode.blogspot.com/ Personal Blog:http://otherthingsnow.blogspot.com/ Upvote 0 Downvote
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:http://sqlservercode.blogspot.com/ Personal Blog:http://otherthingsnow.blogspot.com/