views:

107

answers:

1

I was wondering if SQL Server has an equivalent to Oracle PL/SQL Package? It is really nice to build your sprocs, functions, etc into a Package.

+2  A: 

Don't know if is a pure T-SQL equivalent, but you can Create all your procedures, functions into an .NET Assembly and the use it in SQL Server 2005 and higher.

Documentation

Alex LE
Better link: http://www.programmersheaven.com/2/SQL-server-2005-school-lesson-6
OMG Ponies
Thanks I will look into that. I appreciate the info
scarpacci