ORA-03114: not connected to ORACLE“ORA-03113: end-of-file on communication channel” on startupORA-03113...

我可不觉得 - agree or disagree?

How to play songs that contain one guitar when we have two or more guitarists?

How to achieve physical gender equality?

How bad is a Computer Science course that doesn't teach Design Patterns?

What does @ mean in a hostname in DNS configuration?

Why is Bernie Sanders maximum accepted donation on actblue $5600?

Badly designed reimbursement form. What does that say about the company?

Isn't a semicolon (';') needed after a function declaration in C++?

Will linear voltage regulator step up current?

80-bit collision resistence because of 80-bit x87 registers?

Is it ethical to apply for a job on someone's behalf?

How can changes in personality/values of a person who turned into a vampire be explained?

Are all power cords made equal?

Taking an academic pseudonym?

How do I add a strong "onion flavor" to the biryani (in restaurant style)?

What does an unprocessed RAW file look like?

Almost normal subgroups: Is there any notion which is weaker than normal subgroup?

Short story where Earth is given a racist governor who likes species of a certain color

Using font-relative distances in tikzpictures

Build ASCII Podiums

Is Screenshot Time-tracking Common?

Can "ee" appear in Latin?

How does the income of your target audience matter for logo design?

Is it common to refer to someone as "Prof. Dr. [LastName]"?



ORA-03114: not connected to ORACLE


“ORA-03113: end-of-file on communication channel” on startupORA-03113 when starting up an Oracle 11g databaseFailure to start instance resource on1 node of a 3 node of an Oracle 12c RACUnable to open database (Datafile corrupted)I got this error when am trying view dba_tables Ora 03113 end of file on communication channelIs Oracle 11g database supported in windows 10?Login into Oracle Database ErrorQuestion about “RMAN-06169:” and OracleOracle 9i import error IMP-00017: following statement failed with ORACLE error 3113Error ORA-03113: end-of-file on communication channel













0















I know what I did wrong! While migrating my database from one directory to another based on this amazing article
This, at the very last step (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF'to 'D:EASYDBTEMP.DBF';) I had a semicolon after the file extensions wrongfully (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;'to 'D:EASYDBTEMP.DBF;';) and it didn't like it at all.




ERROR at line 1: ORA-01511: error in renaming log/data files
ORA-01516: nonexistent log file, data file, or temporary file
"C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;" in the current container




and from there, it's




SQL> alter database open;



alter database open



`* ERROR at line 1:



ORA-03113: end-of-file on communication channel Process ID: 3896



Session ID: * Serial number: *



SQL> SELECT name FROM v$datafile;



ERROR: ORA-03114: not connected to



ORACLE




Shutdown is not possible, same goes to mount, alter, etc. Any idea what I should do the next? It's Oracle 12c, on Windows Server 2012 R2 (64).





Update



startup mount;


now I have another problem! when



alter database open;


it still gives me




ORA-03113: end-of-file on communication channel Process ID: 2712



Session ID: * Serial number: *




Thanks,










share|improve this question









New contributor




Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • what does the alert log say?

    – kevinsky
    1 hour ago











  • Thanks for your comment. Where should I find it? BTW a simple startup mount solved the problem...

    – Mohsen
    1 hour ago
















0















I know what I did wrong! While migrating my database from one directory to another based on this amazing article
This, at the very last step (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF'to 'D:EASYDBTEMP.DBF';) I had a semicolon after the file extensions wrongfully (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;'to 'D:EASYDBTEMP.DBF;';) and it didn't like it at all.




ERROR at line 1: ORA-01511: error in renaming log/data files
ORA-01516: nonexistent log file, data file, or temporary file
"C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;" in the current container




and from there, it's




SQL> alter database open;



alter database open



`* ERROR at line 1:



ORA-03113: end-of-file on communication channel Process ID: 3896



Session ID: * Serial number: *



SQL> SELECT name FROM v$datafile;



ERROR: ORA-03114: not connected to



ORACLE




Shutdown is not possible, same goes to mount, alter, etc. Any idea what I should do the next? It's Oracle 12c, on Windows Server 2012 R2 (64).





Update



startup mount;


now I have another problem! when



alter database open;


it still gives me




ORA-03113: end-of-file on communication channel Process ID: 2712



Session ID: * Serial number: *




Thanks,










share|improve this question









New contributor




Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • what does the alert log say?

    – kevinsky
    1 hour ago











  • Thanks for your comment. Where should I find it? BTW a simple startup mount solved the problem...

    – Mohsen
    1 hour ago














0












0








0








I know what I did wrong! While migrating my database from one directory to another based on this amazing article
This, at the very last step (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF'to 'D:EASYDBTEMP.DBF';) I had a semicolon after the file extensions wrongfully (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;'to 'D:EASYDBTEMP.DBF;';) and it didn't like it at all.




ERROR at line 1: ORA-01511: error in renaming log/data files
ORA-01516: nonexistent log file, data file, or temporary file
"C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;" in the current container




and from there, it's




SQL> alter database open;



alter database open



`* ERROR at line 1:



ORA-03113: end-of-file on communication channel Process ID: 3896



Session ID: * Serial number: *



SQL> SELECT name FROM v$datafile;



ERROR: ORA-03114: not connected to



ORACLE




Shutdown is not possible, same goes to mount, alter, etc. Any idea what I should do the next? It's Oracle 12c, on Windows Server 2012 R2 (64).





Update



startup mount;


now I have another problem! when



alter database open;


it still gives me




ORA-03113: end-of-file on communication channel Process ID: 2712



Session ID: * Serial number: *




Thanks,










share|improve this question









New contributor




Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I know what I did wrong! While migrating my database from one directory to another based on this amazing article
This, at the very last step (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF'to 'D:EASYDBTEMP.DBF';) I had a semicolon after the file extensions wrongfully (alter database rename file 'C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;'to 'D:EASYDBTEMP.DBF;';) and it didn't like it at all.




ERROR at line 1: ORA-01511: error in renaming log/data files
ORA-01516: nonexistent log file, data file, or temporary file
"C:ORACLEXEAPPORACLEORADATAEASYTEMP.DBF;" in the current container




and from there, it's




SQL> alter database open;



alter database open



`* ERROR at line 1:



ORA-03113: end-of-file on communication channel Process ID: 3896



Session ID: * Serial number: *



SQL> SELECT name FROM v$datafile;



ERROR: ORA-03114: not connected to



ORACLE




Shutdown is not possible, same goes to mount, alter, etc. Any idea what I should do the next? It's Oracle 12c, on Windows Server 2012 R2 (64).





Update



startup mount;


now I have another problem! when



alter database open;


it still gives me




ORA-03113: end-of-file on communication channel Process ID: 2712



Session ID: * Serial number: *




Thanks,







oracle oracle-12c migration






share|improve this question









New contributor




Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 1 hour ago







Mohsen













New contributor




Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 1 hour ago









MohsenMohsen

12




12




New contributor




Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Mohsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • what does the alert log say?

    – kevinsky
    1 hour ago











  • Thanks for your comment. Where should I find it? BTW a simple startup mount solved the problem...

    – Mohsen
    1 hour ago



















  • what does the alert log say?

    – kevinsky
    1 hour ago











  • Thanks for your comment. Where should I find it? BTW a simple startup mount solved the problem...

    – Mohsen
    1 hour ago

















what does the alert log say?

– kevinsky
1 hour ago





what does the alert log say?

– kevinsky
1 hour ago













Thanks for your comment. Where should I find it? BTW a simple startup mount solved the problem...

– Mohsen
1 hour ago





Thanks for your comment. Where should I find it? BTW a simple startup mount solved the problem...

– Mohsen
1 hour ago










0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Mohsen is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f230399%2fora-03114-not-connected-to-oracle%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








Mohsen is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















Mohsen is a new contributor. Be nice, and check out our Code of Conduct.













Mohsen is a new contributor. Be nice, and check out our Code of Conduct.












Mohsen is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Database Administrators Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f230399%2fora-03114-not-connected-to-oracle%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Szabolcs (Ungheria) Altri progetti | Menu di navigazione48°10′14.56″N 21°29′33.14″E /...

Discografia di Klaus Schulze Indice Album in studio | Album dal vivo | Singoli | Antologie | Colonne...

How to make inet_server_addr() return localhost in spite of ::1/128RETURN NEXT in Postgres FunctionConnect to...