Archive

Posts Tagged ‘SQL Mentalist’

BI SQL # 275 : SQL Server DBA Scripts : Find Session details

April 14, 2014 Leave a comment

Hi Folks,

In this article we are going to cover How to Find Session details.

In this post we are going to discuss following points:

  • Problem Statement of SQL Script:
  • Description of SQL Script:
  • SQL Script Output Column
  • SQL Script Code
  • SQL Script Output Screenshot
  • User Level to execute

Problem Statement of SQL Script:

How to find Session details ?

Description of SQL Script:

This script will find Session details.

SQL Script Output Column

image

SQL Script Code

SELECT R1.session_id
    ,R1.internal_objects_alloc_page_count + R2.
    task_internal_objects_alloc_page_count AS 
    session_internal_objects_alloc_page_count
    ,R1.internal_objects_dealloc_page_count + R2.
    task_internal_objects_dealloc_page_count AS 
    session_internal_objects_dealloc_page_count
FROM sys.dm_db_session_space_usage AS R1
INNER JOIN (
    SELECT session_id
        ,SUM(internal_objects_alloc_page_count) AS 
        task_internal_objects_alloc_page_count
        ,SUM(internal_objects_dealloc_page_count) AS 
        task_internal_objects_dealloc_page_count
    FROM sys.dm_db_task_space_usage
    GROUP BY session_id
    ) AS R2 ON R1.session_id = R2.session_id
WHERE R1.internal_objects_alloc_page_count <> 0

SQL Script Output Screenshot

image

User Level to execute

300

    Hope you will like How to Find Session details.

    If you really like reading my blog and understood at least few thing then please don’t forget to subscribe my blog.

If you want daily link and analysis or interesting link go to following website which will give @ your inbox please subscribe our following link resource blog :

Link Resource Website

For More information related to BI World visit my Mentalist Blog

SQL Server Mentalist >> SQL Learning Blog

Business Intelligence Mentalist >> BI World

Infographic Mentalist >> Image worth explaining thousand Words

Microsoft Mentalist >> MVC,ASP.NET, WCF & LinQ

DBA Mentalist >>Advance SQL Server Blog

Microsoft BI Mentalist >> MS BI Development Update

Connect With me on

| FaceBook |Twitter | linkedIn| Google+ | WordPress | RSS |