January 27, 2010 at 9:25 pm
I am working with SQL SERVER 2000,Is it possible to Pass table variable or temp table as input parameter to stored procedure?Can I define a table type input parameter for stored procedure.
Thanks
January 27, 2010 at 9:30 pm
arctica82 (1/27/2010)
I am working with SQL SERVER 2000,Is it possible to Pass table variable or temp table as input parameter to stored procedure?
Not in SQL 2000.
Can I define a table type input parameter for stored procedure.
Thanks
Not in SQL 2000.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
January 27, 2010 at 10:48 pm
You can load the data into a table and in the stored procedure reference this table. That should work.
January 28, 2010 at 11:02 pm
Temp tables work perfectly for this purpose.
_____________
Code for TallyGenerator
April 15, 2011 at 1:57 pm
Not in SQL 2000. Yes in SQL 2005/2008 though...
April 15, 2011 at 2:42 pm
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply