-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexec_log.sh
More file actions
81 lines (78 loc) · 2.16 KB
/
exec_log.sh
File metadata and controls
81 lines (78 loc) · 2.16 KB
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
echo "Execution script and error log for *.sql scripts"
echo "Autor: Aldo Vilardy 30/02/2015"
echo "The error log will be regitered into the file info.txt"
FILE=./info.txt
if [ -f "$FILE" ]; then
rm -f $FILE
fi
for script in *.sql;
do
sqlcmd -S localhost -d Briefing2 -E -i "$script" -b -o msg.txt
if $? = 1; then
echo >> info.txt
$dateTime = 'date +"%Y-%m-%d %T"'
echo "$dateTime Script Error $script" >> info.txt
arr1=""
mapfile -t arr1 <msg.txt
for i in ${!arr1[@]}; do
echo "{arr[i]}" >> $FILE
done
fi
done
if [ ! -f "$FILE" ]; then
echo No errors were reported in the execution of the scripts
echo No errors were reported in the execution of the scripts >> info.txt
fi
read -p "Press enter to continue..."
echo "Execution script and error log for *.sql scripts"
echo "Autor: Aldo Vilardy 30/02/2015"
echo "The error log will be regitered into the file info.txt"
FILE=./info.txt
if [ -f "$FILE" ]; then
rm -f $FILE
fi
for script in *.sql;
do
sqlcmd -S localhost -d Briefing2 -E -i "$script" -b -o msg.txt
if $? = 1; then
echo >> info.txt
$dateTime = 'date +"%Y-%m-%d %T"'
echo "$dateTime Script Error $script" >> info.txt
arr1=""
mapfile -t arr1 <msg.txt
for i in ${!arr1[@]}; do
echo "{arr[i]}" >> $FILE
done
fi
done
if [ ! -f "$FILE" ]; then
echo No errors were reported in the execution of the scripts
echo No errors were reported in the execution of the scripts >> info.txt
fi
read -p "Press enter to continue..."
echo "Execution script and error log for *.sql scripts"
echo "Autor: Aldo Vilardy 30/02/2015"
echo "The error log will be regitered into the file info.txt"
FILE=./info.txt
if [ -f "$FILE" ]; then
rm -f $FILE
fi
for script in *.sql;
do
sqlcmd -S localhost -d Briefing2 -E -i "$script" -b -o msg.txt
if $? = 1; then
echo >> info.txt
$dateTime = 'date +"%Y-%m-%d %T"'
echo "$dateTime Script Error $script" >> info.txt
arr1=""
mapfile -t arr1 <msg.txt
for i in ${!arr1[@]}; do
echo "{arr[i]}" >> $FILE
done
fi
done
if [ ! -f "$FILE" ]; then
echo No errors were reported in the execution of the scripts
echo No errors were reported in the execution of the scripts >> info.txt
fi
read -p "Press enter to continue..."