Please execute the commands as "sys"; SQL> CREATE TEMPORARY TABLESPACE ALPER_TS_TEMP TEMPFILE 'C:\tablespaces\data_01.dbf' SIZE 8000M AUTOEXTEND OFF EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;
To alter the tablespace: SQL> ALTER TABLESPACE ALPER_TS_TEMP ADD TEMPFILE 'C:\tablespaces\data_temp_new_02.dbf' size 128m;
To drop the tablespace: SQL> DROP TABLESPACE ALPER_TS_TEMP INCLUDING CONTENTS AND DATAFILES; Used Oracle Version and OS: Oracle XE and Win7 Ref:http://onlineappsdba.com/index.php/2008/02/08/tablespace-and-datafiles-in-oracle-database-back-to-basics/
Press Windows button + R and press cmd then click "OK". Write down "below command" and press enter Full path approach echo exit | sqlplus hr/hr @C:\sql\example.sql Oracle path approach echo exit | sqlplus hr/hr @?/example.sql ? -> $ORACLE_HOME Example sql: select * from employees; Used Oracle Version and OS: Oracle XE and Win7
Only run this command in terminal; $ find . -type f -exec sed -i 's/'old'/'new'/g' {} \; You can also use escape character to use '/'. $ find . -type f -exec sed -i 's/'\\/old'/'\\/new'/g' {} \; (\\ -> escape characters)
Press Windows button + R and press cmd then click "OK". Write down "rman" and press enter Lastly run that command to connect environment. RMAN> connect target / connected to target database: XE (DBID=2732638794)
Please follow the instructions to use mstsc tool for Windows machines. Press Windows key -> Right-clicking on Computer and select Properties -> Click Remote settings -> Enable Remote connections options -> You can connect with mstsc now!
Please execute the commands as "sys"; SQL> SELECT * FROM v$instance; To see db startup time: SQL> SELECT to_char(startup_time,'DD-MON-YYYY HH24:MI:SS') "DB Startup Time" FROM v$instance;
On linux terminal; set ORACLE_SID=<YOURSID> emca -deconfig dbcontrol db -repos drop; then; emca -config dbcontrol db -repos create; or emca -config dbcontrol db -repos recreate;
RMAN> delete archivelog until time ‘SYSDATE-10’; i: it will delete them until 10 days ago Also it has a no prompt option; RMAN> delete noprompt archivelog until time ‘SYSDATE-10′;
Check in archive log open: SQL> SELECT LOG_MODE FROM SYS.V$DATABASE; or SQL> archive log list; Open achieve log mode: SQL> startup mount; SQL> alter database archivelog; SQL> alter database open;
Please login to database server with ssh as oracle user and run that commands. Go to /bin path su - grid12 cd agent/agent_inst/bin How to start/stop Enterprise Manager ./emctl start dbconsole; ./emctl stop dbconsole; for 12c grid EM /home/grid12/oms/bin/emctl start oms /home/grid12/oms/bin/emctl stop oms How to start/stop Oem Agent Be sure run root.sh as root user and run below commands as oracle user: ./emctl stop agent ./emctl start agent How to check Oem Agent ./emctl status agent How to restore Oem Agent Run as grid12 user: ./emctl clearstate agent; and then ./emctl upload agent;