Shall i connect  SYSTEM  AS SYSDBA...?

Hi all..
Is it possible to connect SYSTEM as SYSDBA...? I tried to connect from
DOS prompt like this and i got privilage error.
C:\>sqlplus system/ucpspwd as sysdba
Error is
ORA-01031: insufficient privileges.
Thanks in advance.
Pal

connect from DOS prompt I think you have to connect using the dos prompt on the server

Similar Messages

  • System and sysdba accounts are locked

    Hi
    System and sysdba accounts are locked I cannot connect
    is there a solution for it??

    no one answered but I could solve it using the user sys.

  • Where shall I connect a backup drive - ATA 33 or 66?

    Hello there,
    For the sake of performance (as I would like to believe), I only connect one (1) drive to each controller. My boot drive (system and applications) is connected to a Firmtek SATA PCI card, my documents drive to the ATA100 controller, and my DVD drives are both connected to the ATA66 controller (needed for 16X burning speed; at least in my system with my Pioneer burners).
    So where shall I connect my backup drive? My options are as follows:
    1. use the available ATA33 controller or
    2. use a spare Sonnet ATA66 PCI card
    Keep in mind that this drive will simply be used for copying files into it. I do have BIG movie and DVD files that need backup from time to time. I the ATA33 significantly slower that its 66 counterpart?
    Thanks a lot and may you have a good one,
    Jacobo

    Just to let you know I had the same problem.
    MSI K7N2 Delta ILSR Mobo
    AMD Barton 2700XP Processor
    1GB RAM
    40gb Seagate Barracuda ATA drive on IDE 1 with W2K on it.
    Sony DVD burner on IDE1 (slave)
    Yamaha CD burner CRW3200 on IDE 2 (master)
    Sony DVD-ROM on IDE2 (slave)
    only one 160GB Seagate Barracuda SATA
    Since plugging the SATA drive (recognized), the explorer was experiencing freeze states and I couldn't do anything else than rebooting the PC. I updated the Promise SATA software using Live Update and after the reboot, the system would continuously reboot when W2K was loaded and it was opening the profile.
    Rebooted in safe mode and removed the promise SATA raid utility and now it's OK. Will wait and see if it happens again. Will let you know.
    No raid setup anyway. Used the auto array setup using CTRL+F and that was it.

  • Tracing what is happening in the connect() system call

    I've been playing around with some of the recipies in dtrace today trying to find out why it takes so long to connect from a linux machine to an ultra 5 running sendmail but I'm not having a lot of luck.
    The one thing I can find is that the amount of time for the connect system call to return takes a long time. Here's the dtrace script I wrote (borrowing from Bryan Cantrill's blog):
    bash-2.05b# cat functiontime.d
    #!/usr/sbin/dtrace -s
    #pragma D option flowindent
    syscall::connect:entry
    /execname == "sendmail"/
    self->start = vtimestamp;
    syscall:::entry,
    syscall:::return
    /self->start/
    trace(vtimestamp - self->start);
    syscall::connect:return
    /execname == "sendmail"/
    self->start = 0;
    exit(0);
    This is the output:
    bash-2.05b# ./functiontime.d
    dtrace: script './functiontime.d' matched 454 probes
    CPU FUNCTION
    0 => connect 0
    0 | connect:return 303079
    0 <= connect
    I know there are other syscalls going on from the time connect enters to the time it returns but I have no idea how to get them to print.
    Any ideas how I can make this script more useful to see exactly where sendmail is getting hung up?

    You might also try something like
    #!/usr/sbin/dtrace -s
    #pragma D option flowindent
    syscall::connect:entry
    /execname == "sendmail"/
            self->depth = 1;
            self->syscallstart = timestamp
    fbt:::entry
    /self->depth/
            self->start[self->depth] = timestamp;
            trace(self->start[self->depth++] - self->syscallstart);
    fbt:::return
    /self->depth/
            this->delta = timestamp - self->start[--self->depth];
            @func[probefunc] = quantize(this->delta);
            printf("delta is %d\n", this->delta);
            self->start[self->depth] = 0;
    syscall::connect:return
    /self->depth/
            exit(0);
    }This will give you the function call flow inside the kernel along with the following:
    - on function entry, a time delta since connect was called
    - on function exit, how long we spent in the function
    - on return from the connect system call, a list of histograms showing the call times for all functions called
    You are probably going to want to redirect the output as it gets big.
    Also note, I've written this to give the information only for the first call to connect.
    Alan.
    Alan Hargreaves - http://blogs.sun.com/tpenta
    Senior Technical Support Specialist/VOSJEC Engineer
    Product Technical Support (APAC)
    Sun Microsystems

  • 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

  • How to check a network connected system is in power on?

    How to check whether a network connected system is in power on through its ip address? Is there a simple way in java to check that?
    Thanks

    How to check whether a network connected system is in
    power on through its ip address? Is there a simple
    way in java to check that?If you know that it normally has a server listening on a given port, then you can try to establish a connection on that port.
    If the connection succeeds, it's powered on.
    If the connection fails, you cannot know whether it's powered on or not. It may be on, but the server isn't running. It may be on with server running but the network path to that host may have a problem. It may be on, server running, good network path, etc., but the server may be very busy and the connection attempt may timeout. etc.

  • I have 23 inch Apple HD Display. Will this work with my MacBook Pro? How shall I connect it?

    I have 23 inch Apple HD Display. Will this work with my MacBook Pro? How shall I connect it?

    yarova818,
    there were two different 23-inch Apple Cinema HD displays made. The first one was made between 2002 and 2004, and has an ADC connector. The second one was made between 2004 and 2008, and has a DVI-D connector.
    If you have the display with an ADC connector, then according to this Apple page, your display will work with your MacBook Pro if it’s a 13-inch or 15-inch model. If you have a first-generation MacBook Pro, you’d need an Apple DVI to ADC Adapter (or equivalent) to connect them. If you have a Unibody or Retina MacBook Pro, then you’d also need a Mini DisplayPort to DVI adapter (or equivalent) to complete the connection. A Retina model would also have the option of using a third-party HDMI to DVI-D adapter to complete the connection with the DVI to ADC adapter.
    If you have the display with a DVI-D connector, then if you have a first-generation MacBook Pro, you should be able to plug it in directly. If you have a Unibody or Retina MacBook Pro, then the Mini DisplayPort to DVI adapter would let you make the connection. Again, Retina models also would have the option of using a third-party HDMI to DVI-D adapter.

  • System and sysdba difference?

    Hello ;
    What is the difference between system and "as sysdba" difference?
    IS there anything beyond to be a superuser in ORacle world?
    I installed an Oracle and worked on it for a few days in order to set up a connection from sqlplus. Now I can connect to db by using sqlplus finally.
    When I attempt to connect is as "system@xe / as sysdba" , sqlplus screams that "ORA-01031: insufficient privileges" ... How can I get rid of that error message?

    948578 wrote:
    Guys;
    thanks for your link, advises and explanations but none of them is helping me understand...
    I am not trying to connect to the server from itself.
    I have a Oracle Express on Ubuntu (Servername: ubuntu11-3)
    I have a Oracle Ent on Windows (Servername: orc01.enderun.lan )
    ...and I have been trying to configure my linux client (my linux client hostname is "ubuntu12-1"). All my purpose is to connect ubuntu to my server(s) from my linux client as sysdba...
    ...ok I can understand Oracle has an emotional relation with "dba" group but the user (administrator) which is on my client ( ubuntu12-1) is a member of dba group of my client machine or not? How can Oracle server be aware of this???
    Well, I can create a dba group on linux server and/or an ORA_DBA group on Windows server but these groups are not being used by my client (ubuntu12-1) ...
    Could u please help me understand?So if all you want is to connect a client to a server, why you are asking the difference between Sysdba and System accounts? How does that helps in anyways in this task?
    The groups are relevant only for the server. They have got nothing to do with the client and neither Oracle's server system would bother that which user on your client is a part of which group. Now, coming back to your question, did you configure the TNS service from your client connecting to the server and also, did you install a client software on your Ubuntu machine?
    Aman....

  • String type field in datasouce from db connect system

    i have create a datasouce from db connect witch connect to a oracle database.
    and there is a field with type string.
    when i active transfer rule between infosouce and datasouce
    it return a error:
    more than 3 sting type in rule
    so i hide some field with sting type.
    active again,it return a error
    filed must be a flat structure.
    so i have to delete all string type field
    so my question is
    is there any way to transfer string type field to my BI system?

    when you create the view can use to_char to format date and time type field to sap types eg:YYYYMMDD
    but i also dont know how to convert string to char

  • Error creation of JCO connection: System Already Exist

    Hi Experts,
    We have created the SLD connection to the ECC6.0 from the Portal 7.0.
    Created one JCO connection using that SLD successfully for the Clinet 100.
    Now we required to create one more JCO Connection for client200 also. But it is giving the Error that
    System Already Exist.
    How can we resolve this. When we create the JCO connection for one client, con't we create one more JCO connection for the same system for the differt client or not?
    If so How do it?
    Regards

    I think you can add one more client in the existing connection. well, I am not sure about that even.
    nikhil

  • After system copy sysdba, and dbm user locked in maxdb

    Hi,
    I have done system copy (SCM 5.0 / LiveCache 7.6), after I have restored maxdb / livecache database, (SYSDBA, DBM) users are locked, I am not able to unlock the user, can someone help me.
    What is teh way to unlock (SYSDBA, DBM), how can I do that.
    thanks for your help in advance.
    sahmad

    Hello, do you have the oper user?

  • Error connection system R3

    Hi,
    Today the following error is being produced:
    When I start the portal, the test connection is ok, but after of some minutes the connection failed and the test is not correct.
    The connection is Dedicated Application Server for R/3 System.
    Thanks,
    Mercedes

    In the trace appeard the following:
    #1.5#00110A31A778001F00000250000003F000040A76CEFE98D6#1137405302052#com.sap.engine.services.connector#sap.com/irj#com.sap.engine.services.connector#TYCO01TB31#4725####4a81f160867011da818800110a31a778#SAPEngine_Application_Thread[impl: 1
    #1.5#00110A31A778001F00000250000003F000040A76CEFE98D6#1137405302052#com.sap.engine.services.connector#sap.com/irj#com.sap.engine.services.connector#TYCO01TB31#4725####4a81f160867011da818800110a31a778#SAPEngine_Application_Thread[impl
    Message :
    3]_35##0#0#Error#1#/System/Audit#Java###Exception #1#com.sap.engine.services.connector.exceptions.BaseResourceException: Cannot get connection for 60 seconds. Possible reasons: 1) Connections are cached within SystemThread(can be any server service or any code invoked within SystemThread in the SAP J2EE Engine), 2) The pool size of adapter "" is not enough according to the current load of the system or 3) The specified time to wait for connection is not enough according to the pool size and current load of the system. In case 1) the solution is to check for cached connections using the Connector Service list-conns command, in case 2) to increase the size of the pool and in case 3) to increase the time to wait for connection property. In case of application thread, there is an automatic mechanism which detects unclosed connections and unfinished transactions.
    Additional information:
    n.a.
    Component:
    File: ConnectionHashSet.java
    Method: com.sap.engine.services.connector.jca.ConnectionHashSet.match
    Line: 245
    Can be that when arrive at a number of connections stop and no function? 
    Thanks,
    Mercedes

  • Virtual Console connection - System refused connection

    I have setup a few CSR 1000v routers on an ESXi 5.1 server
    I have followed the instructions to enable the virtual serial port
    I enabled the virtual serial port in the Firewall of esxi
    However when I connect to the virtual serial port telnet://esxiip:2001
    I get "The remote system refused the connection"
    Do I need to configure anything on the router to make this work?
    Thanks
    Roger

    Roger,
    It depends on whether you've previously booted the CSR1000V.  If you did not select the serial console at the GRUB menu on the first boot you must configure platform console serial, save the config and reboot.  Here is a reference to the config guide:
    http://www.cisco.com/c/en/us/td/docs/routers/csr1000/software/configuration/csr1000Vswcfg/csrboot.html#pgfId-1307796
    Hope that helps,
    Nick

  • Connection sys as sysdba

    Hi,
    Our DB is in 8.1.7.4 on Win 2003 server. If I connect
    SQL> connect sys/mypassword@MYDB as sysdba
    I have
    ERROR:
    ORA-01017: invalid username/password; logon denied
    But if I issue :
    SQL> connect sys@MYDB as sysdba
    Enter password:
    It would be OK :
    Connected.
    What is the problem ?
    Thank for help.
    In the two cases I entered the correct password and I'm sure of it.

    By default, the SYS password on 8i is change_on_install, is it the one you used ?
    Furthermore, the user/password used when you are conneting as sysdba doesn't matter :
    E:\apps\oracle\ora0817\bin>sqlplus /nolog
    SQL*Plus: Release 8.1.7.0.0 - Production on Wed Oct 1 18:44:03 2008
    (c) Copyright 2000 Oracle Corporation.  All rights reserved.
    SQL> conn kuere/eiriuur@DEMO817 as sysdba  --obviously this user/password doesn't exists onto the database
    Connected.
    SQL> show user
    USER is "SYS"
    SQL> disc
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.4.1 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.1 - Production
    SQL> conn sys/change_on_install@DEMO817 as sysdba
    Connected.
    SQL> show user
    USER is "SYS"
    SQL> disc
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.4.1 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.1 - Production
    SQL> conn sys@DEMO817 as sysdba
    Enter password:
    Connected.
    SQL> show user
    USER is "SYS"
    SQL> disc
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.4.1 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.1 - Production
    SQL> conn /@DEMO817 as sysdba
    Connected.
    SQL> show user
    USER is "SYS"
    SQL> show parameter password
    NAME                                 TYPE    VALUE
    remote_login_passwordfile            string  EXCLUSIVE
    SQL>Please, check the remote_login_passwordfile parameter value as I showed here above. Are you locally on the server or remote connection ?
    Lastly, some unexpected behaviour can come on non-certified config (8i on W2003), but you already know that.
    Nicolas.

  • Connection & System Problems

    I am operating on a Toshiba L655D-S5025 laptop.  I am running Windows 7 Home Premium 64-bit with a 2.10GHZ AMD Athlon P-320 Processor.  I am unable to connect via wi-fi.  When I attempt to fix the problem, the statement "An error occured while
    loading troubleshooter:  An unexpected error has occurred.  The troubleshooter wizard can't continue."  When I select the option "view error details", the following appears:
    Package ID:  Unknown
    Path:  C:\windows\diagnostics\system\networking
    Error code:  0x8007045A
    Source:  Command line
    User:  AshleighBates\AshleighBates
    Context:  Restricted
    System Restores have been unsuccessful.  I am questioning whether or not the system has been compromised.  I do not have the original system disc to complete a full re-install. 

    Hi,
    Please try one of the two methods.
      Method 1: Upgrade or reinstall the Microsoft XML parser To download the latest XML parser, visit the following Microsoft Web site:
    http://msdn2.microsoft.com/en-us/xml/bb190622.aspx (http://msdn2.microsoft.com/en-us/xml/bb190622.aspx)
    Method 2: Replace the corrupted files To resolve this problem, follow these steps:
    Copy the following DLL files from the C:\WINDOWS\SYSTEM folder on a computer that is working to the computer that is experiencing the problem:
    Msxml3.dll
    Msxml3a.dll
    Msxml3r.dll
    After you replace the files, you must register the files. To register the files, follow these steps:
    Click Start, and then clickRun
    In the Open box, type REGSVR32 C:\WINDOWS\SYSTEM\MSXML.DLL, and then click
    OK. You receive a message when the registration succeeds.
    Repeat steps a and b with the following files:
    C:\WINDOWS\SYSTEM\MSXML2.DLL
    C:\WINDOWS\SYSTEM\MSXML3.DLL
    Restart your computer.
    Kind Regards,
    Martin
    Credit: (Sohail Patel)
    If you find my information useful, please rate it. :-)

Maybe you are looking for

  • -45054

    Hi there - Perhaps one of you can help me. When I try to start iTunes, it says "An unknown error has occurred: -45054" and then it crashes. I have tried re-installing it a few times, to no avail. Any ideas for me? Thank you all. Brooke

  • Powerpoint 2013 - Issues opening presentations from earlier versions

    When opening a presentation created in a previous version of powerpoint I get a message saying: "Powerpoint Found a problem with Content in <document> Powerpoint can attempt to repaire the presentation" If you click repair you then get a message sayi

  • Why can't i download some song using family sharing

    MY wife and I enanled family sharing so we could share music.  I initiated the sharing and invited my to join.  She accepted. When i try to download some of her songs I get "song not available at this time". Why?  What does this mean?

  • Banner does not appear in web preview

    I have a banner image that I put at the top of my webpage it looks great in DW. However when I go to web preview in Firefox or IE it does not appear on the page in the browser, just the title bayshore. Can someone please let me know how to fix this.

  • Keyboard shortcuts hangs Safari forms in ios8

    On my iPhone 6 iOS 8, whenever a keyboard shortcut is activated while I type in a form field (e.g filling in an address), Safari hangs and freezes! I have to manually quit Safari and then it will have problems restarting for a few seconds. Every sing