How do I test stored procedure there in sql server 2000( Iam involved in software testing )?
Question:
Answer:
Um ... write the stored procedure, then execute it? That seems to be pretty obvious.
Just make a duplicate version of the same database and all its objects, if you're worried about destroying the DB if your procedure goes bad.
To test stored procedure, the the SP in Query Analyzer.
For example:
EXEC SP_Name Value1, Value2
More Questions & Answers...