Error Usage: CONNECT username [AS SYSDBA|SYSOPER]

Hi,
I am running a request set which starts of with unix shell script.
I get this error:
Invalid option.
Usage: CONNECT <username> [AS SYSDBA|SYSOPER]
Invalid option.
Usage: CONNECT <username> [AS SYSDBA|SYSOPER]
Invalid option.
Usage: CONNECT <username> [AS SYSDBA|SYSOPER]
unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
Can anyone tell me why this is happening/
thanks
Ash

This is the unix script which is used:
Please let me know where is goin wrong:
#!/usr/bin/ksh
##sqlplus -s apps/w0rkin <<-ENDSQL
logi=`echo $1|awk '{print $3 }'`
login=`echo $logi|awk -F'=' '{ print $2 }'|sed 's/"//g'`
org_id=`echo $1|awk '{print $9 }'`
sqlplus -s $login <<ENDSQL
set serveroutput on size 1000000 verify off
define xxdata=${XXDATA}
variable xxdatav varchar2(100)
var status_out NUMBER;
define org=$org_id
DECLARE
v_xxdata_path1 Varchar2(100);
v_xxdata_path2 Varchar2(100);
v_errbuf Varchar2(100);
v_retstat Number;
v_org VARCHAR2(20);
BEGIN
--v_xxdata_path1 := '&xxdata'||'/ont/outbound';
v_xxdata_path1 := '&xxdata'||'/ont/oraout';
v_xxdata_path2 := '${XXDATA}';
dbms_output.put_line('1. XXDATA ='||v_xxdata_path1);
dbms_output.put_line('2. Organization Id ='||'&org');
select decode('&org','""','-1',null,'-1','&org')
into v_org
from dual;
dbms_output.put_line('v_org='||v_org);
xxont_bt_outbound_pkg.create_outbound_btfile(v_xxdata_path1,to_number(v_org),
v_errbuf,v_retstat);
dbms_output.put_line('v_retstat='||v_retstat);
:status_out := v_retstat;
--dbms_output.put_line('2. XXDATA ='||v_xxdata_path2);
:xxdatav := '${XXDATA}';
END;
print :status_out
exit :status_out
ENDSQL
if [ $? -ne 0 ]
then
echo "Outbound file creation failed!!!"
exit 1
else
exit 0
fi

