Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Multiple Parmeters

Author  Topic 

alikhan707
Starting Member

5 Posts

Posted - 2009-10-02 : 02:24:06
How can i pass multiple parameters in stored proceduers ?

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2009-10-02 : 03:12:51
Can you more specific and elaborate more on your question ?

to pass parameters to stored procedure, use the following syntax.


exec your_stored_procedure @para1 = < some value >, @para2 = < some value >


or are you looking for
http://vyaskn.tripod.com/passing_arrays_to_stored_procedures.htm
http://www.sommarskog.se/arrays-in-sql-2005.html


KH
[spoiler]Time is always against us[/spoiler]

Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-10-02 : 06:22:55
or do you mean passing an array of values to parameter?

http://vyaskn.tripod.com/passing_arrays_to_stored_procedures.htm
Go to Top of Page

alikhan707
Starting Member

5 Posts

Posted - 2009-10-05 : 03:19:31
Thanx for your help, i find the solution.
Go to Top of Page
   

- Advertisement -