-
Notifications
You must be signed in to change notification settings - Fork 2
/
csqlplus.sh
executable file
·211 lines (183 loc) · 5.05 KB
/
csqlplus.sh
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
#!/bin/bash
# Cluster SQL*Plus
# Tool to query multiple databases in one command, useful in large environments
#
# Copyright (C) 2014 Simon Krenger <simon@krenger.ch>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
QUERY=
QUERY_FILE=
VERBOSE=0
CONCURRENCY=0
USERNAME=simon
PASSWORD=
INVENTORY_FILE=
usage()
{
cat << EOF
usage: $0 <-q "query"|-f "filename"> <-i "inventory_file"> <-p "password">
[-u "username"] [-c] [-v] [-h] [-?]
Tool to query multiple databases in one command, useful in large environments
OPTIONS:
-h Show this message
-q Query to be executed. Provide this in quotes (""), don't forget ";"
-f File that contains the query
-i Inventory file containing all databases to be queried
-u Username to be used for queries (Defaults to '$USERNAME')
-p Password to be used for queries
-c Enable concurrency
-v Verbose
EOF
}
while getopts "hq:f:i:u:p:vc" OPTION
do
case $OPTION in
h)
usage
exit 1
;;
q)
QUERY=$OPTARG
;;
f)
QUERY_FILE=$OPTARG
;;
i)
INVENTORY_FILE=$OPTARG
;;
u)
USERNAME=$OPTARG
;;
p)
PASSWORD=$OPTARG
;;
v)
VERBOSE=1
;;
c)
CONCURRENCY=1
;;
?)
usage
exit
;;
esac
done
# Prepare query
if [[ ! -z "$QUERY_FILE" ]]
then
if [ $VERBOSE -eq 1 ]; then
echo "Reading query from ${QUERY_FILE}..."
fi
QUERY=$(cat $QUERY_FILE) # This is only temporary (to perform some checks)
fi
# Make sure every parameter is set as needed
if [[ -z "$QUERY" ]]
then
echo 'ERROR: Query string (-q or -f) not provided'
usage
exit 1
fi
if [[ -z "$INVENTORY_FILE" ]]
then
echo 'ERROR: Inventory file (-i) not provided or does not exist'
usage
exit 1
fi
if [[ -z "$USERNAME" ]]
then
echo 'ERROR: Username (-u) not provided'
usage
exit 1
fi
if [[ -z "$PASSWORD" ]]
then
echo 'PASSWORD: Password (-p) not provided'
usage
exit 1
fi
if [ $(echo "$QUERY" | grep -i -E "INSERT|DELETE|UPDATE|MERGE|CREATE|ALTER|DROP|TRUNCATE|COMMIT" | wc -l) -gt 0 ]; then
echo "ERROR: Query contains DML/DDL statements"
echo "ERROR: You shouldn't use this tool to execute DML/DDL"
exit 1
fi
# Check software prereqs
command -v sqlplus >/dev/null 2>&1 || { echo >&2 "ERROR: I require sqlplus but it's not installed. Aborting."; exit 1; }
command -v tnsping >/dev/null 2>&1 || { echo >&2 "ERROR: I require tnsping it's not installed. Aborting."; exit 1; }
## Alright, we're ready to go
## Main part of script starts here
# Prepare SQL script
SQLFILE=$(mktemp) || exit 1
if [[ -z "$QUERY_FILE" ]]; then
# Prepare SQL script
echo "set linesize `tput cols`" >> $SQLFILE
echo "set pagesize 1000" >> $SQLFILE
echo "WHENEVER SQLERROR EXIT" >> $SQLFILE
echo "$QUERY" >> $SQLFILE
echo "quit" >> $SQLFILE # Append "quit"
else
# We assume that everything is set as needed in the SQL file
cp "$QUERY_FILE" "$SQLFILE"
fi
# Prepare "clean" inventory file
CLEAN_INVENTORY=$(mktemp) || exit 1
# Before executing queries, tnsping every DB and make a new CLEAN_INVENTORY
# This CLEAN_INVENTORY only contains entries that passed the tnsping test
echo "Validating..."
while read TNSNAME
do
if [ $VERBOSE -eq 1 ]; then
echo "Validating $TNSNAME..."
fi
tnsping $TNSNAME >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $TNSNAME >> $CLEAN_INVENTORY
else
echo "WARN: 'tnsping $TNSNAME' did return something other than 0, ommitting $TNSNAME..."
fi
done < "$INVENTORY_FILE"
if [ $VERBOSE -eq 1 ]; then
echo "Validation complete, now executing queries..."
fi
## Execution part
if [ $CONCURRENCY -eq 1 ]; then
# Make a temporary output folder to gather all output
OUTFOLDER=$(mktemp -d) || exit 1
# Now, start a process for each entry in CLEAN_INVENTORY
while read TNSNAME
do
# Execute and send to background
(sqlplus -S $USERNAME/$PASSWORD@$TNSNAME @${SQLFILE} > $OUTFOLDER/$TNSNAME) &
LAST_PID=$!
# Add PID of backgrounded process to PROCESS_ARRAY
PROCESS_ARRAY=("${PROCESS_ARRAY[@]}" "$LAST_PID")
done < "$CLEAN_INVENTORY"
# Now wait for all background processes to finish
wait ${PROCESS_ARRAY[@]}
# Write all output to STDOUT
for outfile in $OUTFOLDER/*; do
cat "$outfile" | awk -v outfile="$(basename $outfile)" '{print outfile": "$0}'
echo ""
done
else
# Execute commands serially
while read TNSNAME
do
if [ $VERBOSE -eq 1 ]; then
echo "$USERNAME@$TNSNAME:"
fi
sqlplus -S $USERNAME/$PASSWORD@$TNSNAME @${SQLFILE}
done < "$CLEAN_INVENTORY"
fi
# Clean up
rm $SQLFILE
rm -rf $OUTFOLDER
rm $CLEAN_INVENTORY