Questionaries.org
Login
Register
Questions
Unanswered
Tags
Users
Ask a Question
Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.
Let us know at info@questionaries.org
How do I find used/free space in a TEMPORARY tablespace?
3
like
0
dislike
Hello guys,
Anybody can tell me
How do I find used/free space in a TEMPORARY tablespace?
asked
1 year
ago
by
daneim
(
127,080
points)
temporary
tablespace
oracale
1 Answer
1
like
0
dislike
Best answer
Unlike normal tablespaces, true temporary tablespace information is not listed in DBA_FREE_SPACE. Instead use the V$TEMP_SPACE_HEADER view:
SELECT tablespace_name, SUM (bytes used), SUM (bytes free)
FROM V$temp_space_header
GROUP BY tablespace_name;
answered
1 year
ago
by
marck_don
(
191,010
points)
Related questions
2
like
0
dislike
1
answer
How does one prevent tablespace fragmentation?
asked
1 year
ago
by
daneim
(
127,080
points)
tablespace
fragmentation
3
like
0
dislike
1
answer
What is a Tablespace?
asked
1 year
ago
by
daneim
(
127,080
points)
tablespace
database
8
like
0
dislike
1
answer
What are different modes of parameters used in functions and procedures?
asked
1 year
ago
by
DBA-boss
(
120,990
points)
functions
difference
oracale
2
like
0
dislike
1
answer
Explain the relationship among Database, Tablespace and Data file.?
asked
1 year
ago
by
daneim
(
127,080
points)
database
tablespace
data-file
administrator
transaction
3
like
0
dislike
1
answer
What is SYSTEM tablespace and when is it created?
asked
1 year
ago
by
daneim
(
127,080
points)
system
tablespace
created
database