スクリプト互換性サポートなしで、改善変更を加えるための準備を行います。
トランザクション・ログ・ディレクトリー属性のロケーションは 、ApplicationServer::TransactionService から ServerEntry::recoveryLogs に変更されました。 新規ロケーションが使用されていない限り、旧ロケーションの値が引き続 き使用されます。 旧ロケーションを変更するスクリプトも引き続き使用可能です。 その値は、新規ロケーションの値が設定されるまで有効です。 新規ロケーション を使用するためのスクリプトへの変更は、以下のとおりです。
set transService [$AdminConfig list TransactionService $server1] $AdminConfig showAttribute $transService transactionLogDirectory
AdminConfig.list("ServerEntry") # Select one entry from the list, e.g the entry for server1: serverEntryId = AdminConfig.getid("/ServerEntry:server1") serverEntry = AdminConfig.list("ServerEntry", serverEntryId) recoveryLog = AdminConfig.showAttribute(serverEntry, "recoveryLog") AdminConfig.showAttribute(recoveryLog, "transactionLogDirectory")
$AdminConfig list ServerEntry $node set serverEntry <select one of the ServerEntry from output of above command> set recoveryLog [$AdminConfig showAttribute $serverEntry recoveryLog] $AdminConfig showAttribute $recoveryLog transactionLogDirectory