Is there a way we can configure the oracle database to accept connections from particular type. For example, we may limit Server Oracle don't not to accept applications for connection to the JDBC thin driver?

I have an oracle server which is our recovery server disaster. When I switch my application of the primary site to secondary site, we have a window of downtime during which it must implement the secondary site. When setting up the application on the secondary site, I am getting below error please take note that primary and secondary are always synchronized. The application uses the thin driver JDBC to connect to the database.

java.sql.SQLException: ORA-01017: invalid username/password; logon denied


However when I use the same user name and password to connect to the SQLPLUS it connects successfully. When I use the sqldeveloper or any other jdbc connection, it fails with the above error.


Can someone please advice what may be the setting on the oracle server that limits connections jdbc or any setting related to jdbc on the oracle client


Concerning


Pierrel

Post edited by: user11093423

For others this has been resolved with

This is the setting in sqlnet.ora

SQLNET. ALLOWED_LOGON_VERSION = 12

later, commenting on the above setting and restart the listener. It worked.

Thanks for all the answers

Tags: Database

Similar Questions

  • Is there a way I can restore my backup profile that I took from a folder (for example Settings\Application Data\Mozilla\Firefox\Profiles\)

    Before re-installing Firefox 19, I took by mistake backup my profile in a folder - C:\Documents and Settings\garan14\Local Settings\Application Data\Mozilla\Firefox\Profiles and not from C:\Documents and Settings\garan14\Application Data\Mozilla\Firefox\Profiles.

    When installing, I chose option "Delete old profiles" and I don't see any old folder under C:\Documents and Settings\garan14\Application Data\Mozilla\Firefox\Profiles profile.

    However, I have a lot of important data stored under that profile that has now been deleted.

    Is there a way I can restore the old profile data? (PS: as stated above, I have a backup of the profile folder that is located under the Local Settings folder)

    I'm in a desperate need for aid. Pls reply as soon as possible.

    Firefox stores only cache files to the location of the local settings and not the files in the main folder of the Firefox profile.

    There is no need to save this place in local contexts in any case.

    The main folder of the Firefox profile is in "C:\Documents and Settings\ < user > change Data" on Windows XP.

    If you have deleted your personal data during the uninstallation of Firefox and do not have a backup then your only option is to use an undelete utility to see if you can recover this profile folder.

  • I bought an Apple Store Gift card by mistake instead of a gift card to iTunes. Is there a way I can swap the card?

    I bought a gift card from Apple Store by mistake - I was intending to buy an iTunes gift card. Is there a way I can exchange the Apple Store Gift card for iTunes card?

    You must ask to whom he sold.

  • The applications listed under Launchpad, is there a way I can delete the ones I don't use on my MAC Air?

    The applications listed under Launchpad, is there a way I can delete the ones I don't use on my MAC Air? I hope that I can free up space.

    Start the LaunchPad and hold the option key. The icons will start to shake and an X will appear in the upper corner of some but not all. Click the X to remove the application. Programs that have an X are only purchased/downloaded from the App Store. Integrated programs in Mac OS (like Safari) or programs you have downloaded/purchased elsewhere will not be a X. You should not delete (or move) programs such as Safari and Mail (built-in programs) because the update from Apple guess they were be on your computer in their installation location. Weird things happen if they are moved or deleted.

    Programs you don't purchase/download from the App Store can be deleted without the help of the dashboard, but you must be careful about this. Third party programs can be installed in different ways: some come in disk images and are trained in your application forms. These can be moved without danger in the trash. Some are installed using an installation program, and these require a little care to remove. In some cases, they set up items in addition to the program and require a special uninstall program, but this is not true in all cases. I always do the note of programs using a Setup program, so I can make sure I have properly uninstall.

  • age of empires 3 product lost key.is there a way I can get the key.i have the box and cert of authenticity and all code cd

    age of empires 3 product lost key.is there a way I can get the key.i have the box and cert of authenticity and all code cd

    Hi barryholt,

    You can see the following article for more information on the same.

    How to get a new product key for Microsoft Games for Windows, Streets & Trips, or MapPoint

  • Is there a way I can remove the mouse from the entire project all at once, rather than a framework at a time?

    I have a big event with the movement of the mouse on the many frameworks. My client may decide not to see the movement of the mouse. Is there a way I can remove the mouse from the entire project all at once, or what I should do a frame at a time?

    -Stuart

    Hello

    Click any slide in the Panel of the film. Press Ctrl + A to select all slides. Right click on one of the blades and the point with the mouse context menu, and then clear the check box next to "show the mouse."

    See you soon... Rick

  • Is there a way I can extend the tool icons in the Toolbox?

    Is there a way I can extend the tool icons in the Toolbox?

    Hi kayr,.

    Greetings.

    Not that I can think outside the descent down the resolution of your screen.

    Concerning

    Rohit

  • I have a VBA application that fills the data in an Acrobat form.  Do I have to distribute a complete Acrobat on each machine that uses this application (it will be disastrous) or is there a way I can use the software Acrobat reader only.  I am using the f

    I have a VBA application that fills the data in an Acrobat form.  Do I have to distribute a complete Acrobat on each machine that uses this application (it will be disastrous) or is there a way I can use the software Acrobat reader only.  I use the next AcroExch.App and AcroExch.PDDoc object to the form.  I hope there's a distribution object, I can use the full application and not because I don't want users to have access to forms and to keep the cost down.

    It is important to realize that the Acrobat SDK kit is a marketing tool for Acrobat. So, Yes, certainly you need a copy for each system. There is no redistributable components.

  • Is there a way I can find the AUTHID set of PL/SQL?

    If I am logged in as A user and I have a query a view that calls a function of authid DEFINER belonging to user B, and it called as a function of the user current authid owned by C that I am not some priivileges of the user whose second service runs under. I think it should be A but y at - it a routine system that I can call that tells me for certain that it is?
    Keith.

    Is there a way I can find the AUTHID set of PL/SQL?

    You can view the current_schema:

    SQL> create or replace procedure p1
       authid definer
    as
    begin
       dbms_output.put_line ('P1 :' || sys_context ('userenv', 'current_schema'));
    end p1;
    /
    Procedure created.
    
    SQL> create or replace procedure p2
       authid current_user
    as
    begin
       dbms_output.put_line ('P2 :' || sys_context ('userenv', 'current_schema'));
    end p2;
    /
    Procedure created.
    
    SQL> grant execute on p1 to scott
    /
    Grant complete.
    
    SQL> grant execute on p2 to scott
    /
    Grant complete.
    
    SQL> connect scott/tiger@oracle
    Connected as SCOTT@oracle
    
    SQL> exec michael.p1
    P1 :MICHAEL
    PL/SQL procedure successfully completed.
    
    SQL> exec michael.p2
    P2 :SCOTT
    PL/SQL procedure successfully completed.
    
  • When implementing my new iPhone, I logged into my old iCloud instead of choosing "set up as new iPhone" is there a way I can do this again? All my news from icloud is on my phone. All applications that I never downloaded and every pic ive taken. I don't w

    When implementing my new iPhone, I logged into my old iCloud instead of choosing "set up as new iPhone" is there a way I can do this again? All my news from iCloud is on my phone. All applications that I never downloaded all the photos I've ever taken since 2005 and I want to restart without remove ALL account iCloud himself. I always want to do a backup, I don't want it on my phone. I want to start fresh on my phone, but I tried to reset my phone under settings. I have just reset settings that did not 'you can't cancel it "because I don't want to lose all the photos I've ever taken." I always want to iCloud saving it just in case I need it someday, but I don't want any of this on my phone. I tried all means of security who do not say "you can't cancel" I still images and apps on my phone.

    Hello

    Turn off find my iPhone in settings then restore the iphone to factory settings.

    Now configure iphone as a new iPhone.

    See you soon

    Brian

  • TLSv1.2 with the JDBC Thin driver

    I set up a secure connection, and the handshake connects using TLSv1.

    Is it possible to have him negotiate TLSv1.2?

    I use 12.1.0.2 ojdbc7.jar

    The connection is made via a javax.sql.DataSource with org.apache.commons.dbcp.BasicDataSourceFactory reference

    The secure connection works, and he negotiates a connection TLSv1. However, I was prompted to use TLSv1.2. The client initiates a handshake with:

    '* ClientHello, TLSv1 '.

    Which means that the server will negotiate with TLSv1.

    How can I get the client starts the negotiation with a Hello TLSv1.2?

    I tried to set the following options:

    -Djdk.tls.client.protocols = TLSv1.2

    -Dhttps.protocols = TLSv1.2

    but neither had an effect.

    For all those who come across of this question, here is the answer:

    When you use the version 12.1.0.2 of ojdbc7 of the Java JDBC Thin client, there is a known bug (19030178) where the JDBC client acknowledges not TLS 1.1 and 1.2 ciphers.

    There is a patch available if you have an Oracle support account.

    When connecting to an Oracle 12 server that has the support of TLS 1.2, with the patch I get now:

    ClientHello, TLSv1.2

    ServerHello, TLSv1.2

    and with a server Oracle 11 don't supports TLS 1, I get:

    ClientHello, TLSv1.2

    ServerHello, TLSv1

    and the communication continues in TLSv1

    It now works as expected.

  • Is there a way I can change the way fonts are presented in the drop-down selection list?

    In the font selection menu, the font name takes place, and the example called "sample" is low.  I can't tell what it looks like until I have type.  Is there a way to change the way in which it is presented?

    What version of Photoshop are you? with the current versions of CC, you can type your text and mouse on the list of fonts and it will change your typed text.

  • I read the messages on the screen split prooblem I have. I read the posts and I do not have the separator module of fox. Is there another way I can eliminate the split screen?

    I have firefox installed on both computers. The office displays not the split screen, but the laptop don't. I checked the posts and I have not the separator module of fox but still get the split screen when I click on a second site.

    Firefox has no built-in opportunity to split the screen. There are several add-ons that can split the screen to solve this to know what originally, using the procedure in this link - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

    Another possibility is that you have a few set bookmarks to open in the sidebar. If this only happens for a few bookmarks, right-click on the bookmark, and then select Properties. Make sure that the "Load this bookmark in the sidebar" option is not selected.

  • Is there any way I can reverse the colors in this photo?

    How do I reverse the colors in this photo?

    World-Map.png

    Even more... How can I change the tone of the blue color after I reverse it?

    Thank you...

    1. choose the eyedropper and click on the Earth. It will become the foreground color.

    2 choose the magic wand, make sure that contiguous is disabled in the Options bar and select the Earth.   Cmd + J to put it on its own layer.

    3, select the lock in the layers panel to lock the transparent part of the layer of Earth.

    4, edit > Fill and fill it white

    5. Add a layer below the layer of Earth mass by holding the command key and clicking the new layer icon in the layers panel

    6 Edition > fill with the foreground color of (blue)

    You can lighten the blue using levels or choose and altogether different color

  • Is there a way I can configure MSTSC.exe to connect to an RDP but then require a password to return or to terminate the connection?

    I have implemented a set of instances of the virtual machine on the certification exams.  They have limited internet and program access.  To achieve these machines, we use MSTSC.exe or RDP another access type.  The problem is that people can only minimize MSTSC and go to their House Office to access the internet or anything else really.  It is a major security breach for cheating.  I need a way to connect to my secured through RDP still test environment restrict access to their own desktop!  The challenge that I know, but everyone has been able to configure MSTSC or any other RDP program to require a password or minimize the output?  Other solutions are of course welcome, thank you.

    Hello

    You try to view your feed in these links for assitance:

    http://social.technet.Microsoft.com/forums/en-us/w7itprovirt/threads

    http://social.technet.Microsoft.com/forums/en-us/category/w7itpro

    It will be useful.

Maybe you are looking for

  • Computer training available to Dallas Texas Mac

    I am looking for the it training for Apple Mac computers. I would like to learn from A to Z. I'm looking to learn the home and business. If possible, I prefer some college classes. Any suggestions?

  • Is it possible to change the email address associated with my sync account?

    I'm trying to migrate to a new email address and want to use this new using my sync account without having to create a new account.

  • Satellite X 200 - 25 H - 3 beeps on start up and wont start

    Hi guys, I'm looking for advice a little before coming into contact with Tosh, it might be something I can fix myself if all goes well. I have a slight problem with my laptop at the moment. I turned on this morning and received 3 beeps on startup (mo

  • Back messages deleted from the Inbox

    This question for a RAZR Maxx with JB Just had a brain-con excessive... and accidentally deleted ALL of your (POP) e-mail account messages... 824... instead of one. Couldn't hit the Cancel button and now, don't see how your choice from the trash in t

  • T400s: can't erase the SSD (64GB, Toshiba)

    I've upgraded to the latest version of the BIOS and I can't find that the secure erase so-called feature in there. There is a diagnosis of HARD drive, but that's not all. Research of googling and forum reveals only http://www-307.ibm.com/pc/support/s