Similar Messages

  • Run BRBACKUP found error BR0301E 'CONNECT / AT PROF_CONN IN SYSOPER MODE'

    I run brbackup -u / -c and got this error
    BR0301E SQL error -1031 at location BrInitOraCreate-2, SQL statement:
    'CONNECT / AT PROF_CONN IN SYSOPER MODE'
    ORA-01031: insufficient privileges
    I check role SAPCONN exists

    Hi,
    In order that the logon with the option "in sysoper" can be made successfully, you need to make sure that the corresponding OS-user is a member of the OS-group ORA_<sid>_OPER. This is also mentioned in note 480266, point 2 Prateek mentioned.
    But in case above is fine, make sure that the sapdba_role.sql script is imported as per note 134592
    Br,
    Javier

  • SP2-0306:Invalid option.Usage:CONN[ECT][logon][AS{SYSDBA|SYSOPER}]where log

    Hi
    Anyone can help me with the following error we are getting
    SP2-0306:Invalid option.Usage:CONN[ECT][logon][AS{SYSDBA|SYSOPER}]where<logon>::=<username>[<password>][@<connect_identifier>]|/
    We just upgrated to R12 and the shell script that we run is returning the above error message.
    Below is the script
    # Determine employee ID of send-to
    echo "Determine employee ID of send-to"
    if [ $8 ]
    then
    EID=`echo "${CONNECT} \n
    set heading off \n
    set feedback off \n
    select employee_id from FND_USER where upper(user_name) = '${USRNAME}';" |
    ${ORACLE_HOME}/bin/sqlplus -s`
    echo "CONNECT values " ${CONNECT}
    echo "Connected to DB " $EID
    echo "employee fax "
    # employee fax
    EFAX=${11}`echo "${CONNECT} \n
    set heading off \n
    set feedback off \n
    select fax_number from POS_PO_EMPLOYEE_DETAILS_V where employee_id=${EID};" |
    ${ORACLE_HOME}/bin/sqlplus -s |
    sed s/-//g`%[email protected]
    echo "Employee Fax "$EFAX
    EFAX2=`echo $EFAX|sed s/' '/'%91'/`
    EFAX=$EFAX2
    # employee email
    EEMAIL=`echo "${CONNECT} \n
    set heading off \n
    set feedback off \n
    select email_address from HR_EMPLOYEES_ALL_V where employee_id=${EID};" |
    ${ORACLE_HOME}/bin/sqlplus -s`
    EEMAIL2=`echo $EEMAIL|sed s/' '//g`
    EEMAIL=$EEMAIL2
    echo "Employee Email "$EEMAIL
    fi
    thank you

    I ended up rewriting the shell script and it works fine now
    if [ $8 ]
    then
    EID=`${ORACLE_HOME}/bin/sqlplus -s ${CONNECT} <<EOF
    set heading off;
    set feedback off;
    select employee_id from FND_USER where upper(user_name) = '${USRNAME}';
    exit;
    EOF`
    echo "Connected to DB " $EID
    echo "employee fax "
    # employee fax
    EFAX=${11}`${ORACLE_HOME}/bin/sqlplus -s ${CONNECT} <<EOF
    set heading off;
    set feedback off;
    select replace(fax_number,'-') from POS_PO_EMPLOYEE_DETAILS_V where employee_id=${EID};
    exit;
    EOF`%[email protected]
    echo "Employee Fax "$EFAX
    EFAX2=`echo $EFAX|sed s/' '/'%91'/`
    EFAX=$EFAX2
    # employee email
    EEMAIL=`${ORACLE_HOME}/bin/sqlplus -s ${CONNECT} <<EOF
    set heading off;
    set feedback off;
    select email_address from HR_EMPLOYEES_ALL_V where employee_id=${EID};
    exit;
    EOF`
    EEMAIL2=`echo $EEMAIL|sed s/' '//g`
    EEMAIL=$EEMAIL2
    echo "Employee Email "$EEMAIL
    fi
    thank you for your help!
    Edited by: user618218 on May 20, 2013 2:39 PM

  • Connecting as sysdba / sysoper

    Hi Guys, If I do this
    connect / as sysdba
    connect / as sysoper
    I am connected but how do I ensure that it prompts me for a sysdba / sysoper password before it connects me.
    Thank you.

    and the exact to connect would be
    $sqlplus "/ as sysdba"
    or
    $sqlplus
    username:/ as sysdba
    password:yourwish/nopassword/anything
    or
    $sqlplus /nolog
    sql> conn / as sysdba
    But for all these things you need to set up ORACLE_SID,ORACLE_HOME,PATH varibales
    but dont use OS authentication

  • Error while connecting as sysdba

    while login as sysdba getting an error as
    SQL> conn / as sysdba
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Warning: You are no longer connected to ORACLE.

    actualy oracle is installed in server we are using the client version so is it possible to change Oracle_HOME and Oracle SIDAre you trying to login from the server itself or from some clients PC.
    If from server then the oracle service is not started.to start the oracle service open cmd and
    net start oracleserviceSID
    If you are trying to login from a clients PC's then use
    sys@tns_alias as sysdba ---> tns_alias is the alias name in the TNSNAMES.ora file
    Anand

  • CONNECT INTERNAL 시 SYS에 PASSWORD 걸기(SYSDBA, SYSOPER)

    제품 : ORACLE SERVER
    작성날짜 : 1997-03-31
    SYS user 에 passwd 거는 방법
    ===========================
    이를 걸게 되면 connect internal 접속 시 passwd를 물어보게 되며 DBA group이
    아닌 다른 user에서도 sys user와 똑같이 작업할 수 있다.
    1) initSID.ora 화일에
    REMOTE_OS_AUTHENT = TRUE
    REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE
    2) ?/dbs 에서
    orapwd file=orapwSID password=my_password entries=10
    (이 때의 SID는 실제의 ORACLE_SID 를 적어주어야 함.)
    3) connect internal 후
    grant sysdba to scott
    grant sysoper to scott 를 부여한다.
    이를 부여하면 sys의 passwd를 알지 못해도
    SVRMGR> connect internal;
    SVRMGR> passwd ? :
    만약 passwd 를 모르면
    SVRMGR> connect scott/tiger as sysoper ;
    SVRMGR> startup 이 가능하다.
    참고) 이의 효과를 위해 /etc/group 화일에 oracle os user가 DBA group 이
    아니어야 하며 일반 user에서도 위의 작업을 똑같이 실행하려면 configSID.ora
    화일을 oracle user 아닌 다른 user에도 실행이 가능할 수 있도록 실행 MODE가
    4755 이어야 한다.

    If you want to connect a new user as SYSDBA or SYSOPER, you must first create a repository. Check some document for creating a repository with seperate tablespace.

  • Error "Cannot connect to 'AD' data repository. Your username or password may be incorrect." while login to ESSO Provisioning Gateway

    Hi all,
    I'm facing a problem while login into ESSO Provisioning Gateway, it throws error "Cannot connect to "AD" data repository. Your username or password may be incorrect.". My Provisioning Gateway version is 11.1.1.5.2 and it is freshly installed. It throws error while I try to set event log in PG setting menu. The symptom is really like document with ID 467150.1 in Oracle Support but my storage is Active Directory as had mentioned above not Oracle Internet Directory.  Have anyone ever faced problem like thisOIM? Any help will be very much appreciated. Thanks
    Regards
    Johan Saragih

    I use only support.mozilla.org and never used any other websites. However, the same problem here. My ID and Password are not accepted. Had to create a new account with a temporary email to use Support - it would not allow me to use my main email, because "it is used by another account". Try to reset password - receive no email (even though there is a confirmation on the website that email to reset password has been sent). At the same time can easily receive a confirmation about User ID and account activation. Thus, the account is completely locked, and I can not use my email address for a new one. Please fix this problem.

  • Error in connect to Enterprise manager console

    I am getting the following error message when trying to connect to oracle 9i Enterprise manager console with the following username and password: sysoper/oem_temp as sysoper AND sys/password as sysdba
    Error Message :ORA12532:TNS:Invalid arguement
    I installed oracle 9i in my home PC.
    Can any one Please Help me
    Thanks in Advance

    Hi all
    Are you trying to connect using stand alone? or using and OMS?
    I tried to connect using stand alone, i didnot change any system usernames and passwords (Defaults)
    Username: System
    password: Password
    service: orcl
    connect as : Normal
    I also tried to connect as
    username : Sys
    password: password
    as: sysdba
    Still getting the same Error
    THANKS ONIL

  • Error while connecting from OEM

    Hi experts,
    While I try to connect thru the instance manager in OEM as sys or system or internal (sysdba or sysoper ), i get an error saying invalid username or logon denied. Why is this happening? Can someone help me out on this please???

    Hi,
    To be more sure, check your user name and password once again.
    Would you be more specific on what kind of error u are getting?
    Regards,
    shravan

  • Error while connecting to workflow builder after installation...first time!

    Hi,
    I have installed Oracle Workflow Builder 2.6.3 recently on my system and after installation, when I am trying to connect the workflow builder (using database username/password of that particular instance), it is throwing me the following error:
    220: Unable to set NLS_LANGUAGE.
    210: Oracle Error: ORA-01403: no data found
    . SQL text: SELECT NLS_LANGUAGE FROM WF_LANGUAGES WHERE :l IN (NLS_LANGUAGE, CODE)
    In the previous threads when I searched for the same issue, I found that if
    select value from v$nls_parameters
    where parameter='NLS_CHARACTERSET';
    returns the value other then WE8ISO8859P1 then that is what I should change my NLS_LANG entry for the builder - i.e. AMERICAN_AMERICA.<character set>.
    But I am not getting where should I change NLS_LANG, it is located where...some file? I am new to Workflow.
    Please help me. I tried a lot. Any type of help will be highly appreciated.
    Thanks,
    Sumir

    This issue (and solution) is described in ML Doc 577905.1 (Error While Connecting To Database Via Workflow Builder)
    HTH
    Srini

  • Deserialization Error while connecting to web service

    I am getting a deserialization error while connecting to a web service.
    Deserializing parameter 'ScheduleReceiveService': could not find deserializer for type {http://www.w3.org/2001/XMLSchema}anyType...
    There are two methods ex
    UserDefinedClass1 methodA(java.lang.Object ) and
    UserDefinedClass2 methodB(UserDefinedClass3)
    And when i generate java files using WSDL2Java using apache axis the UserDefinedClass is generated as follows.
    public class UserDefinedClassA implements java.io.Serializable {
    private java.lang.Object _return;
    // There are other methods for setting the attributes,hashCode,equals etc
    Now when i try to invoke the method from the client i get this as an error ?
    Deserializing parameter 'UserDefinedClass': could not find deserializer for type {http://www.w3.org/2001/XMLSchema}anyType
    Appreciate any suggestion.

    Hi Manohara,
    To download the file from SharePoint, I recommend to use the credential for a user who can access the file in SharePoint in the client object model.
    NetworkCredential credentials = new NetworkCredential(“username”, “pwd”, “domain”);
    ClientContext context = new ClientContext(“http://thesitecollection”);
    context.Credentials = credentials;
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Error when connecting linux oracle dataabse for replication thru oms

    I have installed oracle 8.1.7 ee on Redhat linux 7.1 and 6.2 both and also on windows2000.
    When i try to access database of any oracle installed on linux machines from any of management server it gives following errors:
    ora-01034 oracle not available
    ora-27101 shared memory realm does not exist
    linux error:2: file or dir does not exist.
    if i try to access dataabse without login to any management server ( i.e thru dba studio) then it connects to it.
    i want to setup master replication with two linux machine database.
    if any person has solution for this then please help me.
    Thx in advance
    if possible mail me at [email protected]
    thx in advance
    pranav shah
    null

    1010056 wrote:
    When iam connecting getting the following error
    [rmancln@orawave ~]$ sqlplus '/as sysdba'
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jun 5 21:16:53 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select status from v$instance;
    STATUS
    MOUNTED
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/u01/rmancln/oradata/CLN/system01.dbf'provide details on what events lead up to this situation.
    [oracle@localhost ~]$ oerr ora 1152
    01152, 00000, "file %s was not restored from a sufficiently old backup "
    // *Cause:  An incomplete recovery session was started, but an insufficient
    //         number of logs were applied to make the database consistent. This
    //         file is still in the future of the last log applied. The most
    //         likely cause of this error is forgetting to restore the file
    //         from a backup before doing incomplete recovery.
    // *Action: Either apply more logs until the database is consistent or
    //         restore the database file from an older backup and repeat recovery.

  • Error while connecting to SQL SERVER from OWB

    HI All,
    I got the following error while connecting to SQL SERVER from OWB(10gR2).
    1). Created DSN with (GMSCADA)
    2). tnsnames file is updated with the following information
    GMSCADA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.60.29)(PORT = 1433))
    (CONNECT_DATA =
    (SERVICE_NAME = SA)
    3). Tried to connect to SQL SERVER frm OWB
    Username: sa
    password: sa
    host: 172.16.60.29
    port: 1433
    service name: GMSCADA
    schema: sa
    I got the following error, when I click Test Connection:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from OWB_3095
    Regards,
    Kumar.

    Hi David,
    What is Gateway, How I have to setup, Please let me know.
    I tried according to the Demo, But still I am facing the same problem. Which system IP I have to put in the host details.
    Can u please let me know.
    Regards,
    Kumar.

  • Error in connecting servant to ORB: ClassCast exception

    Hello,
    I'm working on a software using CORBA. (i'm not sure to be on the good forum for this kind of problems)
    Here is stacktrace:
    Nov 3, 2008 12:07:35 PM com.sun.corba.se.impl.orb.ORBImpl connect
    WARNING: "IOP02310202: (OBJ_ADAPTER) Error in connecting servant to ORB"
    org.omg.CORBA.OBJ_ADAPTER: vmcid: SUN minor code: 202 completed: No
         at com.sun.corba.se.impl.logging.ORBUtilSystemException.orbConnectError(ORBUtilSystemException.java:8045)
         at com.sun.corba.se.impl.logging.ORBUtilSystemException.orbConnectError(ORBUtilSystemException.java:8063)
         at com.sun.corba.se.impl.orb.ORBImpl.connect(ORBImpl.java:1474)
    Caused by: java.lang.ClassCastException: MyObject_TIE
         at com.sun.corba.se.impl.oa.toa.TransientObjectManager.storeServant(TransientObjectManager.java:48)
         at com.sun.corba.se.impl.oa.toa.TOAImpl.connect(TOAImpl.java:160)
         at com.sun.corba.se.impl.orb.ORBImpl.connect(ORBImpl.java:1472)
         ... 54 more
    This happens for one user on any computer he uses.
    I can't give you more code as it is part of something really big and i didn't manage to reproduce it.
    Does someone as an idea of what can be the real cause ?
    Thx

    Thanx:)
    Uuhmm I have added the line you suggested,
    but the errors are still the same..
    I'm getting lost here...
    ---------- compile ----------
    LoginServlet.java:15: cannot find symbol
    symbol : variable DatabaseConnection
    location: class LoginServlet
              DatabaseConnection.connection();
    ^
    LoginServlet.java:16: cannot find symbol
    symbol : variable DatabaseConnection
    location: class LoginServlet
         ResultSet rs = DatabaseConnection.getQueryResults(query);
    ^
    LoginServlet.java:24: cannot find symbol
    symbol : variable DatabaseConnection
    location: class LoginServlet
                        rs = DatabaseConnection.getQueryResults(query + userName + "'");
    ^
    3 errors
    Output completed (8 sec consumed) - Normal Termination

  • Mifi 2200 - Error 691: Connection Failed - Access was denied ...

    I have set up a Mifi 2200. It CAN work great. Intermittently though, I can't get connected wheen using the device as a USB modem. It will ALWAYS connect fine when I connect through Wifi.
    The error I get: Mifi 2200 - Error 691: Connection Failed - Access was denied because the username and/or password was invalid in the domain.
    I have done all the usual things:
    1. Reinstalled the VZAccess Manager software including latest update. I am at 7.3.13.1 (2635a)
    2. Obtained all latest Windows updates (XP SP2).
    3. Removed, replaced, manually, auto-configured a Dial Up Connection many times.
    4. Replaced the USB to microUSB cable.
    I found the VZAccess Managers diagnostic tool where you press CTRL-D and enter the password diagvzw and see some additional settings.
    There I had a minor break through. There is a setting where I can force the modem to only use 1X. If I do that, I connect every time without fail. No problems, no errors. The moment I put that setting back to Auto or forced EVDO, I fail again, or only work every 20th try or so after a reboot of the device etc.
    Is anyone else seeing this, or getting this error? It can't be an account issue since it works sometimes on EVDO and ALWAYS fine on 1X.
    Thanks for any help or ideas.
    PN

    I think I have an update that might be a clue that it IS an Verizon issue either with the device itself or at the towers.
    I have determined that when I connect to it through WiFi where I mentioned it seems to ALWAYS work. Well, it always works in 1X mode there. It fails in EVDO mode.
    Something up at the towers? Although multiple towers have been tried.
    Anyone any ideas?

Maybe you are looking for

  • Help with creating a shuffleList function...

    I have the following function, which creates and populates a vertical column of draggable clips and populates the dynamic text boxes within the movie clips with data from an xml file, effectively creating an ordered list of movie clips The code works

  • Firefox 24 doesn't display Amazon *** star ratings icons

    I use Amazon's starred rating system (1 to 5 ***** stars) to evaluate items to purchase. In Firefox 24, the stars don't appear for certain products, e.g., digital cameras. With all add-ons disabled, the stars still don't appear. They do appear in IE

  • How to call  a method of one view in other view

    Hi   could any one suggest "how to call  a method of one view in other view " thanks kaushik

  • I cannot get trace file with sql command

    Hi,            When I am executing the below command in SQLPLUS I could not find trace files in /oracle/(sid)/sap trace/ user trace directory. The command is >alter database backup control file to trace; I have executed this command with (sid)adm and

  • ICloud Keychain turns itself off

    On my iPhone, iCloud Keychain goes sometimes off. I don't know why, but it's one of the very frustrating "features" of iOS8. Why is this happening and can I fix it? My iPhone is protected by fingerprint.