May 28, 2011 at 4:46 am
Dear Sir,
I want to get all properties of current connection in sql server 2005 using sql command not winzard but how to get it. please help me
thanking you
debasis
May 28, 2011 at 5:59 am
Suggest reading this:
Above article contains:
CREATE TABLE #ConnectionOptions (property VARCHAR(100), value INT)
INSERT #ConnectionOptions
SELECT 'implicit transactions', 2 UNION ALL
SELECT 'cursor close on commit', 4 UNION ALL
SELECT 'ansi warnings', 8 UNION ALL
SELECT 'ansi padding', 16 UNION ALL
SELECT 'ansi nulls', 32 UNION ALL
SELECT 'arithmetic abort', 64 UNION ALL
SELECT 'arithmetic ignore', 128 UNION ALL
SELECT 'quoted identifier', 256 UNION ALL
SELECT 'no count', 512 UNION ALL
SELECT 'ansi null default on', 1024 UNION ALL
SELECT 'ansi null default off', 2048 UNION ALL
SELECT 'concat null yields null', 4096 UNION ALL
SELECT 'numeric round abort', 8192 UNION ALL
SELECT 'xact_abort on', 16384
--define the table structure
CREATE TABLE #UserOptions ( name VARCHAR(100), minimum INT, maximum INT, config_vale INT, run_value INT)
--Retrieve the data
INSERT #UserOptions
EXEC sp_configure 'User options'
DECLARE @currentvalue INT
SELECT @currentvalue = run_value FROM #UserOptions
SELECT property, CASE WHEN (@currentvalue & value) = value
THEN 'has been SET'
ELSE 'NOT SET'
END CurrentValue
FROM #ConnectionOptions
To further understand connection properties read:
http://www.connectionstrings.com/Articles/Show/all-sql-server-connection-string-keywords
Besides the code the article is an excellent read with additional code, I strongly suggest reading it, and of course testing the code on a non production system before implimenting in production.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply