Database Standard Review Checklist

E.g. SELECT ‘hi there’ + NULL Medium Transact – SQL strings should be executed using sp_executesql, instead of using EXECUTE statement. sp_executesql creates query execution plan that can be re-used by SQL Server. Medium No tables should have Insert, Update, Delete permissions. These can only be done through stored procedures. ................
................