June 2015
Intermediate to advanced
1800 pages
70h 6m
English
SQL Server 2014 introduces In-Memory OLTP, which also introduces the concept of native compilation. SQL Server 2014 can now natively compile stored procedures that access memory-optimized tables. Native compilation allows faster data access and more efficient query execution than normal T-SQL Stored procedures which are processed as interpreted Transact-SQL.
The main difference between interpreted stored procedures and natively compiled stored procedures is that an interpreted stored procedure isn’t compiled until its first execution whereas a natively compiled stored procedure is compiled when it is created. That compile process first translates the stored procedure code into C code, and then into machine ...
Read now
Unlock full access