is possible to connect db with sys/sys as sysdba in utility SQLPLUS

Hi all

I use windows 2000 with oracle 10.1.0

I need to connect to the server through SQLPLUS. I can connect the system/manager@instance_name

The user of the system, I can not able to query > journal list archive; Im getting error as authorization denaid.

is all possbilities it to log on as superuser (sys/sys as sysdba) in SQLLUS utility.

Thank you

Connect sys/sys@instance_name as sysdba

Using the password file in $ORACLE_HOME/dbs, connecting via SQL * NET

Connect sys/sys as sysdba

Uses the DOB Protocol to connect to the database to deal directly and uses OS authentication, which means that you can use any username or password, it doesn't matter, even connect / as sysdba - it will always connect to the SYS schema without worrying. To do this, your account must be in the Group SYSDBA. (S/n - Linux, OSDBA - Windows).

See the documentation standard oracle to create a Windows password file.

When you created the passwd file, you can reset the password help

sqlplus / as sysdba
alter user sys identified by 'password ';

Tags: Database

Similar Questions

  • Connect with sys as sysdba without entering password everyime.

    Hello

    can someone help me with my question.
    the issue is that I want to connect to sqlplus as the user sys with sysdba previlages and don't want to enter password each time. How can I make this answer kindly.

    I would like to connect to sqlplus as the user sys with sysdba previlages and don't want to enter password each time.

    If your OS username is a member of the OSDBA Group (normally dba on ORA_DBA on Windows, Linux/Unix), you don't need any password (OS authentication):

    $ sqlplus / as sysdba
    
    SQL*Plus: Release 11.2.0.2.0 Production on Lun Apr 22 14:40:20 2013
    
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production
    
    SQL> sho user
    USER is "SYS"
    SQL>
    
  • Connect BC with SoftOne

    Hello guys,.

    Is it possible to connect SoftOne with BC? My client wants a new ERP and that since a long time the connection is possible they will go for SoftOne, in case not, I need to present other options, but we have not done in the past and we are a bit lost...

    Thank you

    Hi mate

    Yes, it seems that soft1 has an available API for connect systems

    So don't Business Catalyst

    Soft1 is not too clear what type of ERP but we have watched a lot of British Colombia to ERP systems and depending on how much you want to make the news is pretty good.

    It really all depends on how you want to synchronize?

    * Clients and businesses

    * Bills

    * products

    * inventory

    * connections

    * Subscribers

    * shipping and packing requirements

    * other custom stuff

    Usually, we say to simple at first and continue to do the integration. It is easier if products exist already online if your planning on synchronization of products between the two systems.

    Whatever it is. It is possible and it's something that we specialise in ENOUGH for if you get stuck, then get some budget cleared away and make sure that they are not just tire kicking and then come and see me with a brief.

    [email protected]

  • Unable to connect with SYS on DB server

    Dear Experts,
    I use 11g R2. Operating system is Windows
    I get error Ora-12560 "TNS PROTOCOL ADAPTER ERROR" during the SYS to my DB server connection. Windows services for DB and listener are started, but I am unable to connect with DB.

    Please help me.

    Thank you

    Ok

    Make sure that the services owned by group. and restart once

    and also
    You can try the command prompt?

    Go to the command prompt--->

    Set ORACLE_SID = prod
    sqlplus sys / * as sysdba
    startup

    post if no errors.

  • Recover password when connected with SYS or SYSTEM

    Hello


    When I am connected SYSTEM (or SYS) I can retrieve value of the password through DBA_USERS table for my schema MYAPP. Is it possible to recover the real password?

    Version of Oracle 10 g r2

    Thank you
    Val.

    Hello

    No, the password is hashed for security reason.

    Best regards
    Jean Valentine

  • Why I can't connect to sqlplus but not EM express or SQL Developer with sys account?

    Hello

    I am running in a strange situation. Any help is appreciated!

    I have an Oracle 12 c database shared running on my local computer. I can connect on it through sqlplus very well. Sys and system work. However, I could not connect on EM express or SQL Developer such as sys, only the system account has worked. I get the following errors when you sign on EM and SQL Developer as sys. I checked that the sys password is correct.

    em_express.PNGsqldev.PNG

    > Express EM or SQL Developer

    both use SQL * Net (ONLY) to connect to the database.

    There is a security risk to allow "sys as sysdba" to log on to the network and should be avoided.

    logging as long as SYS via the network using external password file; probably, that does not exist or contains the wrong password

  • Rename the table with sys 11 g

    Hi all

    Prior to Oracle 11 g and Oracle 10 g (I think) we can rename a table like this:

    (with the user sys):

    alter table SCOTT. Rename ancien_nom NewName;

    I mean the user SYS might rename a table from another schema (for example, SCOTT)

    Now, (oracle 11g) when I try to rename a table with the user SYS to another schema, it shows me:

    SQL> conn sys as sysdba
    Enter password:
    Connected.
    SQL> rename table plantest.PEMVX_AFEPRE_ESP to PEMVX_AFEPRE_ESP_old;
    rename table plantest.PEMVX_AFEPRE_ESP to PEMVX_AFEPRE_ESP_old
           *
    ERROR at line 1:
    ORA-00903: invalid table name
    
    
    
    
    SQL> alter table plantest.PEMVX_AFEPRE_ESP to PEMVX_AFEPRE_ESP_old;
    alter table plantest.PEMVX_AFEPRE_ESP to PEMVX_AFEPRE_ESP_old
                                          *
    ERROR at line 1:
    ORA-01735: invalid ALTER TABLE option
    
    
    
    
    SQL>
    

    I read the documentation and the only way (as much, I know) rename table is that the user PLANTEST be connected to the database and rename the table. I mean, only the table owner can rename?

    Please, how can I rename ANY table of my database with the user SYS or SYSTEM?

    Thank you

    chijar,

    Please user query,

    Use the ALTER TABLE RENAME command:
    
     SQL> ALTER TABLE . RENAME TO ; 
    

    This is the keyword to rename mising is why you receive error below.

    1. SQL > alter table plantest. PEMVX_AFEPRE_ESP to PEMVX_AFEPRE_ESP_old;
    2. ALTER table plantest. PEMVX_AFEPRE_ESP to PEMVX_AFEPRE_ESP_old
    3. *
    4. ERROR on line 1:
    5. ORA-01735: invalid option of ALTER TABLE
    6. SQL >

    Naming conventions:
    -------------------

    1 names must be between 1 and 30 characters long.
    2. the names must begin with a letter.
    3. it must contain only A - Z, a - z, 0-9, _, $, and the #. You are strongly
    not recommended to use $ and #.
    4. the names are not case sensitive, unless they are created by double-quotes.

  • Oracle SQL Developer/Oracle 11 g/Windows 7 - cannot connect 'sys as sysdba'

    Hello

    I downloaded and installed SQL Developer 3.2.20.09, the latest version, separately from Oracle 11 g, because the version provided with Oracle 11 g did not work properly.

    Now, I'm trying to connect SQL Developer 3.2 to my instance of 11g Oracle installed on Windows 7.

    I can log in with the user name SYS AS SYSDBA using SQLPLUS, text bundled with Oracle 11g, with a password to null and without any problem.

    However, when I try to connect to the same instance using the graphical tool based on Java, Oracle SQL Developer 3.2 I get this error:

    Status: Failure-Test failed: ORA-01031: insufficient privileges

    I already checked the computer management and I am already a member of administrators and 'ORA_DBA' groups.
    I already checked tnsnames.ora, etc. and everything is indicated as it should.
    I also checked my SID and it corresponds to what was named during the installation of Oracle 11 g.

    Is someone can you please tell me why I can't connect using SYS AS SYSDBA?

    Connection to SQL Developer as the user SYS to Getting Started tutorial

  • Public link connected from a sys user database

    people, pls aplogise me if this is a silly question...

    I create a public database link connected through "sys" username (sysdba role) on the source db

    I don't use 'connect to' clause and therefore connected default value 'sys' will be taken for the user connection

    sys users everywhere to the db of the source and target have the same password

    Now, when I query select * from dual@linkname

    of the source database, it does not work... Why?

    Also tried connecting from another user, same problem.

    Error returned:

    SQL > select * from dual@db4_jpnprd;
    Select * from dual@db4_jpnprd
    *
    ERROR on line 1:
    ORA-01017: name of user and password invalid. connection refused
    ORA-02063: preceding the line of DB4_JPNPRD

    Please help... as it's quite urgent... thnx

    A public database link created with only the 'USING' clause and not the "CONNECT to...". IDENTIFIED BY... "provides the same username/password pair (SCOTT/TIGER in your example) exist in the remote database. Username and password must be the same.

  • Re: Satellite L300 - is there a possibility to connect with TV?

    Hello.
    I want to apologize for my English. It is not my mother tongue.
    When I bought my laptop, I didn't think the connection of it with TV. And that is why I do not pay attention to the lack of HDMI or DVI connectors on my laptop. Maybe someone knows if there is a possibility of connection to the TV. The laptop has only the VGA connector (to connect and an external monitor), microphone, USB connector and Express card slot. My TV (Toshiba AV500PR) has no VGA connector. AR the least VGA connector on it has a description it's a service connector.
    But the main problem is sound. The output signal can be get from microphone connector.

    I hope that someone has already solved this kind of problem.
    Thanks in advance.
    Alexey

    I agree with sanremo. You should buy a VGA adapter cinch set a local computer retailer. Then, you can connect your laptop to the TV.

    I have a Satellite L300 too and the VGA adapter cinch set works perfectly.

  • Is it possible to connect the Qosmio F60 - L10 with a docking station?

    Hello

    is it possible to connect the F60 - L10 with a docking station? I would to connect to the docking station, a monitor and a peripheral such as a printer and a LAN cable.

    Thank you.

    Hello

    You cannot connect Qosmio for docking station because Qosmio includes not all ports docking at the bottom of the unit. Have you seen one?

    But you can buy a [Dynadock | http://eu.computers.toshiba-europe.com/innovation/generic/Dynadock_EMEA_0107/cnt/GENERIC/key/Dynadock_EMEA_0107/banner_id/Q3_DYNADOCK_SM_TEG_0107] Toshiba.

    The Dynadock can be connected to computer laptop s USB port.
    Google a bit for Dynadock. There are different models on the market

    Welcome them

  • First it is possible to connect a cDAQ-9174 with a NI TPC-2206 or the NI TPC-2212?

    Hello

    First it is possible to connect a USB CompactDAQ (cDAQ-9174) in a port USB of the TPC-2206 or TPC-2212? ¿Did you try someone before?

    Thank you.

    Hello

    It is possible, Windows XP Embedded provides users the ability to develop on a desktop PC and quickly deploy to an embedded target. With NEITHER-DAQmx on Windows XP Embedded, developers will have access to common programming languages such as C++ and .NET.

    follow the link corresponding to your request: http://www.ni.com/white-paper/7757/en

    Best regards

  • Is it possible to connect with FACEBOOK Customer / Tech Support? I got my ID stolen FB and I can't connect with a living soul!

    Is it possible to connect with FACEBOOK Customer / Tech Support? I got my FB ID stolen and I can't connect with a living soul! I'm really tired of FACEBOOK and ZUCKERBERG, boasts getting its 1 billionth Member, meanwhile, its members have problems with scams, hackers, even FACEBOOK is now BANNING people for the addition of family and friends! This must be a scam any seriously! Im sick of him, he turned my whole as for social networks. If it wasn't for the fact that I have almost all of my family in Europe and around the world all in one place, I would certainly remove my account. The problem with that is if you delete your FACEBOOK PROFILE, you don't actually remove them. FB keeps them because they are the property of Facebook the minute climb you the post! This information is in the conditions of joining Facebook, but not on the registration page! that is wrong with this picture. THEY HAVE NO SUPPORT, NO CUSTOMER SUPPORT, IT IS Y HAS NO PHONE NUMBER YOU CAN CALL TO REPORT YOUR STOLEN ID AND NOW I HAVE TO ALL RUN IT AROUND TO TRY TO FIND A CYBER CRIME UNIT WHO WILL HELP ME! How can the other thing, I know if Mytechgurus.com is a legitimate business. As I've been hacked and my ID stolen (curiously enough all what's happened just as I was banned from Facebook to add a friend, I've not seen in 36 years.) They have deleted my friendship with her and banned me for 7 days)! Facebook. MyTechGurus.com have charged me $700.00 for 2 pc for serivce of 24/7 for 2 years. Granted they have always been there in the last 6 weeks to help with all the problems that the pirate had created. They've phoned while I had a technician remote access online help with verbal information as it was a huge problem. but I put it back now because a governing body here in Australia called SCAM WATCH who is supposed to tell you who is a scam and is not was good enough to tell me that they are there only to report a scam, they can not physically tell you if one of them is actually a scam or not! I was left to literally chasing my own tail! HE IS THERE ANYONE TO HELP ME AT ALL!

    Hello

    Sorry, we can not help except at the point you in the right direction.

    The Microsoft Community is a site of support of peer reviewed for Windows
    and some Microsoft Products and has absolutely no connection or influence
    with Facebook.

    Rob - SpiritX

  • Is it possible to connect my Application ' Stop' button with the "Run" button of LabVIEW?

    Problem - one of my clients recently tested my new LabVIEW application and asked how the arrested LabVIEW application can be restarted without clicking on the "Run" (right arrow) button.

    Is possible solution - possible to connect my Application ' Stop' button with the "Run" button of LabVIEW?

    Thank you!

    Barry

    The big problem is in your Acquistion to stop audio event. You run the LabVIEW stop sign which is the equivalent of hitting the Cancel button in the toolbar.  (See contextual help on that).  You can stop the acquisition, but you don't want to stop your LabVIEW program.  You need this case in the event your computer to transition state in a sleep mode when you do not make any purchase.  Then hit the purchase button to start again transitions the machine state in the acquisition.

    In your case of program output, you want really to leave LabVIEW it.  You want to run and stop commands like closing the com port and one of these activeX references.  Then allow it to stop the while loop.  Turn the LabVIEW out outside the loop so that once everything is cleaned, your application may close.  You probably want to wrap this command in a case structure so that if you are in the execution environment, it leaves your application.  But if you are in the development environment, you don't want to cause your LabVIEW environment stop.  Another thing is that right now, you actually have a race condition in the Exit event.  The com port will close first or LabVIEW will come out.  There is no defined order of execution.

    Alternatively, you can have an event to close panel? in this way, you haven't accidentally short circuit all your program by pressing the X key.  You want to capture this event, discard it.  And if you want to not actually closed, did trigger the Exit Program button so that you can gracefully shutdown.

  • is it possible to connect with SSH from router to router?

    is it possible to connect with SSH (1.0 or 2.0) to a CISCO-router/Switch to another CISCO-router/Switch?

    I think that an SSH connection to a router/switch is no longer possible to a women (Windows/Linux/Unix)

    is it not?

    I don't know if Cisco Compatible SSH 2.0, but there IOS - s that support ssh 1.0 and you can connect with ssh 1.0 from a cisco device (if it supports) to any device with

    Router # ssh?

    Select encryption algorithm - c

    -l Log in using that username

    options to specify o

    p connect to this port

    Address WORD IP or hostname of a remote system

    Router # ssh x.x.x.x

Maybe you are looking for