The SQL CLR Integration is not available in SQL Server 2012 by default. To access the database objects necessary for SQL CLR integration in your COBOL applications, you must enable SQL CLR.
Do this using the clr enabled option of the sp_configure stored procedure.
sp_configure 'clr enabled', 1 GO reconfigure GO
This concludes this tutorial. Please continue with Tutorial: Create a Sample Database