-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsga_resize_ops
executable file
·152 lines (133 loc) · 6.46 KB
/
sga_resize_ops
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
#!/bin/env python
##################################################################################################
# Name: sga_resize_ops #
# Author: Randy Johnson #
# Description: Reports SGA resizing operations. #
# #
# Usage: sga_resize_ops [options] #
# #
# Options: #
# -h, --help show this help message and exit #
# -g report gv$... (default is v$...) #
# --s print SQL query. #
# --v print version info. #
# #
# History: #
# #
# Date Ver. Who Change Description #
# ---------- ---- ---------------- ------------------------------------------------------------- #
# 04/24/2017 1.00 Randy Johnson Initial write. #
##################################################################################################
# --------------------------------------
# ---- Import Python Modules -----------
# --------------------------------------
from optparse import OptionParser
from os import environ
from os.path import basename
from sys import argv
from sys import exit
from sys import version_info
from signal import SIGPIPE
from signal import SIG_DFL
from signal import signal
from Oracle import RunSqlplus
from Oracle import SetOracleEnv
from Oracle import ParseConnectString
# --------------------------------------
# ---- Main Program --------------------
# --------------------------------------
if (__name__ == '__main__'):
Cmd = basename(argv[0]).split('.')[0]
CmdDesc = 'SGA Resizing Operations'
Version = '1.00'
VersionDate = 'Mon Apr 24 14:43:36 CDT 2017'
DevState = 'Production'
Banner = CmdDesc + ': Release ' + Version + ' ' + DevState + '. Last updated: ' + VersionDate
Sql = ''
SqlHeader = '/***** ' + CmdDesc.upper() + ' *****/'
ErrChk = False
ArgParser = OptionParser()
Sid = 0
InStr = ''
ConnStr = ''
InstList = []
# For handling termination in stdout pipe; ex: when you run: oerrdump | head
signal(SIGPIPE, SIG_DFL)
# Check/setup the Oracle environment
if (not('ORACLE_SID' in list(environ.keys()))):
print('ORACLE_SID is required.')
exit(1)
else:
# Set the ORACLE_HOME just in case it isn't set already.
if (not('ORACLE_HOME' in list(environ.keys()))):
(OracleSid, OracleHome) = SetOracleEnv(environ['ORACLE_SID'])
ArgParser.add_option('-g', dest='Global', action='store_true', default=False, help="report gv$... (default is v$...)")
ArgParser.add_option('--s', dest='Show', action='store_true', default=False, help="print SQL query.")
ArgParser.add_option('--v', dest='ShowVer', action='store_true', default=False, help="print version info.")
# Parse command line arguments
Options, args = ArgParser.parse_args()
Global = Options.Global
Show = Options.Show
ShowVer = Options.ShowVer
if (ShowVer == True):
print('\n%s' % Banner)
exit()
if (Global):
Sql += "column inst_id format a4 heading 'Inst'\n"
Sql += "column start_time format a20 heading 'Start Time'\n"
Sql += "column component format a30 heading 'Component'\n"
Sql += "column oper_type format a15 heading 'Operation Type'\n"
Sql += "column parameter format a40 heading 'Parameter'\n"
Sql += "column initial_size format 999,999,999,999 heading 'Initial Bytes'\n"
Sql += "column target_size format 999,999,999,999 heading 'Target Bytes'\n"
Sql += "column final_size format 999,999,999,999 heading 'Final Bytes'\n"
Sql += "\n"
Sql += " SELECT " + SqlHeader + "\n"
if (Global):
Sql += " TO_CHAR(inst_id) inst_id\n"
Sql += " , TO_CHAR(start_time, 'YYYY-MM-DD HH24:MI:SS') start_time\n"
else:
Sql += " TO_CHAR(start_time, 'YYYY-MM-DD HH24:MI:SS') start_time\n"
Sql += " , component\n"
Sql += " , initcap(oper_type) oper_type\n"
Sql += " , parameter\n"
Sql += " , initial_size\n"
Sql += " , target_size\n"
Sql += " , final_size\n"
if (Global):
Sql += " FROM gv$sga_resize_ops\n"
Sql += "ORDER BY inst_id\n"
Sql += " , start_time;"
else:
Sql += " FROM v$sga_resize_ops\n"
Sql += "ORDER BY start_time;"
Sql = Sql.strip()
if(Show):
print('-----------cut-----------cut-----------cut-----------cut-----------cut-----------')
print(Sql)
print('-----------cut-----------cut-----------cut-----------cut-----------cut-----------')
exit()
# Check/setup the Oracle environment
if (not('ORACLE_SID' in list(environ.keys()))):
print('ORACLE_SID is required.')
exit(1)
else:
# Set the ORACLE_HOME just in case it isn't set already.
if (not('ORACLE_HOME' in list(environ.keys()))):
(OracleSid, OracleHome) = SetOracleEnv(environ['ORACLE_SID'])
# Parse the connect string if any, prompt for username, password if needed.
if (len(args) > 0 and Show == False):
InStr = args[0]
ConnStr = ParseConnectString(InStr)
# Execute the report
if (ConnStr != ''):
(Stdout) = RunSqlplus(Sql, ErrChk, ConnStr)
else:
(Stdout) = RunSqlplus(Sql, ErrChk)
# Print the report
if (Stdout != ''):
print('\n%s' % Stdout)
exit(0)
# --------------------------------------
# ---- End Main Program ----------------
# --------------------------------------