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
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Table parameters in stored procedures

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2002-07-02 : 11:02:41
Glen writes "Is it possible to pass a TABLE parameter (TABLE data type) to a stored procedure? Can you specify a TABLE parameter as an OUTPUT paramter?"

dsdeming

479 Posts

Posted - 2002-07-02 : 13:01:25
SQL Server 2K allows you to output table data types from user-defined functions, but I know of no way to pass a table datatype into a stored procedure. Of course, you can always use a global temp table ( ##table ) or a permanent table and pass in the name.

Go to Top of Page
   

- Advertisement -