Some tips to use System Monitor with SQL Server 2014 System Monitor works on Windows operating systems and can be used to monitor an instance of SQL Server 2014. The difference between SQL Server Profiler and System Monitor is that SQL Server Profiler monitors Database Engine events, whereas System Monitor monitors resource usage associated with server processes. Ensure that SQL...
Tag: audit
Some tips to use System Monitor with SQL Server 2014
Some tips to use System Monitor with SQL Server 2014 System Monitor works on Windows operating systems and can be used to monitor an instance of SQL Server 2014. The difference between SQL Server Profiler and System Monitor is that SQL Server Profiler monitors Database Engine events, whereas System Monitor monitors resource usage associated with server processes. Ensure that SQL […]
Tips for using stored procedures in SQL Server 2014
Tips for using stored procedures in SQL Server 2014 Try to avoid using temporary tables and DDL (Data Definition Language) statements inside your stored procedure. Using temporary tables or DDL statements inside stored procedure reduces the chance to reuse the execution plan. Call stored procedure using its fully qualified name. The complete name of an object consists of four identifiers:...