Set password when login as oracle from db server / as sysdba

10.2.0.3.0
Hi, we have a linux db server and oracle user (group dba and oinstall) can login / as sysdba without giving any passwords.
i have created orapwd file and changed REMOTE_LOGIN_PASSWORDFILE=exclusive in init.ora file but still, if someone is in the dba group he can connect without providing a password.
Can you please tell me how can i succeed for all OS users to be asked for password even if they belong to dba group?
thank you

The behavior you describe is normal and experted. By default members of the Oracle Home directory structure owner group can log on as sysdba and can avoid the need to use a valid password since sysdba users actually log in as user sys.
If you do not want to allow this then you should have installed Oracle with a group other than DBA such as oinstall and then not assigned any OS users to this group.
HTH -- Mark D Powell --

Similar Messages

  • What's the username & password when i connect device from cisco network assistant

    what's the username & password when i connect device from cisco network assistant?
    http://i200.photobucket.com/albums/aa273/wallfire02/Capture_zpsa8f5fd2b.jpg

    Although that may be true...
    If I click the "Connect As..." button it asks for a username and password.
    I've experienced connecting to other user's computers on a network.  To gain access to their computer, I just use their username and password.  I've done this before to transfer files without using a flash drive or burned disk. 
    I'm trying to find out what I'm supposed to log on as to gain access to this device...
         My point is that yes, I'm connected to it by wifi.  Otherwise it wouldn't show up; ha-ha! 
    Is my point really that hard to grasp?

  • How to remove Oracle from my server?

    I was testing with Oracle Gateway and tried installing it in the same home as my existing Oracle Home which is Oracle 10g.
    Now, my Oracle is corrupted. Its just a testing server. I was half way deleting the Oracle files and now I am unable to remove the remaining files. I stopped all the services related to Oracle and its still the same.
    How should I remove Oracle from my server now.
    Please guide me.
    Thanks

    If you are window platform restart the machine and remove the remaining files. In case if remaining file are not get delete rename and later drop after some time .
    If you want to delete the oracle on window follow the below steps :
    start-->>all program-->> oracle -->> installation product -->>click on universal installer -->> de-install product -->>click on ora-home -->> click on remove button.
    Hope this help you
    --neeraj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • No option to set password for login

    my macbook doesn't ask me for my password when i log on, and when i go to my system preferences and go under security, there is no option for me to set the password, that is, there is no button to click that allows me to disable automatic login. help?

    Password options are under Accounts (not security).  Select the user and then click on login options.

  • How to Hide password when invoking sql plus from command promt?

    When i try to open sql plus in command prompt window and enter the sqlplus command follwed by username/password@connection string, the password is not hidden.
    How do I get it to show **** instead of displaying password characters out?
    Also, what is the command to clear screen : when I try cls or clear screen, I get a windows memory exception of somekind and the only option there is to kill the command window.
    Any tips on getting around this?
    Thanks a lot for your time and help.

    user8848256 wrote:
    Can you please give more details on how to not enter password when calling sqlplus from command window like you are saying?
    I tried this :
    sqlplus username/ @connection string -->Hit Enter : it asks for password but does not recognise the connectionstring to connect to.
    sqlplus username/ -->Hit Enter: It does same thing again.asks for password but gives tns adapter error after the password is entered.Leave out the slash:
    sqlplus username@connect_string

  • Use of Open and close data set in to pick up files from application server

    Hi,
    As per my earlier posts i m making a programm which will pick excel sheet from application server and make auto PR by bapi and this all process will be handle by background processing (SM36, SM37). My concer is all proces are working fine but my files are not been picked by application server , when run on my own machine everything is working fine.I never used OPENDATA SET command before , so i have no idea how it will be used , can anyone provide me details with my set of codes where it should be used ....
    sou_dir_name = 'Y:\Sucess\'.
    tar_dir_name = 'Y:\destination\'.
    Open dataset sou_dir_name for input in text mode encoding default.
    if sy-subrc eq 0.
       do.
           read dataset sou_dir_name into file_table.
       if sy-subrc ne 0.
         exit.  " end of file.
    enddo.
    endif.
    CALL FUNCTION 'TMP_GUI_DIRECTORY_LIST_FILES'
      EXPORTING
        DIRECTORY  = sou_dir_name
        FILTER     = '.'
      IMPORTING
        FILE_COUNT = file_count
        DIR_COUNT  = dir_count
      TABLES
        FILE_TABLE = file_table
        DIR_TABLE  = dir_table
      EXCEPTIONS
        CNTL_ERROR = 1
        OTHERS     = 2.
    IF SY-SUBRC <> 0.
    ENDIF.
    loop at file_table into wa_file_table.
    clear  :  strr , str1 , str2 , str3 .
      strr = wa_file_table-PATHNAME .
      concatenate sou_dir_name strr into str1 .
      concatenate tar_dir_name strr into str2 . " success
      concatenate tar_dir_name1 strr into str3 .         " failed
    FILE = STR1 .
    *start-of-selection.
    *&  Function For Retrieve Data From Excel
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
      EXPORTING
        filename                      = FILE
        i_begin_col                   = col_start
        i_begin_row                   = row_start
        i_end_col                     = col_end
        i_end_row                     = row_end
      tables
        intern                        = excel_bdcdata
    EXCEPTIONS
       INCONSISTENT_PARAMETERS       = 1
       UPLOAD_OLE                    = 2
       OTHERS                        = 3.
      IF sy-subrc NE 0.
    WRITE : / 'File Error'.
    EXIT.
    ENDIF.
      loop at excel_bdcdata.
        translate excel_bdcdata to upper case .
        move excel_bdcdata-col to it_index.
        assign component it_index of  structure  wa_file to <fs> .
        move excel_bdcdata-value to <fs>.
        at end of row.
          append wa_file to it_file .
            clear wa_file.
          endat.
      endloop.

    Parsing XML data:
    http://help.sap.com/saphelp_nw04/helpdata/en/86/8280ba12d511d5991b00508b6b8b11/frameset.htm
    or alternatively check out ABAP online help for "CALL TRANSFORMATION".
    For creating the material master look at BAPI_STANDARDMATERIAL_CREATE.
    Thomas

  • Error when execute a package from SQL Server Agent

    We have the next problem:
    When we execute a package from a Job of SQL Server agent, it shows the success messege, but reviewing the results, the package didnt do all the tasks.
    When we run it mannually by MSIS the package, it shows the success message and it works fine.
    The workflow of the package is :
    1) Shrink the databases (executing a sql file)
    2) Backup the databases (Back up Database task of MSIS)
    3) Rename the files to .BAK extension (by the Foreach loop container and fyle system task)
    4) Execute command to compress the it (by a .bat)
    5) Move the compress file to another location  (by another Foreach loop)
    Manually run correct, but when is a a SQL AGent Job that execute the package it does only the first 2 steps.
    we are ussing Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64) Jun 17 2011 00:54:03 Copyright (coffee) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) 
    We are using a user with administrator privilegies
    Cheers 

    Can you check if account running package has proper access. You may need to define a proxy account for that.
    See
    http://www.databasejournal.com/features/mssql/article.php/3789881/Proxy-Accounts-in-SQL-Server.htm
    http://gqbi.wordpress.com/2014/01/30/setting-up-a-proxy-account-to-run-sql-server-integration-services-ssis-2012-packages/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Keep receiving 3333 when acquiring new license from license server

    Hi all
    I find error 3333 will always be dispatched by DRMManager if I acquire a new license from the license server. I'd appreciate if anyone could help explain and show me how to fix or get around the issue. Here is the detail:
    User rents a title.
    When he plays it for the first time, the license server issues a voucher will 24-hours playback window set.
    Client starts the playback, the playback window starts count-down.
    After 24 hours, the voucher gets expired.
    User rents the same title again and he goes to play it again on the same computer.
    Client tries to load the local voucher and finds it is expired.
    Client tries to re-load the voucher from the license server again.
    The license server issues a new voucher for the same title with the same parameters set (see below).
    DRMManager dispatches 3333.
    3333 will be dispatched again if goes to #7 again.
    If I remove all local vouchers by using DRMManager.removeDRMVouchers(), the playback would start after re-acqiure the voucher from license server.
    The document metions to "re-acquire the voucher from server if 3333 is received". But it seems not working in my case.
    BTW, here is how we set the parameters when license server issues a voucher for a new rental title (never played before):
    license caching during: 24hour
    playback window: 48hour
    Thanks.

    Hi Hirosh
    Thanks for your help. It's good to know there is a way to hanle this case (even in the license server side).
    The document metions "re-acquire the voucher from server if 3333 is received" is the Flash Runtime Error document. But after double check, I find the suggestion is for error 3332. It's my mistake and I'm sorry.
    Do you know where I can get the support for implementing "issuing new voucher for re-renting same video"? If it's not in the reference implementation where I can find it.
    Thanks.

  • HTML Body is lost from when it is read from Exchange Server 2007 to siebel 7.7.2.12

    Hi
    An HTML Email body sent through any email client. If the body type is HTML, when it comes through POP3 Exchange server 2007 and Siebel driver reads the mail it looses the Body formatting. I have already tried with the following options
    1) Adminstration Communication -> Communication Drivers and Profiles -> Internet SMTP/POP3 Server -> Driver Parameters -> Create Plain Text From HTML to True - This did not help
    2) Adminstration Communication -> Communication Drivers and Profiles -> Internet SMTP/POP3 Server -> Driver Parameters -> Convert Incoming To Plain Text to True - This did not help
    Both the combination did not help
    We also tried changing the POP3 properties at Exchange server level, where any email that is coming will always gets changed to plain text or HTML even that did not help.
    Any suggestions or recommendations are highly appreciated.
    Thanks
    Bhanu

    Hi,
    I also think it's caused due to the software confliction, to verify this, please perform a clean boot:
    Log on to the computer by using an account that has administrator rights.
    Click Start, type msconfig.exe in the Start Search box, and then press Enter to start the System Configuration utility.
    Note If you are prompted for an administrator password or for confirmation, you should type the password or provide confirmation.
    Collapse this imageExpand this image
    On the General tab, click the Selective startup
    option, and then click to clear the Load startup items check box.  (The
    Use Original Boot.ini check box is unavailable.)
    Collapse this imageExpand this image
    On the Services tab, click to select the Hide all Microsoft services check box, and then click
    Disable all.
    Collapse this imageExpand this image
    Note This step lets Microsoft services continue to run. These services include Networking, Plug and Play, Event Logging, Error Reporting, and other services. If you disable these services, you may permanently delete all restore points. Do not
    do this if you want to use the System Restore utility together with existing restore points.
    Click OK, and then click Restart.
    If there's no issue in clean boot, I suggest you double check the settings or the better way to contact the developer of the softwares to do further research on this issue.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • IPhone 5 mail set up as IMAP - deletes mail from ISP server

    I have had my iPhone 5 for 3 months.  I set up one of my email accounts with my ISP (Charter) as IMAP and the phone is behaving as expected.  I have it set to show 50 recent messages which is fine; I assumed that I could always login to my Charter account if I was away from home and needed something older.  Outlook on my PC is behaving as expected and I can open unopened email from a long time ago.  But I just found that login to my Charter account through a browser, there are only about 100 messages in my inbox, and there is nothing in my sent folder since the day before I got my iPhone. 
    I would like for nothing to get deleted from Charter's server unless I delete it using Outlook on my PC or accessing my Charter account through a browser.
    Is there any way to do this?

    The folders that I see on the phone don't match up to the folders I have set up in Outlook.  I much prefer to handle the mail there.  I just want to be able to see the mail on the phone and not have the phone be the boss of the server.  I now understand that is really not possible.  I will try to remember to increase the number of messages retained on the phone before I travel.  (concerned that they will start being deleted from the server before I download them to the PC via Outlook.)
    Thanks for your replies.

  • Horrible, irresponsible default setting for Thunderbird re: deleting mail from POP server

    Yesterday I downloaded and booted an ISO of Linux Mint 16 because I was curious about the current state of Linux and whether it would make sense to finally switch from Windows. The OS booted and ran without any major issues and seemed generally well-polished.
    Then I ran Thunderbird and did a quick setup of my POP3 e-mail account (provided by GoDaddy) using the default configuration, which I assumed would be appropriately configured for someone who wanted to give Thunderbird a test-run. I waited a few minutes while Thunderbird downloaded all the e-mail messages from GoDaddy's server and then I spent some time poking around with the program. Seemed fine.
    Unfortunately, I did not realize until after rebooting my system into Windows that Thunderbird was configured by default to delete all my e-mail messages from the server upon download, and I was shocked to find that I could no longer access my old messages via my Android phone. That's several months worth of important e-mails that Thunderbird unceremoniously wiped from my mail server without so much as a warning.
    This is a horribly irresponsible way to configure Thunderbird's default settings and I'm sure I'm not the only person who has gotten burned in this manner. Needless to say it has soured me not just on Thunderbird but on Linux in general as a desktop OS. As an attorney I frequently need to review previously-read e-mail messages in my account and your mail client's default settings have caused me a major inconvenience. I strongly suggest that you alter Thunderbird's default configuration to leave downloaded messages on the server in order to avoid upsetting users in the future.

    Thank you for your suggestions, but I had booted Mint directly from the DVD and had not installed it. I was simply testing it out. Thunderbird was remarkably easy to configure - I just gave it my e-mail address, name, and password and it figured out the rest. But nowhere did it indicate that it would remove downloaded messages from my mail server by default, hence my shock and dismay.
    I sincerely hope that somebody within Mozilla will acknowledge that this is a problem and change the default settings.

  • Mail crashes when it retrieves mail from POP server

    I'm using Mail version 2.1.1 on OS X 10.4.10. I have two e-mail accounts each on a POP server. I've been using Thunderbird, but Mail does a few things that Thunderbird doesn't. The only problem is that if there are a lot of messages to download, Mail just crashes. As an example, I have a good 600 messages in one of my mailboxes (because I don't like to delete messages from the server if I have room to keep them there). I just added the account to Mail and it wants to download every single message on the server, so it gets about 5 to 50 messages downloaded and then crashes. I don't really need it to download all those messages, so is there a way to tell Mail to only download messages that I get after the date that I add the account? or will I just have to use IMAP?

    Does Mail really crash (i.e. quit unexpectedly) or does it freeze (i.e. become unresponsive)?
    You cannot prevent Mail from trying to download all the messages from the POP server, but Mail shouldn’t crash when downloading them either...
    Try the following to check whether the junk filter could have a bearing on it and post back with your observations:
    1. Either tell Mail to go offline immediately after opening it, or shut down your Internet connection and open Mail afterwards.
    2. Go to Preferences > Junk Mail and disable junk mail filtering.
    3. Go online again. Does Mail crash now?
    Another thing that may cause Mail 2.x to crash while retrieving mail is using Address Book smart groups in rules and/or in smart mailboxes. The only workaround I know for that is getting rid of any rules and smart mailboxes that make use of AB smart groups.

  • Incorrect FileVault Password on login after update from OS X 10.7.4 to 10.7.5

    Today I encountered a minor bug in the update to OS X 10.7.5, found the solution and thought it might be helpful to others:
    After updating my MacMini 2007 (running OS X 10.7.4, with Server services active) to OS X 10.7.5,
    the machine did its normal-post-update restart routine.
    When prompted for the FileVault 2 password, the password I entered was incorrect. I tried several times without success.
    Then I entered the password using the keys of the US-keyboard layout instead of my the german keyboard layout that I actually have.
    Success.
    I live in germany, use a german keyboard, BUT have my system language in english. No clue if that's what confused OS X.
    Bad thing is that there is no indication whatsoever to make you aware of it, no country flag in the corner, no regular text field where you can see what you type.
    Anyway, it was only for the first restart, after that it was back to normal.
    Already posted an Apple Feedback.
    Maybe this post helps some people with the same problem.
    One more thing, the same happened here with the 10.7.4 Install ESD starting from external drive, when I tried to unlock my internal disk via Disk Utility. The password dialog sets the input source ALWAYS to US-keyboard layout, and on the top left corner it can't be changed... a bit annoying when you have millions of special characters in your disk password. But at least its shown in the top right corner... thats why I figured out the problem with my password after the update to 10.7.5, otherwise I would have been quite clueless and probably ended up erasing the whole disk.
    Cheers everyone!

    Hi!
    Thank you for posting this!
    I can verify this issue.
    Search for "us keyboard layout" and you can bring up a picture that will help you find special characters.

  • Old Apple ID email/password when trying to restore from iCloud backup

    I've seen variations of this question being asked previously, but I haven't seen any real solutions provided (or any that have worked).
    About a year or so ago, I changed the primary email on my Apple ID from an old email address I rarely-to-never use anymore.  Ever since then, when I try to upgrade a device or restore from back-up, I get asked to enter the password from my old email address.  Since I this is no longer the address I use, even if I enter the password for my current Apple ID, it says it's incorrect and won't let me proceed any further.  I have tried re-adding this email to my Apple ID account (doesn't work), I've tried making that email my primary Apple ID again (doesn't work and causes the same issue to occur with restoring apps I've downloaded since changing the Apple ID email), and I've tried just skipping that step in the restore process, but then it doesn't restore all of my apps.
    Seems odd to me that my Apple account doesn't use some sort of unique identifier for the Apple ID accounts as a whole instead of trying to recognize purchases based on whatever email someone was using at the time.
    Anyway, if anyone knows of a way to fix this, I would be forever grateful!  I just got a new device today and would love to restore from backup smoothly without losing any of my data that might be in the apps attached to that old Apple ID email.
    Thanks!

    All you need to do is restore the iphone in itunes as new
    and then set up as new
    after this is done
    then you can restore from itunes back up with out any error!!
    -Johnny

  • Permission Denied on Syslogins.password when SQL2K to Oracle

    I am getting the following error when running the OMWB. Any help is appreciated.
    Failed to load Source Mode.[Microsoft][ODBC SQL Driver][SQL Server] SELECT permission denied on column 'password' of object 'syslogins', database 'master', owner 'dbo'
    I login as SA account and select the database 'abc' to migrate.
    Thanks,
    Chida

    I am trying to set this to the Mac (Admin) owner. The folder that is being shared over the network via samba was created on Mac OS

Maybe you are looking for

  • Ok. This is starting to get annoying.

    I have had my silver 80gb iPod Classic for quite awhile now and I have LOVED it. It's treated me extremely well. I've never once had a problem getting music onto it, editing anything on it, absolutely no problems what-so-ever. Until recently. I plugg

  • R/3-XI-SRM(SUS)

    Dear Friends We are working with SRM based scenario with given details <b>Software Component:  SAP SRM SERVER 5.5 Namespace : http://sap.com/xi/SRM/SupplierEnablement/Global Message Mapping name: MM2SUSGoodsReceipt</b> When we post the idoc from r/3

  • How do you fix the footer?

    I need help fixing the footer. I centered the line of text inside a 50px H box footer on master A. Tried unchecking the sticky footer in the site properties. Also checked it as footer item. The line of text drops down 50px below the bottom of page. n

  • Harden Server 2008 R2 Terminal Services

    I found an article to harden Terminal Services on Windows 2008 R2,http://technet.microsoft.com/en-us/library/cc264467.aspx, but there are a couple of things that I am not clear about.  As I am working through this in my test environment I had a coupl

  • Making JTable columns 2- n scrollable, not the first column, how?

    Id like for my JTable's first column to always be visible, and columns 2->n to be scrollable. The table also follows the sortable table model found from the swing examples...so if the user sorts any of the columns, all the other columns should sort a