I've written a few SQL stored procedures in a text editor. But how do I actually "store" them in (add them to?) a database using SQL Server 2008 Management Studio Express? I've tried to research this topic in Management Studio's onboard Help, but apparently Help assumes I know more about the subject than I actually do, because I don't even see the relevance of the answers I'm getting to my questions. Any help would be appreciated, including pointing me to a good SQL tutorial that assumes the reader knows nothing, yet teaches more than the bare-bones minimum.
Loading
Vijaya KadiyalaPosted Apr 9, 2009, 2:38 PM
Can you paste the source code of your stored procedure?
Thanks -- Vijaya Kadiyala
www.DotNetVJ.Com
Jan MontanoPosted Apr 3, 2009, 3:05 AM
you specify those details in the sql statement inside the stored proceduer itself like the statement
SELECT firstname, lastname FROM employee
Bob LewistonPosted Apr 2, 2009, 12:20 PM
Scott Lysle:
Thanks for help.
One question: don't I have to associate a procedure with a given table? Otherwise, how will the procedure recognize the column names?
Scott LyslePosted Apr 2, 2009, 12:43 AM