Created
October 6, 2016 17:17
-
-
Save dotmaik1/a2af965e60a3ea159f6f8682212fd804 to your computer and use it in GitHub Desktop.
datafiles information
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET LINESIZE 200 | |
| SET PAGES 500 | |
| COLUMN file_name FORMAT A70 | |
| SELECT file_id, | |
| file_name, | |
| ROUND(bytes/1024/1024) AS size_mb, | |
| ROUND(maxbytes/1024/1024) AS max_size_mb, | |
| autoextensible, | |
| increment_by, | |
| status | |
| FROM dba_data_files | |
| ORDER BY file_name; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment