Connection to Oracle DB after successful migration using WorkBench

After migrating my DB and Appli from Access to Oracle using the migration wizard of WorkBench, I can't connect to my remote tables.
Where can I set the user/password of the remote Oracle DB ?
Thanks in advance.

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Samuel BONNANFANT ([email protected]):
Is it really necessary to create an ODBC Data Source with the name of the Access DB ? Why ?
And where can we store the username/password ? In tnsnames.ora file ?
Thanks.
In answer to:
Make sure you have read and understand the ODBC requirements. It is easy to forget to make an ODBC data source of the same name as the access DB, that will use the Oracle sql*net drivers ( and incidentally where the Oracle username & password can be stored).
<HR></BLOCKQUOTE>
No. It is not necessary to make an ODBC data source of the same name as the access DB. This was a feature in an earlier release. However, configure your Oracle ODBC source so that it will point to the Oracle database to which you have migrated to. Make sure that the Service name is correct. When clicking on a remote odbc linked table in the Access database the Oracle ODBC driver will ask for a name and password. The name will be the
name of your mdb file and the password will be 'oracle'. In any other problems persist refer to the MSAccess online help in the workbench.
null

Similar Messages

  • How connect to oracle RAC via the RSG using port forwarding

    Hi all,
    I got a problem trying to connect to oracle RAC via the RSG using port forwarding .
    on command line i sue to connect :
    sqlplus 'username/password@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=firstRACnode)(PORT=1521))(ADDRESS=(PROTOCOL=tcp)(HOST=secondRACnode)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=MSDP)))'
    but when using port forwarding i forward the port 1521 to a local port and make ssh to the DB node ( as normal with other nodes but not RAC) but it never work with me for this situation
    can any one give me a help ifthere is any changes should be done on the server side , or if any one faced such a problem and found a solution
    Thanks,
    Prathap.

    782011 wrote:
    I got a problem trying to connect to oracle RAC via the RSG using port forwarding .
    on command line i sue to connect :
    sqlplus 'username/password@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=firstRACnode)(PORT=1521))(ADDRESS=(PROTOCOL=tcp)(HOST=secondRACnode)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=MSDP)))'Not exactly sure what you are attempting, but if you doing port forwarding via ssh, the basic approach is as follows:
    Step 1
    Create a ssh tunnel from local machine to remote db server. Forward any local port (should not be a well known port or a port in the private/dynamic port range) to connect to the database server's listener port. If the ssh tunnel is into the db server itself, the connection (port forwarding) can be on localhost (as the Listener should be listening on it). Alternatively use a public IP of that db server.
    Example (using OpenSSH on Ubuntu 9.4):
    Local server port 1527 tunneled to port 1521 on database server 192.168.0.100 using o/s account johnd (we connect to port 1521 on db server via 127.0.0.1):
    ssh -X -f -N -o ServerAliveInterval=3 -L 1527:127.0.0.1:1521 [email protected]
    Step 2
    Run sqlplus and connect to the local fowarded port on localhost, using the applicable connection settings (e.g SID/Service Name, etc).
    sqlplus scott/tiger@"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1527)) (CONNECT_DATA=(SID=orcl) (SERVER=dedicated)))"Note that the Listener must not hand our connection off - as the case would be when using RAC for example and connecting via a Service Name and not a SID. We need the Listener that accepts our connection to immediately hand us over to the database instance (via either a dedicated server or a shared server dispatcher process).

  • VB6 source code cannot connect to Oracle database after compile to file.exe

    Hi All,
    I have a problem about VB6 connect with Oracle database. It can connect as normal when run on VB program. After compiled to file.exe and execute, it cannot connect to Oracle database. What's going on ? Please advise? Thank you.
    Here is sample of my code connection.
    Option Explicit
    Private wsData As New ADODB.Connection
    wsData.ConnectionString = _
    "Provider=MSDAORA.1;User ID=lsp;Password=lsp2007;Data Source=prd01;Persist Security Info=False"
    wsData.Open
    End sub
    Rgads,
    Ats.

    Hi,
    I believe you're in the wrong forum, this forum is for Oracle Application Express.

  • Connecting to Oracle 8.0.3 server using Oracle 10.1.0 client

    I was wondering if it was possible to connect to a oracle 8.0 or oracle 8.1 server using oracle 10.1 client.
    I have tried connecting to oracle 8.0.3 and it gives me an error saying "connections to this server are no longer supported."

    If updating your Oracle Database isn't an option, then you can have 2 different clients installed (in different "Oracle Homes" (or directories), and use the selecthome.bat file to switch between your installed clients.
    For example, before connecting to 8i, you'd run:
    C:\Oracle\Client1_8i\bin\selecthome.bat
    or this to use your Oracle 10g client:
    C:\Oracle\Client2_10g\bin\selecthome.bat

  • Error to connect to oracle 10.2.0.4 using oci driver in solaris

    Urgent Please help me.
    This is the error i am getting when connecting to oracle10.2.0.4 version using oracle oci driver.
    09/10/05 13:52:47 java.lang.UnsatisfiedLinkError: t2cGetCharSet
    09/10/05 13:52:47 at oracle.jdbc.driver.T2CConnection.t2cGetCharSet(Native Method)
    09/10/05 13:52:47 at oracle.jdbc.driver.T2CConnection.getCharSetIds(T2CConnection.java:2954)
    09/10/05 13:52:47 at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:318)
    09/10/05 13:52:47 at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:433)
    09/10/05 13:52:47 at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:141)
    09/10/05 13:52:47 at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:78)
    09/10/05 13:52:47 at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:571)
    09/10/05 13:52:47 at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:217)
    09/10/05 13:52:47 at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:108)
    09/10/05 13:52:47 at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:76)
    09/10/05 13:52:47 at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:58)
    09/10/05 13:52:47 at com.evermind.sql.OrionPooledDataSource.getPooledConnection(OrionPooledDataSource.java:542)
    09/10/05 13:52:47 at com.evermind.sql.PooledConnectionUsage.getPooledConnection(PooledConnectionUsage.java:39)
    09/10/05 13:52:47 at com.evermind.sql.OrionPooledDataSource.checkAndGetMinConnections(OrionPooledDataSource.java:376)
    09/10/05 13:52:47 at com.evermind.sql.OrionPooledDataSource.getTheConnection(OrionPooledDataSource.java:251)
    09/10/05 13:52:47 at com.evermind.sql.OrionPooledDataSource.getTheConnection(OrionPooledDataSource.java:345)
    09/10/05 13:52:47 at com.evermind.sql.OrionPooledDataSource.getConnection(OrionPooledDataSource.java:339)
    09/10/05 13:52:47 at uk.gov.fsa.elms.persistence.base.BaseDataAccess.getValidConnection(BaseDataAccess.java:67)
    09/10/05 13:52:47 at uk.gov.fsa.elms.persistence.base.BaseDataAccess.getConnection(BaseDataAccess.java:125)
    09/10/05 13:52:47 at uk.gov.fsa.elms.persistence.base.dao.BaseDAOImpl.getConnection(BaseDAOImpl.java:76)
    09/10/05 13:52:47 at uk.gov.fsa.elms.processes.batch.ProcessHandler.getProcessId(ProcessHandler.java:48)
    09/10/05 13:52:47 at uk.gov.fsa.elms.processes.batch.ProcessHandler.startProcess(ProcessHandler.java:87)
    09/10/05 13:52:47 at uk.gov.fsa.elms.processes.batch.ProcessManager.startProcess(ProcessManager.java:43)
    09/10/05 13:52:47 at uk.gov.fsa.elms.processes.batch.EventDispatcherServlet$JMSRunner.handleMessage(EventDispatcherServlet.java:306)
    09/10/05 13:52:47 at uk.gov.fsa.elms.processes.batch.EventDispatcherServlet$JMSRunner.run(EventDispatcherServlet.java:355)
    09/10/05 13:52:47 at java.lang.Thread.run(Thread.java:534)

    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    #SQLNET.AUTHENTICATION_SERVICES = (NTS)I have configured the listener by using NETCA.
    However the TNS connection failed with SQLNET.AUTHENTICATION_SERVICES = (NTS)
    , so I had to disable this parameter

  • How to connect database(oracle 10g) and retreive values using poral 10

    can anyone help me how to connect to database and retreive values in detail and also please post the sample code if u have any.

    Hello
    Thanks for your reply
    I tried to connect and here is the result: see below
    [oracle@ebstailin 11.1.0]$ sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Sat Jul 17 15:35:31 2010
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> CONNECT apps/apps
    Connected.
    SQL>
    But still cannot connect using ORACLE SQL Developer
    thanks

  • Connecting to Oracle 7.3.3.4 using JDBC

    Hi all,
    I found the below info in the Oracle JDBC FAQ. My questions are:
    1. Is there any chance for me to connect to my 7.3.3.4 database server using any JDBC drivers? If yes, what version of drivers to use?
    2. Is it true that to connect to an Oracle database, I can ONLY use JDBC drivers from Oracle and no where else?
    Thanks!
    Rgds,
    Alvin
    JDBC 7.3.4 drivers can talk to RDBMS 7.3.4.
    JDBC 8.0.4 drivers can talk to RDBMS 8.0.4 and 7.3.4.
    JDBC 8.0.5 drivers can talk to RDBMS 8.0.5, 8.0.4 and 7.3.4.
    JDBC 8.0.6 drivers can talk to RDBMS 8.0.6, 8.0.5, 8.0.4 and 7.3.4.
    JDBC 8.1.5 drivers can talk to RDBMS 8.1.5, 8.0.6, 8.0.5, 8.0.4 and 7.3.4.
    JDBC 8.1.6sdk drivers can talk to RDBMS 8.1.6sdk, 8.1.5, 8.0.6, 8.0.5, 8.0.4 and 7.3.4.
    JDBC 8.1.6 drivers can talk to RDBMS 8.1.6, 8.1.6sdk, 8.1.5, 8.0.6, 8.0.5, 8.0.4 and 7.3.4.

    I used the following code to call a stored
    procedure via SQLJ:
    try {
    #sql [iCtx] {
    CALL ibs.cvs_validate.validate_port_id(:IN record_id ,:IN poe_pod_flag,:IN port_id,:OUT error_code,:OUT error_message) };
    where
    "ibs" is the schema
    "cvs_validate" is the package
    "validate_port_id" is the procedure
    The code runs fine, but to get it to compile
    in JDeveloper 2.0, I had to disable the "Check SQL semantics against database schema" option on the Project Properties (SQLJ) property sheet.
    null

  • Re-connection to ORACLE db after the ORACLE server was down

    Hi all,
    I have a problem i've been trying 2 solve for several weeks now.
    I'm running a Java Class which connects to an ORACLE database located
    on the server 'server'.
    Everything is working fine.
    the problem is that if when the class is first run and the server is
    down (not started), I get an SQLException:
    "Exception d'E/S: The network adapter could not establish the
    connection", so the class retries after a certain period,
    say 5 minutes (the server is up and running at that time),
    i still get the same exception whereas it should now connect correctly.
    here's the code:
    public void run()
        bool retry = false;
        try
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
              Cnn = DriverManager.getConnection("jdbc:oracle:thin:@server:1521:orcl", "username", "password");
        catch(SQLException e)
             if (e.getLocalizedMessage().compareTo("Exception d'E/S: The Network Adapter could not establish the connection") == 0)
         {     retry = true;     }
         else
         {     retry = false;     }
        finally
         try
            if (retry)
              Thread.sleep(300000);
                   System.out.println("Trying connection again...");
                   run();
            else
              //End
              return;
         catch(java.lang.InterruptedException e)
            return;
    }any help or suggestion would be appreciated,
    thanx,
    greg

    Greg,
    why not try separating the connection part into a separate method, and add a few more System.out.println()s so you can see where you are going:
    public void run()
       System.out.println("started run()");
       // Only need to do this once...
       DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
       // Keep trying until we're connected...
       while (!connect())
          Thread.sleep(300000);
          System.out.println("Trying connection again...");
       System.out.println("finished run()");
    * Connects to oracle.
    * @return Has connection been made?
    private boolean connect()
       System.out.println("started connect()");
       try
          cnn = DriverManager.getConnection("jdbc:oracle:thin:@server:1521:orcl", "username", "password");
       catch(SQLException e)
          System.err.println(e.getLocalisedMessage());
       System.out.println("finished connect()");
       return (cnn != null);
    }I'm assuming here that "cnn" (I changed the capitalisation..) is a class attribute, since it was not defined within run() in the original code.
    You could probably change the last line of connect() to: return (cnn instanceof oracle.jdbc.driver.OracleDriver);This doesn't change the flow of the program (except only registering the oracle driver once) but it should help you debug.
    Ben New
    [email protected]
    Leftclick Software Development
    http://www.leftclick.com.au/

  • Can't Connect Properly to Router After Successful Airport Express Setup

    Hello - this is my first time posting here, but I had a weird issue I was hopeful someone could assist with.
    Basically, I was having a lot of trouble setting up my Airport Express to join my existing network to steam audio to a set of speakers. After trying a number of permutations and searching on the internet, I found out that when selecting to join my home network I needed to select WEP-40 rather than WEP-128. Once I did this, it worked!
    Unfortunately, the only issue now is that my PC laptop (I'm using a Mac desktop)...has trouble connecting to this same router for my home network. I am able to get it to connect, but only when I change the "Network Authentication" in the Settings to "Open" from "Shared" (which it seems to have been at previously when I could connect before Airport setup. When I do this though, the Wireless Network Connection area says that it's "Not Connected", but it is connected. Now, this laptop can connect to all other networks no problem, as well as other devices can connect to my network fine. I would be able to deal with this minor annoyance, but it does seem that the network will drop from time to time now, where it didn't before.
    Very appreciated if you made this far and followed along - I'd really like some help with this issue. I am very, very confident it is directly correlated to the set up with the Airport Express, as this became an issue immediately following getting it connected.
    Thanks!!
    David

    Welcome to the discussion area, dgbruce!
    Your post did not indicate whether you had performed a full power cycle on your network. You should always do this whenever you make any changes on your network. If you have not already done this, follow this procedure:
    Power everything...all devices...down, order is not important.
    Wait a moment, then start the modem and let it run a moment or two by itself.
    Then, start the next device connected to the modem the same way.
    Keep starting devices until you have everything powered back up.
    What are your results?
    If no help, can you tell us if you made any changes to your main router? If no, power down the AirPort Express only. You are now back to your original condition. Can the PC connect now?
    If no, then the connection issue is between your wireless router and the PC (because the AirPort Express is not even on the network)
    If yes, and the PC connects correctly now, power the Express back up and watch for any changes. What are the results?
    Message was edited by: Bob Timmons

  • Not able to connect with remote speakers after successfully set up

    I just finished setting up successfully (joining existing wireless network) but when I go to Itunes and select my remote speakers it just goes connecting to airport and then stops. Any ideas why?

    You might want to try upgrading to the latest version of JavaMail (1.4.3), which makes use
    of SSL somewhat simpler. Also, the file SSLNOTES.txt included with JavaMail has some
    tips for debugging problems such as this, as does the JavaMail FAQ.
    Most often this error is caused by not having the appropriate certificates in your local trust
    store. The JDK normally comes with the required root certificates, but if you're running in
    an application server environment you might be using a different trust store.

  • Effictive Permissions not showing up for security groups after interforest migrations using ADMT

    Hi there,
    I"m trying to fix an issue with the effective permission, below is the description
    Two separate forests exist with respective domains DomainA and DomainB.
    A two-way trust has been established between these two domains.
    I migrate a user (using ADMT) from DomainA to DomainB.
    After migration the user account in DomainB has access to the same shares and folders on file servers in DomainA as it did with the user's account in DomainA.
    when i checked the effective permission of the migrated security group it does not show up any tick mark on the permissions. but still end users are able to access the resource on file server
    Thanks in advance for any advice you may have to offer.
    -Vijay

    Hi,
    After the user migration, did you finish the Security Translation?
    http://social.technet.microsoft.com/wiki/contents/articles/16621.interforest-migration-with-admt-3-2-part-3.aspx#Group_Account_Migration
    Regards.
    Vivian Wang

  • Generic Connectivity from Oracle 10gR2 to SQL Server using ODBC

    Hi,
    I have setup an ODBC generic connection from an Oracle 10.2 database (on Win 2000) to a SQL Server database (on a different Windows machine). When I query a column which is of LONG data type (TEXT on SQL Server) my session just hangs, no data or errors are returned, trace file just ends showing the SQL statement I entered, but no errors.
    If I query other columns with CHAR, DATE, NUMBER datatypes the rows are returned successfully. As far as I can see from the documentation, the TEXT data type in SQL Server should map to SQL_LONGVARCHAR in ODBC, then that should map to LONG in Oracle, so I wouldnt have thought it was an incompatible data mapping issue.
    I hear that LONG is being replaced/deprecated in Oracle, but is it now not supported by the HS ODBC program provided with 10g Rel 2? Has anyone else had a similar problem and found a workaround? Any help is much appreciated.
    Kieren.

    Hi,
    HSODBC is not supported on Windows x64. So that's why you get the error ORA-28545
    What you can do is to install DG4ODBC 11g on a 32bit machine.
    DG4ODBC can be installed separately from the Oracle Server, for example on the SQL SERVER if you can.
    But it is supported only in 32 bit too.
    You can download from this website:
    http://www.oracle.com/technology/software/products/database/oracle11g/111060_win32soft.html
    ==>Oracle Database Gateways 11g Release 1 (11.1.0.6.0) for Microsoft Windows (32-bit)
    The last option would be to create a virtual machine on your X64 machine with a Windows 32bit and DG4ODBC 11g.
    Please let me know if you have any question.
    Regards,
    Mireille

  • HT4889 Cannot find iTunes after successful migration

    Hi
    Please help.....
    I have recently migrated all data ( including iTunes) to my new MBP from my old PC,
    but seem to find all data excluding my iTunes library.
    How and where do i find my music and how do I sync it with iTunes?
    I really do not want to loose my 100GB of music.
    Anyone with advice???
    Thanking you in advance

    I have the same problem, my iPad and Mac are conected, but my iphone 4s, doesnt have the option. I also have itunes match.

  • Losing connection to Xserve G5 after successfully setting it up.

    I set up our new Xserve G5 remotely via Server Assistant. I checked it in Server Admin and all was great. Then I went into Gateway Setup Assistant and ran through the process of setting it up as the gateway for the network to the internet. Now I can't find the Xserve.
    I tried running Server Assistant again and it can't find it.
    Server Admin says:
    There is no server available at the address you entered
    Does anyone have any ideas?

    Jason-
    Make sure it didn't get accidentally locked.
    What is between you and the server? It is possible that something is amiss with a switch or router.
    I am assuming that you set it up to have a fixed ip address. If you didn't, then that would make it tough to find (:>)
    CAn you or someone else get to the physical location and do a power off/power on cycle? When all else fails it can't hurt.
    Luck-
    -DaddyPaycheck

  • Cant connect to Oracle database using oracle db client

    Hi All,
    I recently created a virtual machine running windows server 2008 on my windows 7 host. Oracle database 11g is already installed on host OS(windows 7) and I have installed oracle 11g client on the guest OS(windows server 2008) and trying to connect to oracle database from remote server using oracle client but getting this error:
    ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATAI am trying to connect using oracle client as below:
    C:\Users\Administrator>SET ORACLE_SID = HR84DEV
    C:\Users\Administrator>SQLPLUS /NOLOG
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Feb 10 06:16:34 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    SQL> CONNECT SYSADM/[email protected]
    ERROR:
    ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATA
    I have created database with name - HR84DEV
    HOST ip address is - 192.168.56.1
    I googled this error and as most of resources/blogs talked about having correct entry on listner.ora and tnsnames.ora file, I did the changes on both of these files accordingly.
    PFB the cotent of both of these files:
    tnsnames.ora
    # tnsnames.ora Network Configuration File: C:\MyApps\Oracle\product\11.2.0\dbhome_\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    LISTENER_ORCL =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.1)(PORT = 1521))
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    HR84DEV =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = HR84DEV)
    ORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    listner.ora
    # listener.ora Network Configuration File: C:\MyApps\Oracle\product\11.2.0\dbhome_\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\MyApps\Oracle\product\11.2.0\dbhome_)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\MyApps\Oracle\product\11.2.0\dbhome_\bin\oraclr11.dll")
    (SID_DESC =
    (SID_NAME = HR84DEV)
    (ORACLE_HOME = C:\MyApps\Oracle\product\11.2.0\dbhome_)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\MyApps\Oracle\product\11.2.0\dbhome_\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.1)(PORT = 1521))
    ADR_BASE_LISTENER = C:\MyApps\Oracle
    Please not that I dont have any problem in connect to database locally.

    Thanks Nicolas,
    Actually, there was a problem with my oracle client installation. I uninstalled it and then installed back again but still, even after following your instructions I get some error.
    Here what I did:
    Created tnsnames.ora file as below:
    HR84DEV =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = HR84DEV)
    Placed it under appropriate directory and then checked the connection with database using the command shown below:
    C:\Users\Administrator>tnsping HR84DEV
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.1.0 - Production on 10-FEB-2
    012 08:42:03
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Used parameter files:
    C:\MyApps\Administrator\product\11.2.0\client_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
    (HOST = 192.168.56.1)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = HR84DEV)))
    OK (20 msec)
    Then tried to connect to database as below:
    C:\Users\Administrator>SET ORACLE_SID=HR84DEV
    C:\Users\Administrator>SQLPLUS /NOLOG
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Feb 10 08:25:56 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    SQL> CONNECT SYSADM/SYSADM@HR84DEV
    ERROR:
    ORA-28547: connection to server failed, probable Oracle Net admin error
    But still getting error.
    I Googled this error and tried to figure out what the problem is and came across the possible cause which is because I haven't specify that the service should run as a user who is in domain admin group.
    well, I am not really sure about this and dont know what user name and password I should enter in OracleserviceHR84DEV-properties-log on-this account.
    do I really need to set this?

Maybe you are looking for

  • How many PCs can I use with one Creative Cloud subscription?

    How many PCs can I use with one Creative Cloud subscription? For example I currently use Lightroom on a home PC with 2 large screens, but use a laptop or iPad when travelling. Does one monthly subscription cover all 3 or do I need 3 separate subscrip

  • AR13 report not giving correct depreciation forcast

    Hi SAP Gurus, I am having problem with an asset. The asset remaining useful life calculation as shown in the parameter tab of asset explorer is not matching with the AR13 report forecast. In AR13 it is getting fully depreciated long before the remain

  • Re: System segmentattion access violation

    There is a special utility you must run which will clean the environment repository. It is located under the following directory: %{FORTE_ROOT}/install/diag/bin/ It is called envedit The command works like this: %FORTE_ROOT%/install/diag/bin/envedit

  • Flash Player won't work on internet explorer app, ok on desktop

    I have a Samsung ATIV 500T Windows tablet. A few days ago, the flash player stopped working on the app. It works just fine on the normal desktop. I can't find any way to fix it.  Help please!

  • HT1338 how do i up date to 10.8

    i need to update my mac from 10.6.8 to 10.8 how do i do thius