SQL> @E:\yoonus.sql
ORACLE instance started.
Total System Global Area 1358954496 bytes
Fixed Size 2077456 bytes
Variable Size 687869168 bytes
Database Buffers 654311424 bytes
Redo Buffers 14696448 bytes
CREATE CONTROLFILE REUSE DATABASE "GEP" NORESETLOGS ARCHIVELOG
*
ERROR at line 1:
ORA-01503: CREATE CONTROLFILE failed
ORA-01159: file is not from same database as previous files - wrong database id
ORA-01517: log member: 'E:\ORACLE\GEP\ORIGLOGA\LOG_G11M1.DBF'
SOLUTION:
Change the control file value from :( if you are using newly installed system's log file change as follows)
CREATE CONTROLFILE REUSE DATABASE "GEP" NORESETLOGS ARCHIVELOG to
CREATE CONTROLFILE REUSE SET DATABASE "GEP" RESETLOGS ARCHIVELOG
SQL> @E:\yoonus.sql
ORACLE instance started.
Total System Global Area 1358954496 bytes
Fixed Size 2077456 bytes
Variable Size 687869168 bytes
Database Buffers 654311424 bytes
Redo Buffers 14696448 bytes
Control file created.
SQL>
Thanks
Yoonus
ORACLE instance started.
Total System Global Area 1358954496 bytes
Fixed Size 2077456 bytes
Variable Size 687869168 bytes
Database Buffers 654311424 bytes
Redo Buffers 14696448 bytes
CREATE CONTROLFILE REUSE DATABASE "GEP" NORESETLOGS ARCHIVELOG
*
ERROR at line 1:
ORA-01503: CREATE CONTROLFILE failed
ORA-01159: file is not from same database as previous files - wrong database id
ORA-01517: log member: 'E:\ORACLE\GEP\ORIGLOGA\LOG_G11M1.DBF'
SOLUTION:
Change the control file value from :( if you are using newly installed system's log file change as follows)
CREATE CONTROLFILE REUSE DATABASE "GEP" NORESETLOGS ARCHIVELOG to
CREATE CONTROLFILE REUSE SET DATABASE "GEP" RESETLOGS ARCHIVELOG
SQL> @E:\yoonus.sql
ORACLE instance started.
Total System Global Area 1358954496 bytes
Fixed Size 2077456 bytes
Variable Size 687869168 bytes
Database Buffers 654311424 bytes
Redo Buffers 14696448 bytes
Control file created.
SQL>
Thanks
Yoonus