Recent Posts

Use Parameterized Queries Or Store Procedures

less than 1 minute read

Parameterized queries are exactly the same as stored procedures in terms of performance and memory management. Since most ORM tools can use either stored pro...

Index On Specific Columns

less than 1 minute read

Performance is enhanced when indexes are placed on columns used in WHERE, JOIN, ORDER BY, GROUP, and TOP. Always test to ensure that the index does help perf...