Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
oracle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
oracle
Commits
59850cb3
Commit
59850cb3
authored
7 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
Add script to retrieve sizes of databases
parent
f68247d2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
files/ora_get_sizes.sh
+3
-0
3 additions, 0 deletions
files/ora_get_sizes.sh
files/ora_get_sizes.sql
+30
-0
30 additions, 0 deletions
files/ora_get_sizes.sql
tasks/configure.yml
+2
-0
2 additions, 0 deletions
tasks/configure.yml
with
35 additions
and
0 deletions
files/ora_get_sizes.sh
0 → 100644
+
3
−
0
View file @
59850cb3
#!/bin/bash
sqlplus
-S
sys/root as sysdba < ora_get_sizes.sql
This diff is collapsed.
Click to expand it.
files/ora_get_sizes.sql
0 → 100644
+
30
−
0
View file @
59850cb3
set
colsep
'|'
set
echo
off
set
feedback
off
set
linesize
1000
set
pagesize
0
set
sqlprompt
''
set
trimspool
on
set
headsep
off
select
nvl
(
b
.
tablespace_name
,
nvl
(
a
.
tablespace_name
,
'UNKNOWN'
))
tablespace_name
,
kbytes_alloc
kbytes
,
kbytes_alloc
-
nvl
(
kbytes_free
,
0
)
size_alloc_bytes
,
round
(((
kbytes_alloc
-
nvl
(
kbytes_free
,
0
))
/
kbytes_alloc
)
*
200
)
used_chart
,
to_char
(((
kbytes_alloc
-
nvl
(
kbytes_free
,
0
))
/
kbytes_alloc
)
*
100
,
'999G999G999G999G999G999G990D00'
)
||
'%'
used
,
data_files
from
(
select
sum
(
bytes
)
/
1024
/
1024
Kbytes_free
,
max
(
bytes
)
/
1024
/
1024
largest
,
tablespace_name
from
sys
.
dba_free_space
group
by
tablespace_name
)
a
,
(
select
sum
(
bytes
)
/
1024
/
1024
Kbytes_alloc
,
tablespace_name
,
count
(
*
)
data_files
from
sys
.
dba_data_files
group
by
tablespace_name
)
b
where
a
.
tablespace_name
(
+
)
=
b
.
tablespace_name
;
This diff is collapsed.
Click to expand it.
tasks/configure.yml
+
2
−
0
View file @
59850cb3
...
...
@@ -12,6 +12,8 @@
-
'
cadmin_list_databases.sh'
-
'
cadmin_list_databases.sql'
-
'
sqlplus.sh'
-
'
ora_get_sizes.sh'
-
'
ora_get_sizes.sql'
-
name
:
"
Create
Directory"
file
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment