In a procedure with native compilation, T-SQL code is compiled to dll and executed as native C code. To create a Native Compiled stored Procedure you need to:
Use standard CREATE PROCEDURE syntax
Set NATIVE_COMPILATION option in stored procedure definition
Use SCHEMABINDING option in stored pro...