0
SQL Server Profiler shows how SQL Server resolves queries internally. on Microsoft SQL Server Management Studio on Menus Tools-> SQL Server Profiler.
as you can see the log file generated is too big to track. by adding Application Name to ConnectionString , you can filter the Log file:
server=MyServer;database=MyDatabase;Integrated Security=SSPI;Application Name=My Application;
Posted on 6:53 AM by Softminer and filed under
SQL
SQL Server Profiler shows how SQL Server resolves queries internally. on Microsoft SQL Server Management Studio on Menus Tools-> SQL Server Profiler.
as you can see the log file generated is too big to track. by adding Application Name to ConnectionString , you can filter the Log file:
server=MyServer;database=MyDatabase;Integrated Security=SSPI;Application Name=My Application;
Post a Comment