Login as SYSDBA or SYSOPER

Can OO4O connect with SYS as SYSDBA or SYSOPER. we have certain scripts that run with 'sys' username only. This needs to be executed when an adminsitrator clicks a button on our website. I tried the following:
Set OraDatabase=OraSession.OpenDatabase("oadv", "sys/syspassword as SYSDBA", 0)
But it says "Invalid user name"
Any help would be appreciated.

Connect to the dataabse as SYSTEM and prefix database table query with the SYS schema.
SYS.<table>

Similar Messages

  • Issue encountered when Login as sysdba role using Thin Oracle JDBC Driver

    Hello all,
    we are now considering to use Thin oracle JDBC driver to create database in our project, but we met one issue when we tried to connect to oracle as sysdba role using Thin driver, and it throws java.sql.SQLException: Io Exception: SO Exception was generated, I have found some tips on oracle jdbc website and it says :
    How do I connect as SYSDBA or SYSOPER?
    The only way to do this is to use the Properties object when connecting, rather than specifying the username and password as strings. Put the username into the "user" property, and the password into the "password" property. Then, put the mode into the "internal_logon" property. Something like the following:
    Properties props = new Properties();
    props.put("user", "scott");
    props.put("password", "tiger");
    props.put("internal_logon", "sysoper");
    Connection conn = DriverManager.getConnection (url, props);
    When connecting as SYSDBA or SYSOPER using the Thin driver, the RDBMS must be configured to use a password file. See "Creating and Maintaining a Password File" in the "Oracle Database Administrator's Guide".
    So, i did execute orapwd command to create a password file and also set remote_login_passwordfile=execlusive in my initxxx.ora initial parameter file, however, when i tried to connect, it failed.
    private static void createEmsdbDatabase(){
    String url = "jdbc:oracle:thin:@localhost:1521:";
    StringBuffer sqlStatement = new StringBuffer();
    sqlStatement.append("create database xxx");
    sqlStatement.append("maxdatafiles 254 ");
    sqlStatement.append("maxinstances 8 ");
    sqlStatement.append("maxlogfiles 32 ");
    sqlStatement.append("character set UTF8 ");
    sqlStatement.append("national character set UTF8 ");
    sqlStatement.append("DATAFILE 'c:\\oracle\\xxx\\system01.dbf' SIZE 18M REUSE ");
    sqlStatement.append("logfile 'c:\\oracle\\xxx\\redo01.log' SIZE 2M REUSE, ");
    sqlStatement.append("'c:\\oracle\\xxx\\redo02.log' SIZE 2M REUSE, ");
    sqlStatement.append("'c:\\oracle\\xxx\\redo03.log' SIZE 2M REUSE ");
    try {
    DriverManager.registerDriver(new OracleDriver());
    Properties props = new Properties();
    props.put("user", "sys");
    props.put("password", "password");
    props.put("database","xxx");
    props.put("internal_logon", "sysdba");
    Connection conn = DriverManager.getConnection(url, props);
    Statement statement = conn.createStatement();
    statement.executeUpdate(sqlStatement.toString());
    statement.close();
    conn.close();
    } catch (SQLException e) {
    e.printStackTrace();
    But what made me puzzled a lot is if i use OCI driver, it did work great, why??? guys, anybody knows, please give me some tips, thanks in advance.
    regards,
    Kaixuan @ Shanghai

    clarify my question in detail:
    Step 1 : create password file using orapwd command
    Step 2 : create database instance using oradim command
    Step 3 : login using sys as sysdba to startup database, e.g startup nomount pfile='...\initxxx.ora'
    Step 4 : create database.
    java code showing below:
    private static void createEmsdbDatabase(){
    String url = "jdbc:oracle:thin:@localhost:1521:";
    StringBuffer sqlStatement = new StringBuffer();
    sqlStatement.append("create database xxx ");
    sqlStatement.append("maxdatafiles 254 ");
    sqlStatement.append("maxinstances 8 ");
    sqlStatement.append("maxlogfiles 32 ");
    sqlStatement.append("character set UTF8 ");
    sqlStatement.append("national character set UTF8 ");
    sqlStatement.append("DATAFILE 'c:\\oracle\\xxx\\system01.dbf' SIZE 18M REUSE ");
    sqlStatement.append("logfile 'c:\\oracle\\xxx\\redo01.log' SIZE 2M REUSE, ");
    sqlStatement.append("'c:\\oracle\\xxx\\redo02.log' SIZE 2M REUSE, ");
    sqlStatement.append("'c:\\oracle\\xxx\\redo03.log' SIZE 2M REUSE ");
    try {
    DriverManager.registerDriver(new OracleDriver());
    Properties props = new Properties();
    props.put("user", "sys");
    props.put("password", "password");
    props.put("database","xxx");
    props.put("internal_logon", "sysdba");
    Connection conn = DriverManager.getConnection(url, props);
    Statement statement = conn.createStatement();
    statement.executeUpdate(sqlStatement.toString());
    statement.close();
    conn.close();
    } catch (SQLException e) {
    e.printStackTrace();
    issue was met here, when i tried to login as sysdba using sys, and in my java code, i use Thin driver, it then thrus exception, but when OCI driver is used, it works great, i don't know why.
    that is, when i use "jdbc:oracle:oci8:@" as database URL and then properties.put("database","xxx"), it works great. but, when i use "jdbc:oracle:thin:@localhost:1521:" as database URL and then properties.put("database","xxx"), it failed. hopefully, i have clarified my question clearly. thanks.

  • ODBC login as sysdba

    What is the syntax? From a client desktop I can login to SQL Plus and Enterprise Manager 10g, but not via ODBC (Test Connection) using the same login.
    SQL PLUS:
    Start/Programs/Oracle - OraDb10g_home3/Application Development/SQL Plus
    presents a login box. I enter info as follows, and login is successful
    User Name: sys
    Password: <mysyspwd>
    Host String: ORCL AS SYSDBA
    web site to Enterprise Manager also presents a login box
    User Name: sys
    Password: <mysyspwd>
    Connect As <I select SYSDBA from the dropdown list.>
    but, ODBC, System DSN tab, Add
    Data Source Name: <whatever>
    TNS Service Name: ORCL -- or ORCL AS SYSDBA
    User ID: sys
    Click Test Connection
    Password: <mysyspwd>
    When the TNS Service name is filled in with only the TNSname,
    I get ORA-28009 connection to sys should be as sysdba or sysoper
    When the TNS Service name is filled in with TNSname AS SYSDBA,
    the error is ORA-12154 TNS:couldnot resolve the connect identifier specified.
    When TNS Service name is ORCL and User Id is SYS AS SYSDBA,
    the error is ORA-01017:invalid username/password;login denied
    The dirver is Oracle in OraDB10g_home3 (10.01.00.02 SQORA32.DLL 2/10/2004)
    And I can login via ODBC using
    TNS Service Name: ORCL
    User ID: scott
    Click Test Connection button
    Password: tiger
    I get Connection successful
    Thank you, Nancy
    Edited by: user5699535 on Aug 16, 2010 7:29 AM

    1 Both are dangerous, but using ODBC you can store the password of the account in the registry or odbc.ini. ODBC connections are usually being distributed to the end-users who don't have the faintest idea what they are doing. However, if they do know how to write a passthrough query, they can do anything.
    2 Your database is open to everyone. You are exposing sensitive data. It is in hand of people who might know some SQL. Who might write incorrect queries. Who might doing things which can not be traced, as everything was executed by SYS.
    The issue is most developers of commercial software vendors and major consultancies do not care about security at all. I was often instructed to grant the DBA role to the application owner, because otherwise 'the application doesn't work'. There are far more incompetent developers out there than you and I can imagine.
    Connecting to the database as SYS, indicates a lack of concern for security, and being too lazy to find out what privileges are really required.
    I'm not aware of any reason why the use of SYS should be allowed in any client tool other than sqlplus or maybe sqldeveloper.
    Sybrand Bakker
    Senior Oracle DBA

  • Sys login as sysdba fails in OEM

    System: Oracle Database 10g 10.1.0.2.0 with Oracle Database 10g Patch 10.1.0.4.0 on a SUN Solaris 9 SPARC machine.
    Background:I've made a whole database backup and been trying to recover it back again. First i've tried that with RMAN but i didn't got all my data back in place.
    Now i'm trying to run the recovery via the Enterprise manager. I create a job for it, my databases shuts down and I get the possibility to "perform recovery"
    Problem:When i'm on the login page to continue with the recovery i have to fill in the Host Credentials and the Database Credentials as sysdba.
    I know for sure that what i fill out in those fields is correct. The problem is that i can't login.
    As Database Credentials do i fill in for username: sys and password: the correct paswd. It says that the Role = SYSDBA.
    the error message: Unable to connect to the database.
    ORA-01017: invalid username/password; logon denied
    Neither can i log in with sys, password as sysdba via the Enterprise Manager when the database is up and running.
    Things i've tried:login with sqlplus works fine
    sqlplus "/ as sysdba"SQL> connect sys/<paswd> as sysdba
    Connected.
    SQL> show user
    USER is "SYS"
    Question:How can I solve the problem so i can log with sys users as sysdba with the Enterprise Manager?

    Hi,
    it's not a stupid question, are you really sure your password is correct? In your sqlplus session OS authentification is used, password is irrelevant (OEM does not use OS authentification). Try 'connect sys/abcxyz as sysdba' , it will work. There's a trick to check, if the password is correct.
    Issue 'connect sys/<passwd>' (omit as sysdba). If you enter a correct password you will see ORA-28009 (SYS can only connect as SYSDBA or SYSOPER) , otherwise you see ORA-01017 .
    In the case of ORA-28009 (password IS correct) there seems to be something wrong with the password file or pfile/spfile:
    - REMOTE_LOGIN_PASSWORDFILE is set to NONE
    - The password file does not exist
    - The password supplied does not match the one in the password file
    - The password file been changed since the instance was started
    The password is located in $ORACLE_HOME/dbs, it can be recreated using orapwd utility, REMOTE_LOGIN_PASSWORDFILE should be set to EXCLUSIVE .
    Regards
    Werner

  • SQLPLUS login as SYSDBA

    Hi Guys,
    When I try to login as SYS, oracle complains that I should connect as SYSDBA or SYSOPER. Fine. Now I enter the login user as SYSDBA and enter the password..it fails. However, if I login as user scott and password tiger, I can login. Then from the SQL prompt I do:
    connect SYS/<password> as SYSDBA;
    and it works. So my question is, when I use the same <password> as login prompt and user as SYSDBA or SYSOPER, why does that fail and how can I change to make that work directly without loggin in as some other user and then manually change to SYS.
    Thanks

    you must use a special screen
    http://machine_name.domain:port/isqlplus/dba
    check your sqlplus manualAre you sure?
    I always do:
    http://machine_name.domain:port/isqlplusdba
    Note that in that case you must use htpasswd before ...

  • Login in sysdba mode from isql*plus in oracle9i

    what is a operating system user in oracle and how to create it?
    how to log in isql*plus with sys or system user with sysdba or sysoper ?

    If you are using a 10.x version of iSQL*Plus, you'll need to use JAZN to set up a user to access the iSQL*Plus DBA URL. This is protected by default, using Basic authentication. So you'll need to set this up manually, then login with the credentials you create. The doc for this is here:
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14357/ch2.htm#sthref475
    Alison

  • How can i find out how many users can login as sysdba using password file

    can any one please tell me how can i find out how many users can login as sysdba using password file
    please reply
    asif

    SYS@db102 SQL> select * from v$pwfile_users;
    USERNAME                       SYSDB SYSOP
    SYS                            TRUE  TRUE
    SYS@db102 SQL>                                  

  • Error while login as sysdba for creating a new db

    Hi DBAs,
    i need to create a new database base, so trying to login as sysdba after exporting <ORACLE_SID> and <ORACLE_HOME> and getting the following error, need your help urgently.
    SQL> conn / as sysdba
    exec(): 0509-036 Cannot load program oracleDBDOC because of the following errors:0509-150 Dependent module /data/oracle/product/10.2.0.3/lib/libjox10.a(shr.o) could not be loaded.
    0509-022 Cannot load module /data/oracle/product/10.2.0.3/lib/libjox10.a(shr.o)0509-026 System error: The file access permissions do not allow the specified action.
    Regards
    Asif

    I am not very sure about the error but it seems to some permission related error on oracle binaries. Can you check those permissions.
    Have you created pwd file for db ?
    Cheers

  • Could not login as sysdba after changing oracle sid

    I am using Oracle 10g on Windows. I am getting errors while performing cloning of database from cold backup ( just for leaning purpose).
    The problem is that when i set the ORACLE_SID=ORCL, then i can get login as sysdba but when i change the ORACLE_SID=clone, i get following error:
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Also, I have created the password file using the following command:
    orapwd file=D:\ORACLE\product\10.2.0\db_1\database\PWDclone.ora password=xxxx

    Moazzam wrote:
    I am using Oracle 10g on Windows. I am getting errors while performing cloning of database from cold backup ( just for leaning purpose).
    The problem is that when i set the ORACLE_SID=ORCL, then i can get login as sysdba but when i change the ORACLE_SID=clone, i get following error:
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Also, I have created the password file using the following command:
    orapwd file=D:\ORACLE\product\10.2.0\db_1\database\PWDclone.ora password=xxxxtry this,
    oradim -new -sid clone -intpwd oracle
    and login

  • Login as sysdba problem...

    Hi,
    I've created my own database to make tests on Oracle and directly after that I've changed the passwords for all the users (sys and system users included).
    When I try to login without the sysdba role, Oracle applies the password verification fine.
    The problem is when I try to login as sysdba:
    $> sqlplus 'sys as sysdba'
    I can enter whatever password I want and I'm connected !!!
    And it's the same if first I type:
    $> sqlplus /NOLOG
    SQL*Plus: Release 9.2.0.1.0 - Production on Wed May 7 13:21:44 2003
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    SQL> connect sys as sysdba
    Could someone help me to find where It comes from and how I do solve this security hole...
    Thanks in advance
    Paul

    What's the OS? Are you signed on to the OS as a user in > the DBA group?I'm using a Debian 3.0 (Woody) operating system with a Linux 2.4.18 kernel
    I've got only one user which is a member of the DBA group and what I experienced, It's true, was only when I was logged as this user...
    Does it means that when a user is a member of the DBA group on the operating system, even if the remote_os_authent parameter is set to false, he can login with sys as sysdba as he wants trough sqlplus ?
    +++++++++++++++++++++++++++++++
    Original message:
    Hi,
    I've created my own database to make tests on Oracle and directly after that I've changed the passwords for all the users (sys and system users included).
    When I try to login without the sysdba role, Oracle applies the password verification fine.
    The problem is when I try to login as sysdba:
    $> sqlplus 'sys as sysdba'
    I can enter whatever password I want and I'm connected !!!
    And it's the same if first I type:
    $> sqlplus /NOLOG
    SQL*Plus: Release 9.2.0.1.0 - Production on Wed May 7 13:21:44 2003
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    SQL> connect sys as sysdba
    Could someone help me to find where It comes from and how I do solve this security hole...
    Thanks in advance
    Paul
    +++++++++++++++++++++++++++++++

  • Login as sysdba for patch R12 problem

    Hi,
    I am trying to apply the patch 12.0.3 for R12.
    On of the items is to run a script under a SYSDBA user, however I am not able to login as Sysdba, also not the sys user.
    The scripts :
    SQL> select * from v$pwfile_users;
    no rows selected
    Seems that my passwordfile is missing ?
    Running orapwd gives me the following result :
    [root@linux12 bin]# ./orapwd file=$ORACLE_HOME/dbs/orapw password=manager entries=30
    Unable to find error file.
    Anybody can help me ?

    Yes it is ,see :
    [root@linux12 ~]# echo $PATH
    /oracle/VIS/apps/tech_st/10.1.3/perl/bin:/oracle/VIS/apps/tech_st/10.1.2/bin:
    /oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin:/oracle/VIS/apps/apps_st/appl/ad/12.0.0/bin:
    /oracle/VIS/apps/tech_st/10.1.3/appsutil/jdk/jre/bin:/oracle/VIS/apps/apps_st/comn/util/unzip/unzip/unzip-5.50::
    /oracle/VIS/apps/tech_st/10.1.2/bin:/usr/bin:/usr/ccs/bin:
    /usr/sbin:/oracle/VIS/apps/tech_st/10.1.3/bin:/oracle/VIS/inst/apps/VIS_linux12/ora/10.1.3/opmn/bin
    :/oracle/VIS/inst/apps/VIS_linux12/ora/10.1.3/Apache/Apache/bin:/oracle/VIS/apps/tech_st/10.1.3/Apache/Apache/bin:/oracle/VIS/apps/tech_st/10.1.3/oui/bin:/oracle/VIS/apps/tech_st/10.1.3/OPatch:/oracle/VIS/apps/tech_st/10.1.3/jdk/jre/bin:/oracle/VIS/apps/tech_st/10.1.3/perl/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/oracle/VIS/apps/tech_st/10.1.3/appsutil/jdk/bin:/root/bin
    [root@linux12 ~]# path
    [root@linux12 ~]#

  • ORA-01031:  when login as sysdba

    We have Oracle 11.2 on Redhat 5.6. on the server box, I can login as sysdba by doing sqlplus / as sysdbaBut failed when I do sqlplus sys/****@cchdev as sysdba
    ERROR:
    ORA-01031: insufficient privileges or In sqlplus conn sys/****@cchdev as sysdba
    ERROR:
    ORA-01031: insufficient privilegesI suspect the password is wrong, then I changed password. But I got the same error when using new password.
    I could login all three way above last time. WHat is wrong?

    Here is the result od env|sort[oracle@cchORdev1 ~]$ env|sort
    BI_CONFIG_DIR=/u01/app/obiee/server/Config
    _=/bin/env
    BI_OC4J_DIR=/u01/app/obiee/oc4j_bi
    BI_RPD_DIR=/u01/app/obiee/server/Repository
    CLASSPATH=/u01/app/oracle/product/11.2.0/dbhome_1/JRE:/u01/app/oracle/product/11.2.0/dbhome_1/jlib:/u01/app/oracle/product/11.2.0/dbhome_1/rdbms/jlib
    CVS_RSH=ssh
    G_BROKEN_FILENAMES=1
    HISTSIZE=1000
    HOME=/home/oracle
    HOSTNAME=cchORdev1
    INPUTRC=/etc/inputrc
    KDEDIR=/usr
    KDE_IS_PRELINKED=1
    KDE_NO_IPV6=1
    LANG=en_US.UTF-8
    LD_LIBRARY_PATH=/u01/app/oracle/product/11.2.0/dbhome_1/lib:/lib:/usr/lib
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    LOGNAME=oracle
    LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
    MAIL=/var/spool/mail/oracle
    OBI_BASE=/u01/app/obiee/
    OBI_PRESENTATION_CONFIG=/u01/app/obiee//web/config
    ORA_ALERT_DIR=/var/oracle/diag/rdbms/cchdev/CCHDEV/trace
    ORA_BI_HOME=/u01/app/obiee
    ORACLE_BASE=/u01/app/oracle
    ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
    ORACLE_SID=cchdev
    ORACLE_TERM=xterm
    ORA_DUMP_DIR=/u05/oracle/dpdump
    PATH=/u01/app/oracle/product/11.2.0/dbhome_1/bin:/sbin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/u01/app/oracle/product/11.2.0/dbhome_1/jdk/bin
    PWD=/home/oracle
    SHELL=/bin/bash
    SHLVL=1
    SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    SSH_CLIENT=10.2.0.54 6032 22
    SSH_CONNECTION=10.2.0.54 6032 10.2.0.200 22
    SSH_TTY=/dev/pts/1
    TERM=xterm
    TMPDIR=/tmp
    TMP=/tmp
    TNS_ADMIN=/u01/app/oracle/product/11.2.0/dbhome_1/network/admin
    USER=oracle
    [oracle@cchORdev1 ~]$Edited by: user623617 on Apr 16, 2010 12:11 PM

  • Unable to login as sysdba after installing ODAC and Oracle developer tools

    Hi..I was able to login with
    sqlplus / as sysdba and unlock scott account.
    I then installed ODAC and now when i try to login as sysdba i get Insufficient privileges error.
    also tried sys/password , sys/change_on_install, system/manager but no luck.
    Please help.I am using a desktop and logged in as an administrator.

    989994 wrote:
    Hi..I was able to login with
    sqlplus / as sysdba and unlock scott account.
    I then installed ODAC and now when i try to login as sysdba i get Insufficient privileges error.
    also tried sys/password , sys/change_on_install, system/manager but no luck.
    Please help.I am using a desktop and logged in as an administrator.I think we are missing some information here. Are you trying to connect via Server Explorer?
    If so, you need to choose the drop down box and set it to "SYSDBA".

  • Error ORA-28009: connection as SYS should be as SYSDBA or SYSOPER

    hi,
    i try to connect to oracle in c#2005. I'm using oralce 10.2.0.3.0 in window vista.
    i can connect as user scott , but can't do the same thing with use sys like sysdba. i encouter error :
    "ORA-28009: connection as SYS should be as SYSDBA or SYSOPER"
    this is my code :
    using System;
    using System.Data.SqlClient;
    using System.Data.OleDb;
    namespace ConsoleApplication2
    class Program
    static void Main(string[] args)
    string connectionString = "provider=MSDAORA;data source=ORCL;user id=sys;password=orcl";
    OleDbConnection myOleDbConnection = new OleDbConnection(connectionString);
    try
    myOleDbConnection.Open();
    Console.WriteLine("successfull");
    Console.ReadLine();
    catch (Exception ex)
    Console.WriteLine(ex.Message);
    Console.Read();
    i
    i have google about this error and see that some people use Oracle.DataAccess.Client namespace to solve this error. but i cant find this namespace reference.
    i want to connect to oracle in c# 2005 as user id = sys.
    so , please help me.
    thanks

    it should be there regardless of the version you installed, go into your GAC and give it a look over (C:\Windows\assembly) the Oracle.** should be there after a successful installation. It is actually in your best interest to get the latest and greatest, the versions are backward compatible (I believe they all work to 9i++)
    You can also goto
    %ora_home%\odp.net
    it will have sample c# and vb applications there
    (%ora_home% tends to be c:\oracle\product\#####\Client_1\)
    Have a look over the odp.net demos, that may very well put you on the correct track to getting things working.

  • How to get SYSDBA or SYSOPER credentials

    Hi,
    I am having SYS credentials. But I want to know SYSDBA or SYSOPER credentials.
    How can I check in Database to get them?
    DB:11g.
    I am trying to connect using windows GUI it is asking for anyone of those SYSDBA or SYSOPER credentials

    Hulk wrote:
    I have newly set up my Oracle 11g Database under 'administrator' account in new Windows2008 Server.
    From my oracle batch jobs I am trying to connect DB as shown: SQLPLUS /@%DBName%
    as this line it is throwing logon denied - error message.
    My Old DB is 8i and Server is WindowsNT ,user account ='zadministrator'.
    Why was it throwing error?Unfortuntately you did not show us the actual error message. Instead you chose to give us your interpretation of it. "logon denied" could be a lot of things. An actual error message, including the ora-nnnn number will tell us what it is.
    And you didn't tell us if you tried this connection from the database server or a client machine.
    Copy and paste from a command session is a wonderful thing, but only if you use it.

Maybe you are looking for

  • PHP 5.6.8 to 5.5.x. What is the best practice when trying to do so?

    Hi everyone, I've been using Arch for a while and I really try hard to really keep it simple. Most of the time I'm able to do so, but right now I'm not sure what should I do. I have LAMP stack installed using PHP 5.6.8. What I don't like about it is

  • Whenever my macbook 10.6.8 goes to sleep, I cannot wake it up.

    I get this notification: Can anyone help me? Interval Since Last Panic Report:  191362 sec Panics Since Last Report:          4 Anonymous UUID: FBB4F695-465F-4E00-960B-9E5E8EF4126B Sun May 20 22:57:35 2012 panic(cpu 1 caller 0x28fc2e): "TLB invalidat

  • Argument Error

    Ok I have gotten this far but it throws an Argument Error after the first sequence. import fl.transitions.Tween; import fl.transitions.TweenEvent; import fl.transitions.easing.*; var high = 375; var low = 50; var startPoint = 0; function resizeBar(){

  • ClockIn/ClockOut Error: Class interface was changed at runtime

    Hi, We are testing clock in / clock out corrections and the following error is arising when we call the functionality by this link: http://server:port/sap/bc/webdynpro/sap/hress_a_corrections?sap-wd-configid=HRESS_AC_CORRECTIONS&sap-client=400&sap-la

  • Will I need to reactivate my iPhone once restoring it?

    Hi. I have a IPhone 5 on the verizon network. I was wondering, if i restored my phone from iTunes, will I need to call verizon to reactivate the phone on their network, or will it still be connected with my phone number after the restore? Thanks.