Sys user unable to do anything

Hi,
the setup is oracle 10g running on solaris 10.
Recently, we faced a issue where no user was able to establish connection to the database, this we found to be due to a parameter processes=150, however even sys user was not able to perform any operations like 'select', 'shutdown of the database', etc etc. Finally i did kill the pmon process and then restarted the db and set processes=200.
My Query is if there was a better way to handle the above situation, where there sys user can just login, but cannot perform any query/actions.

the setup is oracle 10g running on solaris 10.
Recently, we faced a issue where no user was able to establish connection to the database, this we found to be due to a parameter processes=150, however even sys user was not able to perform any operations like 'select', 'shutdown of the database', etc etc. Finally i did kill the pmon process and then restarted the db and set processes=200.
My Query is if there was a better way to handle the above situation, where there sys user can just login, but cannot perform any query/actions.I think it is possible to start a new session and do such operation using sys user using a BEQUETH session. Login to your host server. Set the oracle_sid and connect as sysdba provided the user through which you logged in should be a member of dba group.
Regdards.

Similar Messages

  • Unable to connect using connect string in linus using sys user in Linux

    Hi,
    I am facing problem in using connect string while connecting as sys user in Linux OS
    For example:
    When I am connecting as
    sys/sysoracle as sysdba its getting connected.
    But when I am providing the connect string such as sys/sysoracle@TEST as sysdba its showing with error as:
    ORA-12505: TNS :listener does not currently know of SID in connect descriptor
    Any help will be benefitial for me
    Thanks and Regards

    >
    ORA-12505:
    TNS:listener does not currently know of SID given in connect descriptor
    Cause:     The listener received a request to establish a connection to a database or other service. The connect descriptor received by the listener specified a SID for an instance (usually a database instance) that either has not yet dynamically registered with the listener or has not been statically configured for the listener. This may be a temporary condition such as after the listener has started, but before the database instance has registered with the listener.
    Action:     
    - Wait a moment and try to connect a second time.
    - Check which instances are currently known by the listener by executing: lsnrctl services <listener name>
    - Check that the SID parameter in the connect descriptor specifies an instance known by the listener.
    - Check for an event in the listener.log file.>
    So are you sure that TEST is a right connection string that you are using and is rightly configured?
    HTH
    Aman....

  • Error in renaming the table from SYS user

    Hi
    I am in Schema by name jc
    and I have a table by name tab1
    now i logged as sys user
    then I give a command
    rename jc.tab1 to tab2 ;
    getting the following error
    rename jc.tab1 to tab2
    ERROR at line 1:
    ORA-01765: specifying table's owner name is not allowed
    Query is
    Is it notpossible to rename a table of other schema by logging as sys user ?
    is there any other alternate method of doing so??
    Thanks and Regards
    JC

    Sorry Guido,
    I have not stolen anything from anywhere :)
    All are mine ...I have created some normal users and some users with DBA privileges....
    I use this schemas for testing purpose....
    Also if I give command like from SYS user
    Alter table jc.tab1 rename to tab2 ;
    It will create tab2 in jc schema only and not in SYS schema.
    So there is no question of poluting the SYS schema.
    Also whatever I ask in this forum is a part of my application related,
    I never give the entire program, which may be useless for others and time taking in understanding.
    I just simulate whatever I require in as simplae format as I can
    The person who is very perfect in this forumn can find such queries rubbish. But in learning process no question is rubbish, but there can be a rubbish answer to every intelligent question too... :)
    Regards
    JC

  • Why is my Apple ID still disabled when supposedly  was fixed by apple httsupport this am over 12 hours agora dithery said it would be disabled no longer then 8 hours and I still am unable to buy anything in the I tunes store or pay for any apps or games

    Why is my Apple ID still disabled when supposedly it was fixed by Apple ID support over the phone  this am over 12 hours ago and they  said it ( my Apple ID and password) would be disabled no longer then 8 hours and I still am unable to buy anything in the I tunes store or pay for any apps or games.

    We are fellow users here on these forums. Have you tried logging out of your account on your iPad by tapping on your id in Settings > iTunes & App Store and then logged in and seeing if it then works ?

  • Query execution is faster - as SYS user vs. application user in 11.1.07

    In +11.1.0.7+ database, we have noticed execution of an application process as SYS user is faster than the application user. To quantify this execution time was 2 hours as application user and same process when executed as SYS user completed in 1 hour.
    We ran tracing for this process and tkprof output showed follwoing:
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS:
    _call          count      cpu       elapsed disk query current rows_
    Execute 3705586 2440.49 *4294.54* 293602 21835223 23300886 3801288 <<< ==== SYS
    Execute 3703285 6356.69 *8576.50* 303175 21785419 23378086 3801291 <<< ==== Application user
    We have SR open with Oracle, but thought if some one knows about this issue would be great.
    Edited by: dhyani on Aug 17, 2010 3:16 PM

    What about the "Predicate Information" section of the execution plans - were those exactly the same? Did you use AUTOTRACE, EXPLAIN PLAN FOR, or the method that I showed to retrieve the execution plans? Where the SQL_ID and CHILD_NUMBERS displayed exactly the same? Is the STATISTIC_LEVEL set to TYPICAL for both sessions? You can check the setting in SQL*Plus like this:
    SQL> SHOW PARAMETER STATISTICS_LEVEL
    NAME                                 TYPE        VALUE
    statistics_level                     string      typicalAs a demonstration, I will change the value at the session level and then change the setting back:
    SQL> ALTER SESSION SET STATISTICS_LEVEL='ALL';
    SQL> SHOW PARAMETER STATISTICS_LEVEL
    NAME                                 TYPE        VALUE
    statistics_level                     string      ALL
    SQL> ALTER SESSION SET STATISTICS_LEVEL='TYPICAL';If the above does not show a difference, you will need to capture a 10046 trace at either level 8 or level 12 for both sessions and compare the wait events and the STAT lines in the 10046 trace to see where the additional time is being spent. Reference these two blog articles for the 10046 trace:
    http://hoopercharles.wordpress.com/2009/12/01/10046-extended-sql-trace-interpretation/
    http://hoopercharles.wordpress.com/2010/01/26/10046-extended-sql-trace-interpretation-2/
    Keep in mind that the goal is to not change anything until we understand the problem better. Maybe, just maybe, someone created a table (or view) or two in the SYS schema (or used a table/view name that matched a SYS owned object), in a normal user's schema, or there are synonyms pointing to different tables. So, it probably would be a good idea to verify that the results are exactly the same when the SYS user executes the SQL statement and a normal user executes the SQL statement.
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Login to SQL Developer as the SYS user for Getting Started tutorial

    I went to try and do the following tutorial to learn about SQL Developer 3.0, but I cannot get started because I'm unable to perform Prerequisite #3.
    How do I "Login to SQL Developer as the SYS user"?
    Dave
    Getting Started with Oracle SQL Developer 3.0
    Prerequisites
    Before starting this tutorial, you should:
    1 .
    Install Oracle SQL Developer 3.0 from OTN. Follow the readme instructions here.
    2 .
    Install Oracle Database 11g with the Sample schema.
    3.
    Unlock the HR user. Login to SQL Developer as the SYS user and execute the following command:
    alter user hr identified by hr account unlock;
    Note: This tutorial is developed using Oracle SQL Developer 3.0.
    4 .
    Download and unzip the files.zip to a local folder on your file system. In this tutorial, we use the C:\sqldev3.0 folder.

    I installed XE. It asked me to set up a username and password during the install.
    How do I login as the SYS user, though?
    There is a Connection Name, Username, and Password field when I try to set up a connection in SQL Developer, and I used the username and password I made during the install. I clicked the Test button to test the connection.
    I see "Status: Failure -Test failed: ORA-28009: connection as SYS should be as SYSDBA or SYSOPER".
    How do I tell SQL Developer "as SYSDBA or SYSOPER"?
    Sorry, this is probably easy, and I'm just clueless about it.

  • Connect DB - SYS user with wrong password

    Hi All,
    A strange thing I have noticed with SYS user since Oracle 9i(never worked on earlier versions) is that I can connect to the SYS user as SYSDBA with wrong password as well! Please guide how to prevent this...
    (I have searched for a solution online but was unable to find any :( )
    SQL> CONN SYS/AAA@TEST AS SYSDBA
    Connected.
    SQL> DISC
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> CONN SYS/BBB@TEST AS SYSDBA
    Connected.
    SQL>
    SQL> DISC
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production*009*

    There is nothing wrong and nothing should be, IMO, prevented.
    When you log in to the server as an user in the dba group (Unix) or the ora_dba group (Windows), you are a power user and O/S authentication applies to you, and you don't need a password.
    Logging in as owner of the software (oracle) all the time, what many DBAs do, is a bad idea anyway, as you can remove anyufile on O/S level.
    Strategies to prevent this:
    - make sure your account isn't in the groups I mentioned
    or
    - disable O/S authentication by editiing sqlnet.ora
    Both procedures are documented.
    Finally please note anyone who has root access can get around this easily.
    Sybrand Bakker
    Senior Oracle DBA

  • Unable to purchase anything since update o 9.02

    Since updating to 9.02 I'm unable to purchase anything from the UK iTunes store. It gets stuck on "Accessing iTunes Store..." and eventually times out with an error message.

    I have not yet upgraded, get the same error, and I am on 9.0.1.8..
    also got the same agreement deal on my iPhone.. It cruised past it, but it's the only way I seem to be able to purchase from the iTunes store as of now..
    Google search doesn't turn up anything yet, except that Apple TV finally got the 3.0 software update.
    So it's not just 9.0.2 with problems, but potentially all iTunes users, or at least version 9 users.

  • Downloaded Firefox 4 now unable to attach anything to E Mails

    I have downloaded Firefox 4 as per your E Mail and am now unable to attach anything to my E Mails. I am also getting everytime I log on a Message from McAfee saying Firefox is trying access my internet Allow, Allow once, or Block. I have therefore gone back to Firefox 3.6.

    Thank you for your suggestion. Did a full scan. Found 24 tracking cookies, but nothing else. Still cannot access google.com on IE or Firefox. So strange. I was just checking my g-mail and searching with google a week ago. Do you have any other suggestions? I have done everything microsoft suggested as well as some of the other Firefox and IE users. I just don't know what to do at this point. Could it have anything to do with IE9 version or Firefox 7 version? Someone suggested that was the problem. Can I go back to IE7 and solve the problem?

  • Dequeuing the message using Non Sys user

    Hi all,
    I've implemented Advanced Queuing in one Schema(Say "temp") which has AQ privileges. My requirement is Asynchronous Communication between two programs.
    In One program i've DBMS_AQ.ENQUEUE to put the message onto the queue. The user "temp" enqueued the message.
    I've a anonymous PL/SQL callback procedure registered to dequeue the message. but while dequeuing the message, the user is "SYS". Immediately after dequeuing the message, i've a call to the second program which uses some views. In my application we have dba policies applied to these views. So only temp user can access those views where SYS user doesnt have any access to these views.
    we already have one solution i.e., giving access to SYS user also but this will result in some other security concerns for the application
    Another solution could be dequeuing the message with "temp" user (NON sys user).
    So i would like to know whether it is possible to dequeue the message with NON-SYS user ? i've tried searching the dequeue options and message properties but couldn't get anything..
    can anyone help me in solving this problem??

    Hi paul,
    Thanks for the response :). I've tried this already but still the dequeue user id "SYS". i'll explain you in detail with the code.
    I've create queue table and queue with the following code :
    create or replace TYPE temp_msg_type as object (seq_no NUMBER(10),
    req_type varchar2(6))
    begin
    dbms_aqadm.create_queue_table(
    queue_table => 'test_queue_tab',
    queue_payload_type => 'temp_msg_type',
    multiple_consumers => true);
    dbms_aqadm.create_queue(
    queue_name => 'test_queue',
    queue_table => 'test_queue_tab');
    dbms_aqadm.start_queue(
    queue_name => 'test_queue');
    end;
    After this an Agent is subscribed to this queue.
    begin
    dbms_aqadm.add_subscriber(
    queue_name => 'test_queue',
    subscriber => sys.aq$_agent('recipient', null, null));
    end;
    Then registered an PL/SQL callback procedure to this queue.
    begin
    dbms_aq.register(aq$_reg_info_list(
    aq$_reg_info('test_queue:RECIPIENT',
    DBMS_aq.NAMESPACE_AQ,
    'plsql://notifyCB_prd',
    HEXTORAW('FF')) ) ,
    1);
    end;
    The follwing procedure will enqueue the message. in the below code before i enqueue it i am inserting the current sessions' user, it got printed as "SCOTT".
    create or replace procedure enqueue_msg_prd( O_status_code IN OUT varchar2 )
    as
    enqueue_options dbms_aq.enqueue_options_t;
    message_properties dbms_aq.message_properties_t;
    message_handle RAW(16);
    message temp_msg_type;
    begin
    --enqueue_options.visibility := DBMS_AQ.IMMEDIATE;
    message := temp_msg_type(112, user);
    O_status_code := 'S';
    dbms_aq.enqueue(queue_name => 'test_queue',
    enqueue_options => enqueue_options,
    message_properties => message_properties,
    payload => message,
    msgid => message_handle);
    end;
    The following procedure will dequeue the message. this procedure will be automatically triggered when i commit the enqueue transaction since there is anonymous callback procedure registered for this queue. In the below code after i dequeue it i am inserting the sessions' user, it got printed as "SYS".
    create or replace
    procedure notifyCB_prd( context raw,
    reginfo aq$_reg_info,
    descr aq$_descriptor,
    payload raw,
    payloadl number)
    as
    dequeue_options dbms_aq.dequeue_options_t;
    message_properties dbms_aq.message_properties_t;
    message_handle raw(16);
    message temp_msg_type;
    begin
    dequeue_options.msgid := descr.msg_id;
    dequeue_options.consumer_name := descr.consumer_name;
    --execute immediate 'conn  session set current_user= scott';
    DBMS_AQ.DEQUEUE(
    queue_name => descr.queue_name,
    dequeue_options => dequeue_options,
    message_properties => message_properties,
    payload => message,
    msgid => message_handle);
    insert into temp values(message.seq_no,user);
    commit;
    end;
    Even i queried the aq$test_queue_Tab view. in this view, value in deq_user_id is "SYSS"
    is there any way to get the users session as 'SCOTT' ??

  • I am unable to hear anything on my iphone 4 nor can the person i call hear anything when i speak - I think that my ear piece and mike have both got magnetised how do fix the problem

    I am unable to hear anything on my iphone 4 nor can the person i call hear anything when i speak -
    I think that my ear piece and mike have both got magnetised how do fix the problem
    Please help

    I have the same problem!! It lead to many other problems with my phone
    I just arranged a repair with apple. Yes its inconvenient to be without a phone for a while but if your phone is in warranty its good to get it looked at professionally!

  • I've send from Lightroom 5 photos in Jpeg format to my desktop that arrive as Archive and I'm unable to do anything with the photos.  I want to put them in a folder but can't. It seems problem is in them being in 'archive'.  Any suggestions?

    I've exported photos from Lightroom 5 from my laptop to my wife's desktop.  The photos arrive as Archive and she's unable to do anything with them, such as catalog them in an IPhoto folder with other photos.  Is there an adjustment I need to make when exporting from Lightroom 5 so we can avoid this problem? Thank you.

    Sorry - this is the iPhoto for Mac support forum - Your question does not involve iPhtoo for the Mac in any way - you need to contact Adobe or use an Adobe LR support forum for LR support
    Afar as iPhoto is concerned it can import JPEGs and TIFFs - plus a few others - I have no idea what an archive format is and neither does iPhoto
    File Formats
    Native RAW import and editing of images from leading digital cameras and camera backs
    (See RAW support page for model listing.)
    .ARW, .CR2, .CRW, .MOS, .NEF, .RAF, .RAW, .SRW, .TIF, .OLY, .FFF, .3FR, .DNG1
    Compatible with all major still image formats
    JPEG, GIF, TIFF, PNG, PDF, PSD2
    LN

  • Issue with cisco acs 4.2.Users unable to login aaa client but after restarting group policy able to login

    issue with cisco acs 4.2.Users unable to login aaa client but after restarting group policy able to login

    issue with cisco acs 4.2.Users unable to login aaa client but after restarting group policy able to login

  • A little white box appears in my browser window, and I am unable to do ANYTHING in Firefox, I can't even close the window.

    I am using Mac OSX 10.6.8, so I know that Firefox should be working. The very first time I downloaded Firefox, I was able to use it for about 20 minutes, and then I kept getting some kind of white box (just small) that would pop-up over top of the search bar. Once this box showed up, I was unable to do anything in the browser...I couldn't close it, search, choose "file"...NOTHING. I have uninstalled and reinstalled it multiple times, and it still doesn't work.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • My iTunes won't recognize my iPod 3GS!!! HELP! I had recently updated my iTunes and now upon plugging in my iPod iTunes comes up with a error message.  Leaving me unable to sync anything! :( HELP!

    My iTunes won't recognize my iPod 3GS!!! HELP! I had recently updated my iTunes and now upon plugging in my iPod iTunes comes up with a error message.  Leaving me unable to sync anything! HELP!

    What is the exact error message you are receiving?
    B-rock

Maybe you are looking for

  • System and sysdba accounts are locked

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

  • Progressive payment term to Vendor

    We have a requirement of payment term to vendor is by progressive payment depend of the percentage of completion. The vendor will bill us 10% w 10%, then when delivery done by 30%, it will bill us another 30% so on so forth. What payment term to be s

  • Adding New Text Comment in Traditional Chinese shows Error

    When adding New Text Comment in Traditional Chinese , it pops up a window with "Error, but instal the latest version of Traditional Chinese Language Support Package may fix the error", but I have installed the latest one (Adobe Acrobat Reader DC 2015

  • Confused by multiple versions of Creative Cloud apps

    I now have Photoshop CC, Photoshop CC (2014), Muse CC, and Muse CC 2014 installed on my machine and listed in my creative cloud applet. The Creative Cloud applet says they are all up to date. I am presuming that the versions with (2014) appended to t

  • Troubles with mac book pro tv display

    We have a Sony tv and our new Mac Book Pro is connected with an HDMI cable and adapter specifically ordered for this set up. when It's connected I get the Solar system page (the one that comes standard with the laptop) I have a diffrent wall paper up