So, if for example, you drop a table like in
1 | DROP TABLE RADIUS_DB.RADACCT3; |
BIN$7Cd8os82uGngQAB/AQANPQ==$0
To see objects in recycle bin:
1 | select * from dba_recyclebin order by droptime desc ; |
1 | purge table radius_db.radacct3; |
1 | DROP TABLE RADIUS_DB.RADACCT3; |
BIN$7Cd8os82uGngQAB/AQANPQ==$0
1 | select * from dba_recyclebin order by droptime desc ; |
1 | purge table radius_db.radacct3; |
1 2 3 4 5 6 | SELECT owner, sum (bytes)/1024/1024 "Size in MiB" FROM dba_segments WHERE owner not in ( 'GPRS_TEST_DB' , 'GPRS_TRIAL_DB' , 'MSG_DB' , 'PARAM_DB' , 'PERF_DB' , 'TASK_DB' , 'VAS_INDICATOR_DB' , 'VAS_LOG_DB' , 'VAS_MULTIMSI_DB' , 'VAS_PROPERTY_DB' , 'XDB' ) and owner like '%_DB' group by owner order by owner; |
1 2 3 4 5 | SELECT owner, segment_type, segment_name, sum (bytes)/1024/1024 "Size in MiB" FROM dba_segments WHERE segment_type like 'TABLE%' and segment_name not like 'BIN%' group by owner, segment_type, segment_name; |
1 2 3 4 5 6 | select owner, table_name, num_rows from dba_tables WHERE owner not in ( 'GPRS_TEST_DB' , 'GPRS_TRIAL_DB' , 'MSG_DB' , 'PARAM_DB' , 'PERF_DB' , 'TASK_DB' , 'VAS_INDICATOR_DB' , 'VAS_LOG_DB' , 'VAS_MULTIMSI_DB' , 'VAS_PROPERTY_DB' , 'XDB' ) and owner like '%_DB' and table_name = 'HT_CO_OFFER' order by owner; |
1 2 3 4 5 6 | SELECT owner, table_name, count (index_name) FROM all_indexes WHERE owner not in ( 'GPRS_TEST_DB' , 'GPRS_TRIAL_DB' , 'MSG_DB' , 'PARAM_DB' , 'PERF_DB' , 'TASK_DB' , 'VAS_INDICATOR_DB' , 'VAS_LOG_DB' , 'VAS_MULTIMSI_DB' , 'VAS_PROPERTY_DB' , 'XDB' ) and owner like '%_DB' group by owner, table_name order by owner; |
> iconv -f latin1 -t utf8 BD_anais.txt > BD_anais2.txt
https://drive.google.com/folderview?id=0B7uYPyj_NiVxYVltWjZ0VUVULTQ&usp=sharing
.
https://googledrive.com/host/0B7uYPyj_NiVxYVltWjZ0VUVULTQ
https://googledrive.com/host/0B7uYPyj_NiVxYVltWjZ0VUVULTQ/toto.css
chr(59)
if you want to have ';' instead of tabs in the output.
1 2 3 | set errorlogging on identifier toto delete from sperrorlog where identifier = 'toto' / |
1 2 3 4 | col nb_errors new_value nb_errors select count (*) as nb_errors from sperrorlog where identifier = 'toto' / exit nb_errors |
DROP TRIGGER RADIUS_DB.RADACCT_RADACCTID;
select object_id from dba_objects where object_name='RADACCT_RADACCTID';
insert into sys.objerror$ values(126915);
commit;
DROP TRIGGER RADIUS_DB.RADACCT_RADACCTID;
CREATE TABLESPACE statspack_db_data DATAFILE
'/home/oracle/oracle/oradata/CRMMBQT/statspack_db_data_01.dbf' SIZE 500M AUTOEXTEND ON NEXT 10M MAXSIZE 2048M
EXTENT MANAGEMENT LOCAL uniform size 1M
SEGMENT SPACE MANAGEMENT AUTO;
2) Run the ORACLE_HOME/rdbms/admin/spcreate.sql script to create the PERFSTAT schema.
cd /home/oracle/oracle/product/11.2.0/dbhome_1/rdbms/admin
> sqlplus / as sysdba
SQL> @spcreate
A list of available table spaces will be presented. Type in the name of the table space created earlier and hit the enter key.exec statspack.snap(i_snap_level => 7);
4) Run a report:cd /home/oracle/oracle/product/11.2.0/dbhome_1/rdbms/admin
> sqlplus / as sysdba
SQL> @spreport
1 2 3 4 5 6 7 8 9 | -- Count number of partitions: 905 select count(*) from dba_tab_partitions where table_name = 'AT_PROCESS_LOG' ; -- List of partitions to drop: keep 30 latest partitions select * from ( select partition_name, interval, high_value, partition_position from dba_tab_partitions where table_name = 'AT_PROCESS_LOG' order by partition_position desc ) where 1 < partition_position and partition_position < 905 - (30-1); |
1 2 3 4 5 | -- Drop partition w/ high_value = 16-03-2012 alter table monitor_db.at_process_log drop partition for (to_date( '15-03-2012' , 'DD-MM-YYYY' )); -- Drop partition from name alter table monitor_db.at_process_log drop partition SYS_P61; |
find . -mtime +90 -delete