Recent Posts
- How to change the Redo Log File size in Oracle Database
- Installing a 2 node Oracle 10g RAC Database
- Upgrade Oracle Applications 11i to R12
- Some Useful MOS(metalink) notes for DBAs & Apps DBAs
- Rolling Forward a Cold backup to restore the Production Database in Case of a Crash
- Enterprise Manager – Database Control not coming up
- Oracle Apps Cloning – Refreshing single instance Test database with RAC Production Data
- Oracle Database Hot Backup shell Script
- Creating APPS READ ONLY schema in Oracle Applications
- Checking the status of Workflow Mailer and other Workflow Components
Archives
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Jan | ||||||
| 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 | ||
Hello,
Kindly tell Tablespace Free Space script,I am very thankful to you
Thanks,
Umair
Dear Umair,
Do you have any questions about the script ?
Please let me know.
Hello Muneer,
Thanks for reply,Kindly tell me query to find out Tablespace free(MB,G) and used space along with it’s datafile.
Thanks,
Umair
SQL> select TABLESPACE_NAME,round(sum(BYTES/1024/1024),2) FREE_SPACE_MB, round(sum(BYTES/1024/1024/1024),2) FREE_SPACE_GB from dba_free_space group by TABLESPACE_NAME;
Dear Umair, the above query involves a group function, so you can not select the datafiles with tablespaces. For that, you can separately query the datafiles for various tablespaces from dba_data_files view.
Thanks.