scarpacci
scarpacci

Reputation: 9194

Does SQL Server have an equivalent to Oracle's PL/SQL Package?

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.

Upvotes: 4

Views: 3110

Answers (1)

Alex LE
Alex LE

Reputation: 20572

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

Upvotes: 3

Related Questions