开发者

SQL Server Profiler showing EF queries against master database?

What am I missing here? The queries I see in SQL Server Profiler are all targeted against the master database, which makes it difficult to filter by database name ... which event or events should I be watch开发者_JAVA百科ing so I can filter by database name.

The bigger question, what exactly is going on here?


You should remove this 'MultipleActiveResultSets=True' from your EntityFramework connection

string

after that, you can see the target database name show in the Profiler , instead of master.

In my option, maybe ADO.NET team want to make use the MultipleActiveResultSets feature to get

data from DB, so they have to access master.

MultipleActiveResultSets is about raise one query and don't return all its result (like in foreach statement in LINQ) , and in the same time ,raise another query to get another data in the same session.

By default, this behavior is not allowed by DB. SO.....


I was able to get around this issue, including leaving MARS active by adding an application name to my connection string:

Data Source=database_server;Initial Catalog=MyDatabase;Trusted Connection=true;MultipleActiveResultSets=True;Application Name=MyDatabase;

Then you can filter on application name.


If this is for SQL Server 2008 R2, in your trace properties, on the 'Events Selection' tab, check 'Show all columns'. You should then be able to create a column filter based on DatabaseName.

I believe you'll have to pause or stop your trace to make these changes.


As K Ivanov pointed out, having MARS (MultipleActiveResultSets) enabled will show the DatabaseName as master in SQL Profiler. By setting this to false, it'll show the proper DatabaseName, but then you lose the ability to have MultipleActiveResults.


you can use LoginName or HostName to filter in the profiler


For some reason, if I select the SP:CacheHit event, it now shows the queries against the correct database and I am able to filter by it. What is that event exactly?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