SQL Server 2012 Temporary Tables Optimization Tips Use local temporary tables instead of SQL Server 2012 cursors. Because using temporary tables usually are more efficient than using cursors, you should use temporary tables instead of cursors whenever possible. Try to avoid using temporary tables inside your stored procedure. Using temporary tables inside stored procedure reduces the chance to reuse the…