How to access Oracle database over network?

前端 未结 3 879
猫巷女王i
猫巷女王i 2020-12-18 09:54

I am trying to accessing my Oracle database over Network. I have Google a lot and found many solutions, but those doesn\'t work for me.

The problem is

3条回答
  •  醉话见心
    2020-12-18 10:52

    Whenever you are sufering with this kind of errors while creating remote access for you database, do following things before.

    1. Create a Listener using Net Manager tool of Oracle or create it Manually.
    2. After generating Listener, check out "listener.ora" [Located : ORACLE_INSTALLED_DIR\product\11.2.0\dbhome_1\NETWORK\ADMIN] file, for your entry. (is there any Entry for the Listener which you have created just before. If you found your Entry than and than do next steps otherwise do it from FIRST step.)
    3. If you found the Entry for your Listener, Open Command Prompt and fire command lsnrctl status. This will give you all currently running Listeners List, find out the one which you created just before.
    4. Check out the Host Name and Port Number for your Listener.
    5. Generate the Connection String as per the details you found in lsnrctl status
    6. Connect with Database, and You can access the Database from anywhere in your Network.

    Enjoy the Things, Some challenges needs Afforts, Once you fall back from it, it will be never solved.

    I am really thankful to those all Guys who answered and Commented to this Question, this all Material made my Challenge easy..

    Thank You @Alex, @ Lalit, @TenG and @S.Krishna Thank You so Much Guys.

提交回复
热议问题