2009年9月21日月曜日

groovyでSQL Serverの構成オプション情報を取得する

groovyでSQL Serverの構成オプション情報を取得するには、以下のコードを実行します。


import groovy.sql.Sql

sql = Sql.newInstance(
"jdbc:sqlserver://localhost;databaseName=master",
"sa",
"sa",
"com.microsoft.sqlserver.jdbc.SQLServerDriver")

// 構成オプション情報を取得
sql.eachRow("select name, description, " +
"cast(value_in_use as varchar) as value_in_use " +
"from sys.configurations") {
// 構成オプションの名前
println "name:${it.name}"
// 構成オプションの説明
println "description:${it.description}"
// 構成オプションの現在有効な値
println "value_in_use:${it.value_in_use}"
}


動作環境
Groovy 1.6.3, JDK6 Update14, SQL Server JDBC Driver 2.0,
SQL Server 2008 Express

関連情報
sys.configurations
http://msdn.microsoft.com/ja-jp/library/ms188345.aspx

実行結果例

name:recovery interval (min)
description:Maximum recovery interval in minutes
value_in_use:0
name:allow updates
description:Allow updates to system tables
value_in_use:0
name:user connections
description:Number of user connections allowed
value_in_use:0
name:locks
description:Number of locks for all users
value_in_use:0

省略

0 件のコメント:

コメントを投稿