Home » RDBMS Server » Server Administration » Query to get the maxsize and unlimited of the TableSpace (Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production)
Query to get the maxsize and unlimited of the TableSpace [message #677278] Mon, 09 September 2019 12:57 Go to previous message
wtolentino
Messages: 398
Registered: March 2005
Senior Member
CREATE TABLESPACE hr_tablespace
DATAFILE '+DATA001/App/DATAFILE/datafile.001.0000001' SIZE 60M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED

using a query to get info from the dba views or data dictionary views. which views/tables and columns should i use to get the info based on the DDL above? so far what i have is this
select tablespace_name, 
       FILE_NAME, 
       BYTES/(1024*1024) filesize, 
       MAXBYTES/(1024*1024) maxbytes, 
       increment_by/(1024*1024) increment_by, 
       AUTOEXTENSIBLE 
  from DBA_DATA_FILES
 where tablespace_name;

/foru/forum/fa/14162/0/

but it still missing info on how i can get the MAXSIZE and unlimited. please advise. thanks.


[Updated on: Mon, 09 September 2019 12:58]

Report message to a moderator

 
Read Message
Read Message
Read Message
Read Message
Previous Topic: ORA-00205: Standby database
Next Topic: ORA-00851: SGA_MAX_SIZE 1073741824 cannot be set to more than MEMORY_TARGET 738197504
Goto Forum:
  


Current Time: Fri Apr 26 12:50:17 CDT 2024