In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
1. View all tablespace sizes
SQL > select tablespace_name,sum (bytes) / 1024 plus 1024 from dba_data_files group by tablespace_name
two。 The size of the table space that is already free
SQL > select tablespace_name,sum (bytes) / 1024 plus 1024 from dba_free_space group by tablespace_name
3. So using space can be calculated like this.
Select a. Tablespaceful name memorialtotalpenderfreemedtotallivefree used from
(select tablespace_name,sum (bytes) / 1024 Universe 1024 total from dba_data_files
Group by tablespace_name) a
(select tablespace_name,sum (bytes) / 1024 Universe 1024 free from dba_free_space
Group by tablespace_name) b
Where a.tablespace_name=b.tablespace_name
4.
Select tablespace_name,file_name from dba_data_files
5.
Meathod1: add data files to tablespaces
ALTER TABLESPACE USERS ADD DATAFILE'+ HISDATA/his/datafile/users01.DBF' SIZE 10240M
Meathod2: add data files and allow data files to grow automatically
ALTER TABLESPACE app_data ADD DATAFILE
'd:\ ORACLE\ PRODUCT\ 10.2.0\ ORADATA\ EDWTEST\ APP04.DBF' SIZE 50m
AUTOEXTEND ON NEXT 5M MAXSIZE 100M
Meathod3: allow existing data files to grow automatically
ALTER DATABASE DATAFILE'D:\ ORACLE\ PRODUCT\ 10.2.0\ ORADATA\ EDWTEST\ APP03.DBF'
AUTOEXTEND ON NEXT 5M MAXSIZE 100M
Meathod4: manually resize existing data files
ALTER DATABASE DATAFILE'D:\ ORACLE\ PRODUCT\ 10.2.0\ ORADATA\ EDWTEST\ APP02.DBF'
RESIZE 100M
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.