Question : Table parameter in SQL 2008

Is it possible to pass a table parameter to a stored procedure without having to create a type for it?

I would have to define the table in the stored procedure instead of defining a type.

Is this possible?

Something like:

CREATE PROCEDURE [dbo].[XYZ]
@table table (id int, description varchar(100)), ...

Answer : Table parameter in SQL 2008

Random Solutions  
 
programming4us programming4us