Session settings

External Article

How to find, compare and use the exact same session settings as another user in SQL Server

  • Article

When diagnosing issues in SQL Server I've found that sometimes I need to be able to mimic a user's session state when attempting to repeat an error they may be receiving. The smallest differences can completely change the outcome, so I need to ensure all the session settings (QUOTED_IDENTIFIER, ANSI_NULLS, and so forth) are identical between the production session and my test session. Is there an easy way to determine these settings with a single query?

2009-08-31

2,627 reads

Blogs

T-SQL Tuesday #198 Invitation: How Do You Detect Data Changes?

By

It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...

Understanding Fabric MCP

By

Model Context Protocol, or MCP, is one of those technical ideas that sounds more...

AWS RDS Aurora - our first approach

By

When starting with AWS RDS Aurora for managing relational databases in the cloud, many...

Read the latest Blogs

Forums

BEGINI Cara mengatasi saldo tertahan di akun bws mobile

By Genveritas1

Cara Mengatasi saldo tertahan di Bank Woori Saudara (BWS) dapat dilakukan dengan menghubungi BWS...

BCA KCP Sweta WhatsApp 08388331786

By armi

Telepon 08388331786.Jl. Sandubaya No.70-72, Sweta, Bertais, Kec. Sandubaya, Kota Mataram, Nusa Tenggara Bar. 83236

BCA Cabang Pancor WhatsApp 08388331786

By armi

Call 08388331786.9G39+JVQ, Pancor, Kec. Selong, Kabupaten Lombok Timur, Nusa Tenggara Bar. 83611

Visit the forum

Question of the Day

Creating a JSON Document III

I have this data in a table called dbo.NFLTeams

TeamID  TeamName       City             YearEstablished
------  --------       ----             ---------------
1       Cowboys        Dallas           1960
2       Eagles         Philadelphia     1933
3       Packers        Green Bay        1919
4       Chiefs         Kansas City      1960
5       49ers          San Francisco    1946
6       Broncos        Denver           1960
7       Seahawks       Seattle          1976
8       Patriots       New England      1960
If I run this code, how many rows are returned?
SELECT TOP 2 
  json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;

See possible answers