DMF sys.dm_exec_sql_text does not show DBID

I have this request from

http://technet.microsoft.com/en-us/library/ms181929.aspx

SELECT s2.dbid, 
    s1.sql_handle,  
    (SELECT TOP 1 SUBSTRING(s2.text,statement_start_offset / 2+1 , 
      ( (CASE WHEN statement_end_offset = -1 
         THEN (LEN(CONVERT(nvarchar(max),s2.text)) * 2) 
         ELSE statement_end_offset END)  - statement_start_offset) / 2+1))  AS sql_statement,
    execution_count, 
    plan_generation_num, 
    last_execution_time,   
    total_worker_time, 
    last_worker_time, 
    min_worker_time, 
    max_worker_time,
    total_physical_reads, 
    last_physical_reads, 
    min_physical_reads,  
    max_physical_reads,  
    total_logical_writes, 
    last_logical_writes, 
    min_logical_writes, 
    max_logical_writes  
FROM sys.dm_exec_query_stats AS s1 
CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS s2  
WHERE s2.objectid is null 
ORDER BY s1.sql_handle, s1.statement_start_offset, s1.statement_end_offset;

When I execute it, the dbid field is returned as null. enter image description here Why is this so? I want to limit queries from one database, but it seems that it does not work.

Thanks so much for your answers.

+4
source share
2 answers

1) This behavior is available in SQL2005 -> SQL2008R2.

2) Why sys.dm_exec_sql_text.dbidis it (sometimes) NULL?

  • SQLQL5 → SQL2008R2 dbid NULL " SQL" (. MSDN SQL Server 2008 R2),
  • SQL 2012 " SQL, , " (. MSDN). , SQL2012 dbid , NULL, " SQL-".

3) SQL2008 → SQL2008R2, sys.dm_exec_plan_attributes (. MSDN)

SELECT ..., ISNULL(s2.dbid,CONVERT(SMALLINT,att.value)) AS my_dbid, ...
FROM sys.dm_exec_query_stats AS s1 
CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS s2 
CROSS APPLY sys.dm_exec_plan_attributes(s1.plan_handle) att
WHERE att.attribute='dbid
+5

Microsoft connect. , dbid null :

Sql_handle - -, SQL , . , - . , sql_handle , / ad-hoc.

, , , , , , .

+1

All Articles