convert databse to achieve log mode oracle

Solutions on MaxInterview for convert databse to achieve log mode oracle by the best coders in the world

showing results for - "convert databse to achieve log mode oracle"
Isabell
24 Jul 2020
1$ export ORACLE_SID=<MYDB>
Sebastián
28 Jan 2020
1SQL> archive log list;
2Database log mode 						Archive Mode
3Automatic archival 					Enabled
4Archive destination 					/oradump/<MYDB>
5Oldest online log sequence 		7
6Next log sequence to archive 	7
7Current log sequence 					9
Beatrice
28 Aug 2020
1$ sqlplus /nolog
2SQL> connect / as sysdba
Theo
12 Feb 2020
1SQL> Shutdown
2SQL> Startup mount
3SQL> Alter database archivelog;
4SQL> alter database open;
similar questions
queries leading to this page
convert databse to achieve log mode oracle