Unlock a cloudscape database that has been locked for readonly access.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | @echo off
setlocal
set dbDir=C:\DERBYDatabases\yourDB
echo ###################################################
echo # Create db on %computername%
echo ###################################################
set CLASSPATH=%CLASSPATH%;C:\IBM\Cloudscape_10.1\lib\derby.jar
set CLASSPATH=%CLASSPATH%;C:\IBM\Cloudscape_10.1\lib\derbyclient.jar
set CLASSPATH=%CLASSPATH%;C:\IBM\Cloudscape_10.1\lib\derbynet.jar
set CLASSPATH=%CLASSPATH%;C:\IBM\Cloudscape_10.1\lib\derbytools.jar
c:\tclBlendSun\bin\jtclsh.bat C:\SCRIPTS\TCL\JACL\cloudscape\unlockDB.tcl %dbDir%
endlocal
========================================================================
#
# Unlock DB.
#
####################################################################
# Patrick Finnegan 23/11/2005. V1.
####################################################################
puts "\n **** executing [info script] **** \n"
# make script drive independent.
set drive [lindex [file split [info script]] 0 ]
puts "\n proclib = $drive/scripts/TCL/proclib"
source $drive/scripts/TCL/proclib/checkFile_proc.tcl
source $drive/scripts/TCL/proclib/smtp_proc.tcl
source $drive/scripts/TCL/proclib/reportHeader_proc.tcl
####################################################################
# Connect to database.
####################################################################
proc connectDB { dbDir } {
puts "\n**********"
puts "connectDB"
puts "**********\n"
global env
global null
# load client driver
java::call Class forName org.apache.derby.jdbc.ClientDriver
append url jdbc:derby
append url ":"
append url "//"
append url $::env(COMPUTERNAME)
append url ":"
append url "1527"
append url "/"
append url $dbDir
puts "\n connection URL is: $url\n"
java::try {
set ConnectionI [ java::call DriverManager getConnection $url ]
} catch {SQLException SQLExceptionI } {
catchSqlException $SQLExceptionI
} catch {TclException e } {
puts "TCl Exception during Create Database: $url"
return -code error
}
java::lock $ConnectionI
return $ConnectionI
}
####################################################################
# UnLock database.
####################################################################
proc unlockDb { dbDir ConnectionI } {
puts "\n**********"
puts "Unlock DB $dbDir"
puts "**********\n"
global env
global null
# create statement object
java::try {
set StatementI [ $ConnectionI createStatement ]
} catch {SQLException SQLExceptionI } {
catchSqlException $SQLExceptionI
} catch {TclException e } {
puts "TCl Exception during Create Database: $url"
return -code error $e
}
set sql "CALL SYSCS_UTIL.SYSCS_UNFREEZE_DATABASE()"
java::try {
$StatementI executeUpdate $sql
} catch {SQLException SQLExceptionI } {
catchSqlException $SQLExceptionI
} catch {TclException e } {
puts "TCl Exception during Create Database: $url"
return -code error $e
}
}
####################################################################
# proc - sqlException.
####################################################################
proc catchSqlException { SQLExceptionI } {
global AdminConfig
global AdminControl
global Help
global null
puts "\n**********"
puts "catchSqlException"
puts "**********\n"
set sqlCode [ $SQLExceptionI toString ]
set sqlMessage [ $SQLExceptionI getMessage ]
set errorCode [ $SQLExceptionI getErrorCode ]
set sqlState [ $SQLExceptionI getSQLState ]
if { $sqlCode != $null } { lappend msgList "sql code is: \t$sqlCode" }
if { $sqlMessage != $null } { lappend msgList "sql message is: \t$sqlMessage" }
if { $errorCode != $null } { lappend msgList "error code is: \t$errorCode" }
if { $sqlState != $null } { lappend msgList "sql state is: \t$sqlState\n" }
while { $SQLExceptionI != $null } {
puts "\nget SQL Exception\n"
set sqlCode [ $SQLExceptionI toString ]
set sqlMessage [ $SQLExceptionI getMessage ]
set errorCode [ $SQLExceptionI getErrorCode ]
set sqlState [ $SQLExceptionI getSQLState ]
if { $sqlCode != $null } { lappend msgList "sql code is: \t$sqlCode" }
if { $sqlMessage != $null } { lappend msgList "sql message is: \t$sqlMessage " }
if { $errorCode != $null } { lappend msgList "error code is: \t$errorCode" }
if { $sqlState != $null } { lappend msgList "sql state is: \t$sqlState" }
set SQLExceptionI [ $SQLExceptionI getNextException ]
}
return -code error $msgList
}
####################################################################
# Main Control.
####################################################################
puts "\n argc = $argc \n"
if {$argc < 1} {
return -code error "\nerror - not enough arguments supplied.\nSupply db directory."
}
set dbDir [ lindex $argv 0 ]
# If the backup directory does not exist create it.
puts "\ndbdir = $dbDir"
set computerName $::env(COMPUTERNAME)
set traceFile [ file join $dbDir backupDb\.log ]
set traceFileId [ open $traceFile a ]
checkFile $dbDir
set header "$computerName: Unlock Cloudscape Db: $dbDir"
reportHeader $traceFileId $header $traceFile
set computerTime [clock format [clock seconds] -format "%d-%m-%Y %H.%M.%S"]
#call java package
package require java
set null [ java::null ]
# import required classes
java::import java.sql.Connection
java::import java.sql.DriverManager
java::import java.sql.SQLWarning
java::import java.sql.Statement
java::import org.apache.derby.jdbc.ClientDriver
puts "\nimported classes are:\n"
foreach i [java::import] {
puts [ format "%-5s %-50s" " " $i ]
}
if { [ catch { connectDB $dbDir } r ] == 0 } {
set ConnectionI $r
lappend msgList "***** Connected to $dbDir *****"
if { [ catch { unlockDb $dbDir $ConnectionI } r ] == 0 } {
lappend msgList "***** Database $dbDir unlocked *****."
} else {
lappend msgList "***** Database $dbDir unlock failed *****."
lappend msgList $r
}
} else {
lappend msgList "\n***** Failed to connect to $dbDir *****.\n"
lappend msgList $r
}
foreach i $msgList {
puts $i
puts $traceFileId $i
}
close $traceFileId
set subject "$computerName: Unlock Db: $dbDir"
set emailAddress you@yourmail.com
sendSimpleMessage $emailAddress $subject $traceFile
|
This script uses the Cloudscape Java API to unlock a database that has been locked for read only access.
Requires Tclblend.
Tclblend: http://tcljava.sourceforge.net/docs/website/index.html. Tclblend Windows Build Instructions: http://wiki.tcl.tk/9993
Tags: database