Does SQL Server handle unmanaged resources?please anser this
A:
Or course it does. Even files are by definition unmanaged. SQL Server is a native application, with it's own memory management etc.
Maximilian Mayerl
2009-10-29 11:06:52
So you want to claim that SQL Server is a .NET application? XD
Maximilian Mayerl
2009-10-29 11:09:37
+1
A:
Nothing handles unmanaged resources. That's why they're unmanaged. I presume you are asking with respect to .net stored procedures in Sql Server.
You need to dispose of those resources as normal (with using(){}, calling dispose() etc.)
WOPR
2009-10-29 11:11:31