Oracle 11G - set id password to not expire

Hello, I've created an Oracle 11G database. The default on passwords is to expire every 180 days. I need to create an account that batch processes can use (for application code) which will not expire. How do I set a password on a user id to not expire? Maureen

Maureen Blackford wrote:
Hello, I've created an Oracle 11G database. The default on passwords is to expire every 180 days. I need to create an account that batch processes can use (for application code) which will not expire. How do I set a password on a user id to not expire? MaureenLook at PROFILEs.
And rethink your goal. The longer a password is allowed to live, the more opportunity for it to become exposed. If you care at all about database security, never allow a password to have unlimited life. Our end users have 180 life, my internal administrative passwords have 90 life.

Similar Messages

  • Oracle 11g or higher client is not installed or not set to Primary Oracle..

    Hi all,
    I have installed oracle 11g client on my machine. It connecting fine with the server throuhg sqlplus but when i connect my application that is developed in power builder, it prompts an errror message stated 'Oracle 11g or higher client is not installed or not set to Primary Oracle Home'. I have tried different solutions from different posts over the internet but colud not get fruitfull results.
    Please help me out in this regard to continue...
    Thanks & Regards,
    Adil Mukhtar

    As already said, this looks like a powerbuilder issue, related to how it "finds" Oracle client/oci libraries.
    Assuming this is on Windows, you could use Process Monitor from Sysinternals to watch what your app does (e.g. where it looks for dll's). It's a great troubleshooting tool: http://technet.microsoft.com/en-us/sysinternals/bb896645
    Google provides some results with similar issues. Maybe you have tried most of it already, but at least as a reference for others: http://lmgtfy.com/?q=powerbuilder+%22oracle11g+or+higher+client+is+not+installed%22

  • Forgot my oracle 11g username and password

    hi all
    forgot my oracle 11g username and password , how can i recover them although i tried multiple ways as using / as sysdba and it didnot work .

    Please in addition to your own words, post full copy-paste of command line sessions including actual error messages (e.g. cannot access database is not an actual error).
    Try from a command window (cmd), assuming Windows platform:
    sqlplus / as sysdba
    If it says "Connected to idle instance.", try:
    SQL> startup
    Did you just install XE or was it working before and now suddenly it doesn't? (what changed in the latter case?)
    Edited by: orafad on Nov 24, 2012 7:52 PM

  • Please help. After a recent iOS7 update my iMessages are gone and I can't get it back, nor can I log into my Apple ID. MY PASSWORD is not expired. iPhone 4.

    Please help. After a recent iOS7 update my iMessages are gone and I can't get it back, nor can I log into my Apple ID. MY PASSWORD is not expired. iPhone 4.

    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...

  • ORACLE 11G XE INSTALLED SUCCESSFULLY BUT NOT DISPLAYING IN BROWSER

    WINDOWS 7, GOOGLE CHROME, ORACLE 11G XE IS INSTALLING SUCCESSFULLY BUT WHEN I START IT IN THE BROWSER IT IS NOT DISPLAYING IN THE BOTTOM IT IS SHOWING WAITING FOR 127.0.0.1.....
    WHEN I GO TO RUN SQL COMMAND LINE AND WRITE CONNECT AND GIVE USER NAME AND PASSWORD IT IS SHOWING CONNECTED

    Welcome to the forums - there is no need to SHOUT.
    Pl identify the version of Windows 7, along with whether it is 32-bit or 64-bit. Do you meet all of the software requirements in the Install Guide ? http://docs.oracle.com/cd/E17781_01/install.112/e18803/toc.htm
    Have you completed all of the steps in the guide ? If so, did the steps complete without any errors ?
    HTH
    Srini

  • ORACLE 11G R1 CHECKING NETWORK REQUIREMENTS NOT EXECUTED

    Hi all,
    Im trying to install Oracle 11g R1 on Oracle Enterprise linux 5 so while it was checking for network requirements it showed me an requirement here is the short message :
    Checking network configuration requirements ...
    check complete The overall result of this check is : not executed
    Recommendation : oracle supports installations on systems with DHCP-assigned public ip addresses. however the primary network interface on the system should be configured withstatic ip addresses in order for the oracle software to function properly. see the installation guide for more details on installing the software on systems configured with DHCP.
    =====================================================================================================
    So what should i do ? continue installation or no , can someone guide
    Help me please
    Thanks a lot

    Thanks PavanG for your information
    So i m gonna proceed to the installation and let you informed about that ...

  • Password should not expire

    Hi,
    I have profile. its having PASSWORD_LIFE_TIME 90 days, same profile is assigned to all other users. I want to change the password life time unlimited for only one user.
    Please advise me.
    Thanks... Bakser

    Pavan - a disciple to Oracle wrote:
    it is not possible to change profile for only one user as it is common for all.I think you need to clarify that. Everything about a specified profile will be enforced for all users to whom that profile is assigned. There is nothing that prevents you from creating multiple profiles, each with different properties (like password expire time) and assigning different profiles to different users. Much like assigning different roles to different users. Except that, unlike roles, a given user is assigned exactly one and only one profile.

  • Oracle 11g stored procs: SELECT ALL_ARGUMENTS not returning certain values in certain cases

    I'm doing a select on the ALL_ARGUMENTS like:
    SELECT count(*) FROM all_arguments WHERE owner LIKE 'MySchema' ESCAPE '/' AND object_name LIKE 'MyStoredProc' ESCAPE '/' AND package_name LIKE 'MyPackage' ESCAPE '/';
    Sometimes, after connecting to the DB after a certain period of time, I get a result = 0, althought the Stored Procedure is there. Immediatelly after that I retry, and I get result = 2.
    Why is that? Does the SELECT recompile the stored proc?

    I'm surprised that you get anything if you use that query.
    Oracle considers object names to be uppercase unless the name is enclosed in double quotes. So there would be no schemas with a name 'MySchema' since the name would actually be 'MYSCHEMA'.

  • Expired user password - oracle 11g

    hello,
    how can I turn off stupid user password expiration ?
    I have used this sql:
    ALTER PROFILE DEFAULT LIMIT
    FAILED_LOGIN_ATTEMPTS UNLIMITED
    PASSWORD_LIFE_TIME UNLIMITED;
    How can I check if user password will not expire ?
    How can I check if stupid default password expire option is turned off ?
    How can I check when user password will expire ?
    How can I disable passsword expiration for specified user ?
    p.s. sorry for word "STUPID", in my opinion this option generate more problems (big and huge) than benefits. houpfully server still keeping authentication sessions
    Edited by: Dlugasx on Sep 14, 2009 11:40 PM

    Hi,
    How can I check if user password will not expire ?
    select LIMIT from dba_profiles where RESOURCE_NAME ='FAILED_LOGIN_ATTEMPTS'
         and PROFILE = (select profile from dba_users where username = 'SCOTT');Replace scott with user you are interested in , if it is unlimited or no rows selected it means it wont expire.
    How can I check if stupid default password expire option is turned off ?
    same as above
    How can I check when user password will expire ?
    same as above
    How can I disable passsword expiration for specified user ?
    select profile from dba_users where username = 'User you are interested in';
    ALTER PROFILE <name of the profile from above query> LIMIT
    FAILED_LOGIN_ATTEMPTS UNLIMITED
    PASSWORD_LIFE_TIME UNLIMITEDRegards
    Anurag Tibrewal

  • Get Password Not Expire From Script

    I'm currently working with this script and I would like to add password does not expire in the .csv to either true or false if that box is checked. Can you guys help?
    $NumDays = 0
    $LogDir = ".\Users-Last-Logon.csv"
    $currentDate = [System.DateTime]::Now
    $currentDateUtc = $currentDate.ToUniversalTime()
    $lltstamplimit = $currentDateUtc.AddDays(- $NumDays)
    $lltIntLimit = $lltstampLimit.ToFileTime()
    $adobjroot = [adsi]''
    $objstalesearcher = New-Object System.DirectoryServices.DirectorySearcher($adobjroot)
    $objstalesearcher.filter = "(&(objectCategory=person)(objectClass=user)(lastLogonTimeStamp<=" + $lltIntLimit + "))"
    $users = $objstalesearcher.findall() | select `
    @{e={$_.properties.cn};n='Display Name'},`
    @{e={$_.properties.samaccountname};n='Username'},`
    @{e={[datetime]::FromFileTime([int64]$_.properties.pwdLastSet)};n='Password Last Set'},`
    @{e={[datetime]::FromFileTimeUtc([int64]$_.properties.lastlogontimestamp[0])};n='Last Logon'},`
    @{e={[string]$adspath=$_.properties.adspath;$account=[ADSI]$adspath;$account.psbase.invokeget('AccountDisabled')};n='Account Is Disabled'}
    $users | Export-CSV -NoType $LogDir

    Hi,
    Is there a reason you're not using the AD module?
    EDIT: Example:
    Get-ADUser -Filter * -Properties PasswordLastSet,LastLogonDate |
    Select Name,SamAccountName,PasswordLastSet,LastLogonDate,Enabled |
    Export-Csv .\userDetails.csv -NoTypeInformation
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Oracle 11g Vs previous version

    Hi,
    can someone please explain Oracle 9i/10g Query Execution vs Oracle 11g Query Execution features for some of the new statements introduced in 11g using CBO.
    How the SQL vs PL/SQL caching using Oracle 11g ?
    Can we use Optimization Hints in Oracle 11g Queries ? useful or not w.r.t performance and add directions to the Developers.
    Any Improvement on XML parsing?
    Thanks

    Hello there,
    Are you aware that this forum is for users of Oracle OLAP?
    It sounds to me like your questions would be better suited to the [General Database Forum|http://forums.oracle.com/forums/forum.jspa?forumID=61]
    Stuart

  • Any error come oracle 11g r1 n 11g r2 installed in same ORACLE_BASE

    Hello ,
    if I had installed oracle 11g r2 in same oracle base where oracle 11g r1 was already existing,,,ll there b any problem going to occur .

    Sahil Soni wrote:
    Thanx Mr. Bakker ,
    but as I had installed oracle 11g r1 and oracle 11g r2 in same ORACLE_BASEEach installation should be in its own directory, indicated by ORACLE_HOME. Normally, the two ORACLE_HOME directories would be under the same ORACLE_BASE directory.
    my oracle 11g r1 database was not getting up but oracle 11g r2 database was connecting properly using sysdba till yesterday and today i found that oracle 11g r2 database is also not able to coonect to sysdba and giving me error
    ORA-12547: TNS:lost contact.
    What is the reason behind this?There could be all kinds of things going on here. What is your OS? What is the value of the ORACLE_HOME and ORACLE_SID environment variables for the process trying to connect? Are you trying to connect from the same machine that is running the database? EXACTLY how are you trying to connect?
    Best if you log on to the server as an account that is a member of the DBA (ORA_DBA if Windows), then fire up a command prompt. Copy the following and paste it into your command prompt:
    env | sort
    sqlplus / as sysdbaThen copy the results and paste back here.

  • Does Headstart 6.5.4 supported in Oracle 11g R2?

    Hello,
    In my application I'm using the following components
    CM SDK 9.0.4.2.26
    Head Start 6.5.4
    Can somebody suggest me is Head Start 6.5.4 supported in Oracle 11g r2 please? If not how to upgrade it to JHeadStart.
    Kind Regards,
    Kam

    Headstart and JHeadstart are different tools. Headstart is a development accelerator for Oracle Designer/Forms, JHeadstart is a development accelerator for Oracle JDeveloper/ADF.
    The prerequisites of Headstart are
    * Oracle 10g database in runtime environment (where CDM RuleFrame is used)
    * Headstart Oracle Designer 10g, patch 6.5.4.0
    * Oracle Designer 10.1.2.0.2 or above.
    * Oracle 10g Developer Suite (10.1.2.0.2)
    I don't know if Headstart 6.5.4 is supported with Oracle 11gR2. The Oracle Designer version is supported with a 10gR2 and a 11gR1 database. So for your development environment you will need a 10gR2 or 11gR1 database.
    Regards,
    Mark

  • Oracle 11g Developer or Enterprise Edition?

    Hi Guys,
    Please help me on this one, its not an issue but I wanted to know which one supports for my small team.
    We are 3 developers and we are going to develope one project in C#.NET and Oracle 11g. Currently the project database in Oracle 11g and pascal, just we are going to migrate the interfaces into C#.net and it uses oracle 11g database. We are not going to do any changes in Oracle database.
    So my question's are
    1) which version is enough my developement of this project either Oracle 11g developer or Enterprise Edition?
    2) Where can i get in cheap?
    Thanks,
    Rajesh.

    d1f6d790-7017-49dd-bd62-4a31fbab607f wrote:
    Hi Guys,
    Please help me on this one, its not an issue but I wanted to know which one supports for my small team.
    We are 3 developers and we are going to develope one project in C#.NET and Oracle 11g. Currently the project database in Oracle 11g and pascal, just we are going to migrate the interfaces into C#.net and it uses oracle 11g database. We are not going to do any changes in Oracle database.
    So my question's are
    1) which version is enough my developement of this project either Oracle 11g developer or Enterprise Edition?
    2) Where can i get in cheap?
    Thanks,
    Rajesh.
    1) There is no developer edition in Oracle. If you are 3 developers and will be developing on your own databases, you can buy 3 personal editions(same as enterprise edition) OR you can buy an user based enterprise edition for test environment. I believe minimum you need is 10 user based licenses. Also, if you think that you are not using any enterprise features, you can always go for user based standard edition which will be much cheaper as compare to enterprise.
    2) You can find some Oracle partners who sells the licenses.  Sometime they give you a good discount. I personally do not think Oracle will give you enough discount for these small number of licenses.

  • Oracle 11G password case sensitive option is not working.

    Hello,
    I am facing problem in Oracle 11G. I installed and created a database. I disabled password case sensitive option by setting it to false (Pls see the below output). but case sensitive option is not disabled and i am not able to logon using the lower case password.
    SQL> connect sys/<pwd in lower case>@<connect string> as sysdba;
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Warning: You are no longer connected to ORACLE.
    SQL> connect sys/<pwd in uppper case>@<connect string> as sysdba;
    Connected.
    SQL> show parameter SEC_CASE_SENSITIVE_LOGON
    NAME TYPE VALUE
    sec_case_sensitive_logon boolean FALSE
    Any idea.... should i open the case in the metalink ?
    With Regards
    Hemant Joshi.

    Can you execute:
    SQL> select USERNAME, PASSWORD_VERSIONS from dba_users where username = 'SYS';Have you tried reseting the sys password? When you create the password file by default the passwords stored on it are case sensitive, maybe you also need to rebuild it...
    Enrique
    PS. See Note:429465.1 +11g R1 New Feature : Case Sensitive Passwords and Strong User Authentication+
    Edited by: Enrique Orbegozo on Oct 15, 2008 1:20 AM

Maybe you are looking for