Select from following answers:- CREATE PROC

- CREATE ASSEMBLY
- ALTER PROC
- All Above
Use CREATE PROC statement, which allows you to create a (CLR) stored procedure.
Not use the ALTER PROC statement. You use this statement to modify an existing stored procedure. You cannot use this statement to create a CLR stored procedure.
Not use the CREATE ASSEMBLY statement. You use this statement to create a managed application module that contains both class metadata and managed code.
Show Correct Answer
Source: Microsoft Press book | |
Alert Moderator