Missing Passwords on a new 11gR2 install. Unable to sign-on.

Software installed: ORACLE 11GR2
PC: WINDOWS 7
Problems/Question:
I did not see the password/userid screen during installation. So I don't know the passwords. When I click on SQL PLUS under APPLICATION DEVELOPMENT, I get a DOS screen which asks for ENTER USERNAME and PASSWORD. I tried SYSTEM with various passwords but didn't work. By the way, I don't see i SQL Plus anywhere.
Details: I installed only the database version on my pc. I received installed successfully message. I see the following products installed:
APPLICATION DEVELOPMENT
CONFIGURATION AND MANAGEMENT TOOL
INTEGRATED MANAGEMENT TOOLS
ORACLE INSTALLATION PRODUCTS
WAREHOUSE BUILDER
Please advice.
Thanks.

>
PC: WINDOWS 7
>
Pl indicate which version of Windows 7 - Home versions are not supported - http://download.oracle.com/docs/cd/E11882_01/install.112/e10843/reqs.htm#CHDHGGFE
iSQLPLUS is not available with 11g - see these related threads
Why no more isqlplus in 11g?
iSqlPlus
Many others can be found using the search link above
HTH
Srini

Similar Messages

  • When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified

    When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified because it is already in use ??? What am I doing wrong?

    settings -> iTunes & App Store
    click on apple ID listed there
    select Sign Out
    sign in with the proper account
    from then on, when the store ask for your password it should be with the correct ID

  • How to start the SCAN listener on new 11Gr2 install?

    Ok...starting dbca on first RAC install on the new 11Gr2 cluster.
    I was about to proceed from screen 3 to 4...and it comes up with an error saying the SCAN listener hasn't been started.
    I started what I thought was the listener with lsrnctl start...but apparently that isn't enough.
    What do I do to start the SCAN listener? I'm still a bit hazy on what this is for.....
    Thanks in advance,
    cayenne

    Man..there just is NOT a lot of good, easy to find direct documentation on this.
    I found this document that had some srvctl instructions:
    How to update the IP address of the SCAN VIP resources (ora.scan.vip) [ID 952903.1]
    And from there...I tried experimentingL
    # $GRID_HOME/bin/srvctl stop scan_listener
    # $GRID_HOME/bin/srvctl stop scan
    # $GRID_HOME/bin/srvctl status scan
    I did:
    [oracle@node1 bin]$ ./srvctl status scan
    SCAN VIP scan1 is enabled
    SCAN VIP scan1 is not running
    SCAN VIP scan2 is enabled
    SCAN VIP scan2 is not running
    SCAN VIP scan3 is enabled
    SCAN VIP scan3 is not running
    [oracle@node1 bin]$ ./srvctl start scan
    [oracle@node1 bin]$ ./srvctl status scan
    SCAN VIP scan1 is enabled
    SCAN VIP scan1 is running on node node5
    SCAN VIP scan2 is enabled
    SCAN VIP scan2 is running on node node3
    SCAN VIP scan3 is enabled
    SCAN VIP scan3 is running on node node4
    Trying to start the scan listener:
    [oracle@node1 bin]$ ./srvctl status scan_listener
    SCAN Listener LISTENER_SCAN1 is enabled
    SCAN listener LISTENER_SCAN1 is not running
    SCAN Listener LISTENER_SCAN2 is enabled
    SCAN listener LISTENER_SCAN2 is not running
    SCAN Listener LISTENER_SCAN3 is enabled
    SCAN listener LISTENER_SCAN3 is not running
    [oracle@node1 bin]$ ./srvctl start scan_listener
    [oracle@node1 bin]$ ./srvctl status scan_listener
    SCAN Listener LISTENER_SCAN1 is enabled
    SCAN listener LISTENER_SCAN1 is running on node node1
    SCAN Listener LISTENER_SCAN2 is enabled
    SCAN listener LISTENER_SCAN2 is running on node node3
    SCAN Listener LISTENER_SCAN3 is enabled
    SCAN listener LISTENER_SCAN3 is running on node node4
    So...it appears I figured how to get scan and the scan listener running.
    I'm guessing I need to do some form of the srvctl add....I found this:
    http://download.oracle.com/docs/cd/E11882_01/rac.112/e10718/srvctladmin.htm#CDDEEBCH
    On it, I found the generic instructions for add:
    srvctl add scan
    Adds Oracle Clusterware resources for the given SCAN. This command creates the same number of SCAN VIP resources as the number of IP addresses that SCAN resolves to, or 3 when network_number identifies a DHCP network and Oracle GNS configuration.
    Note:
    This command is only available with Oracle Clusterware.
    Syntax and Options
    Use the srvctl add scan command with the following syntax:
    srvctl add scan -n scan_name [-k network_number]
    [-S subnet/netmask[/if1[|if2|...]]]
    Table A-14 srvctl add scan Options
    Option      Description
    -n scan_name
    A fully qualified host name, which includes the domain name.
    -k network_number
    The optional network number from which SCAN VIPs are obtained. If not specified, the SCAN VIPs are obtained from the same default network from which the nodeapps VIP is obtained.
    -S subnet/netmask
    [if1 [|if2|...]]
    Creates the network_number. This option must be specified when network_number does not exist.
    Example
    An example of this command is:
    # srvctl add scan -n scan.mycluster.example.com
    srvctl add scan_listener
    Adds Oracle Clusterware resources to the SCAN listeners. The number of SCAN listener resources created is the number of SCAN VIP resources.
    Note:
    This command is only available with Oracle Clusterware.
    Syntax and Options
    Use the srvctl add scan_listener command with the following syntax:
    srvctl add scan_listener [-l lsnr_name_prefix] [-s]
    [-p "[TCP:]port_list[IPC:key][NMP:pipe_name][TCPS:s_port] [SDP:port]"]
    Table A-15 srvctl add scan_listener Options
    Option      Description
    -l lsnr_name_prefix
    The SCAN listener name prefix.
    -s
    Use the -s option to skip checking of the ports.
    -p "[TCP:]port_list
    [IPC:key][NMP:pipe_name]
    [TCPS:s_port]
    [SDP:port]"
    Protocol specifications for the listener. port_list is a comma-delimited list of TCP ports or listener endpoints.
    If this option is not specified, then the default TCP port of 1521 is used.
    Example
    An example of this command is:
    # srvctl add scan_listener -l myscanlistener
    So, if I understand this correctly, to get scan and scan listener to autostart on boot I do something like this?
    If my SCAN name is database-scan
    I'd need to do srvctl add scan -n database-scan ?
    For the scan listener, from the instructions it sounds like I can name it anything I want...is that correct...?
    So I could do something like
    srvctl add scan_listener -l fred ?
    Thanks in advance for any suggestions. (Ok, not going to really name it fred)
    cayenne

  • OCS 2007 r2 new users are unable to sign in Help!!!

    a little background: we had an issue with our domain controller and had to flash a backup image that we took 2 weeks prior. after we got everything setup correctly again and added users that were not there when we took the image backup. it all seemed
    fine, until we had to add some new hires. now when I add new users and configure them correctly with in OCS and active directory the user cannot sign in. from what I have read it could be a replication error, but when I try to force replication it fails. as
    we rely on this service for our business it is very frustrating. I have ran the validation tool and this is what I get.
    Attempting to login   user using Kerberos
    Maximum hops: 2
      Successfully established security association with the server: User   nancy Domain lj Protocol Kerberos Target sip/Fileserver.LJ.local
      Failed to register user: User sip:[email protected] @ Server Fileserver.LJ.local
      Failed registration   response: [
      SIP/2.0 403 Forbidden
      FROM: <sip:[email protected]>;epid=epid00;tag=af8d4a32c5
      TO: <sip:[email protected]>;tag=1A2FD46AB32C93C71252508422122A62
      CSEQ: 2 REGISTER
      CALL-ID: cd6769facadf4da68a88921dfc5a4807
      VIA: SIP/2.0/TLS   192.168.0.23:57752;branch=z9hG4bKf130bb10;ms-received-port=57752;ms-received-cid=40200
      CONTENT-LENGTH: 0
      AUTHENTICATION-INFO: Kerberos   rspauth="602306092A864886F71201020201011100FFFFFFFF764B3F8B7D0AE7EC1B6FE36DAA9B10B1",   srand="C0091F30", snum="1", opaque="EE6E2772",   qop="auth", targetname="sip/Fileserver.LJ.local",
      realm="SIP Communications Service"
      ms-diagnostics: 4004;reason="Credentials provided are not authorized to   act as specified from   URI";source="Fileserver.LJ.local";AuthenticatedIdentity="LJ\nancy"
      ms-diagnostics-public: 4004;reason="Credentials provided are not   authorized to act as specified from   URI";AuthenticatedIdentity="LJ\nancy"
      Suggested Resolution: Use the maximum hop count to determine the   server that generated this error. For example, if the maximum hop value is 2,   then it is likely that this error was generated by a server that is 1  
    (immediate target) or 2 hops away. If the target server supplied and the home   server for the user are different check the trust relationship between them.   If the target server is an access edge server then check whether the internal   supported
    domain list contains the domain of this user. In addition, check   the forest-level domain supported list and make sure the user domain is   present. Finally, run the dbanalyze tool on the home server to check whether   the user is homed and
    configured correctly.
      Suggested Resolution: Ensure that the supplied credentials are   appropriate for the supplied user. If the user has been moved recently, run   dbanalyze to ensure that the user is homed correctly.
    Failure
      [0xC3FC200D] One or more errors were detected
    Maximum hops: 2
      Successfully established security association with the server: User   nancy Domain lj Protocol NTLM Target Fileserver.LJ.local
      Failed to register user: User sip:[email protected] @ Server   Fileserver.LJ.local
      Failed registration   response: [
      SIP/2.0 403 Forbidden
      FROM: <sip:[email protected]>;epid=epid01;tag=e91f12148
      TO: <sip:[email protected]>;tag=1A2FD46AB32C93C71252508422122A62
      CSEQ: 5 REGISTER
      CALL-ID: 9ac9e3fe41f64e6587b7e744ef4eabc4
      VIA: SIP/2.0/TLS   192.168.0.23:57752;branch=z9hG4bK53b7532;ms-received-port=57752;ms-received-cid=40200
      CONTENT-LENGTH: 0
      AUTHENTICATION-INFO: NTLM rspauth="010000002A86488630F580CBB5BBDB1F",   srand="D34E3231", snum="1", opaque="9FC5005B",   qop="auth", targetname="Fileserver.LJ.local",   realm="SIP
    Communications Service"
      ms-diagnostics: 4004;reason="Credentials provided are not authorized to   act as specified from URI";source="Fileserver.LJ.local";AuthenticatedIdentity="LJ\nancy"
      ms-diagnostics-public: 4004;reason="Credentials provided are not   authorized to act as specified from   URI";AuthenticatedIdentity="LJ\nancy"
      Suggested Resolution: Use the maximum hop count to determine the server   that generated this error. For example, if the maximum hop value is 2, then   it is likely that this error was generated by a server that is 1 (immediate
      target) or 2 hops away. If the target server supplied and the home server for   the user are different check the trust relationship between them. If the   target server is an access edge server then check whether the internal   supported
    domain list contains the domain of this user. In addition, check   the forest-level domain supported list and make sure the user domain is   present. Finally, run the dbanalyze tool on the home server to check whether   the user is homed and
    configured correctly.
      Suggested Resolution: Ensure that the supplied credentials are   appropriate for the supplied user. If the user has been moved recently, run   dbanalyze to ensure that the user is homed correctly.

    Depending on how you rolled back Active Directory, you may have entered a situation called "USN Rollback" where your rolled back DC stops replicating with the rest of the DC's in the infrastructure.
    This will cause issues like what you are experiencing, and much worse in the long term, such as machines getting dropped from the domain, and user password becoming inconsistent, since you're essentially maintaining two copies of your domain that cannot
    talk to each other...
    Here are more details: http://support.microsoft.com/kb/875495
    I'd recommend resolving the underlying AD issue by removing the restored DC from the infrastructure (you may have to force demote and remove metadata). Once AD is 100% functional then you can start troubleshooting OCS sign in issues, but my guess is they
    will resolve themselves once the restored DC is removed.
    Hope this helps,
    Gonzalo

  • WVC200 - unable to change admin password or add new users

    Hi,
    I have WVC200 installed at home. It works fine in terms of viewing video from home and over the net.
    However, from the setup page I am unable to change the Admin password or add new users.
    Pls help.
    rgds
    hemant

    Hi
    hemantparmar11 
    and
    welcome to the Cisco Home Community!
    The WVC200 is handled by the Cisco Small Business Support Community.
    Please go here for discussions about this device.
    The Search Function is your friend.... and Google too.
    How to Secure your Network
    How to Upgrade Routers Firmware
    Setting-Up a Router with DSL Internet Service
    Setting-Up a Router with Cable Internet Service
    How to Hard Reset or 30/30/30 your Router

  • My ipad2 won't accept my apple password for new app install. I've tried several time and get a pop up "unknown error". Help?

    My ipad2 won't accept my apple password for new app install. I've tried several time and get a pop up "unknown error". Help?

    Sign out of your account, restart the iPad and then sign in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>iTunes & App Store>Sign in and then try again.

  • So I updated to OS X Maverick(s) and backuped my harddrive and got a new one installed, everything seems okay but some things are missing in my settings like the software update icon. Does anyone know how I can get it back?

    So I updated to OS X Maverick(s) and backuped my harddrive and got a new one installed, everything seems okay but some things are missing in my settings like the software update icon. Does anyone know how I can get it back?

    Okay so I asked someone from apple and they said that the software update icon is gone but its functions have been merged with the app store icon on the settings menu. Crisis averted haha!

  • Unable to print after new router installed

    After having a new router installed by our cable supplier, I have been unable to use my printer with my laptop nor my desktop computer.  Do I need to uninstall and reinstall my printer on both computers?

    Replacing/changing your wireless router try here.
    http://www.hp.com/global/au/en/wireless/reconfiguring-system-help3.html
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • Have a late 2006 iMac with new Ram installed in late 2011 . I am currently running Mountain lion. Did/ hit something while half asleep and was asked for my recovery password didn't know it.Not sure what i did after that but wont boot just searches,

    I have a late 2006 iMac with new Ram installed in late 2011or early2012 . I am currently running lion. Did/ hit something while half asleep and was asked for my recovery password, I didn't know it & not sure what I did after that but it wont boot up just searches with a light grey whit -ish screen. Cant get it to clear. Any advice?
    Charlies Secret Angel-

    Try to boot in Safe mode, see if you are able: Hold down shift and then power on. For wireless keyboards, hold down shift after the chime.
    Safe Boot
    Resolve startup issues and perform disk maintenance with Disk

  • Lost Linksys password after new windows install

    I have had my Linksys E4200 for a few years now. When I'm home my cell phone and laptop both use my wireless connection. My desktop computer had the main Cisco console which provided the passwords to both my cell and laptop.
    My problem is I recently had a virus attack to my desktop from clicking on a bad email link. I couldn't remove the virus so I did a clean windows install. I can't find my Linksys router box but I found my CD disc. The disc is asking for my password which is probably somewhere in my original box (which of course I can't find now). My router has the model number and mac address but I don't know how to reinstall my console without my original password.
    I never disconnected my router when I did my new windows install on my desktop, and my computer still recognizes my Linksys router. When I click on the device icon it says, "network connected", Catagory: wireless network router, Manufacturer: Cisco, Model: Internet Access Server. Is there enough information so I can recover my password and install my console again? Thanks...
    Solved!
    Go to Solution.

    Hello DuMartin,
    It is asking for the password you set up for your network. If that will not work, then it would be best to reset and configure the router again. 
    Help, learn and share

  • My hard drive crashed on my macbook pro and I had a new one installed and they were unable to get my pictures off of it. Is there anyone who could help? I'm going to lose all my memories of my kids! I got my old hard drive

    My hard drive crashed on my macbook pro so i had a new one installed and they couldn't get my pictures off. I dont want to lose all my memories! They gave me back my old hard drive. Is there anyone that could help me?

    I think how you understand the value of having backups. All you can do is:
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as MAC Data Recovery, Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads. Recovery software usually provide trial versions that enable you to determine if the software would help before actually paying for it. Beyond this or if the drive has completely failed, then you would need to send the drive to a recovery service which is very expensive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.
    You will need an external enclosure for the old drive so you can connect it to the computer in order to try the recovery software before you buy it. But if they don't work then you will need to send the drive to a recovery service such as Drive Savers.

  • New 11gR2 DB Startup Problem In Finding pfile

    I created a new 11gR2 database yesterday. First I installed the grid infrastructure and chose the followed the instructions for "Installing and Configuring Grid Infrastructure For a Standalone Server". The ASM DATA disk group was successfully created.  Then I successfully used the asmca tool to add a FRA disk group.
    Here' s the current crs status, with me logged in as user "grid":
    -bash-3.00$ crs_stat -t -v
    Name Type R/RA F/FT Target State Host
    ora.DATA.dg ora....up.type 0/5 0/ ONLINE ONLINE hostsrv1
    ora.FRA.dg ora....up.type 0/5 0/ ONLINE ONLINE hostsrv1
    ora....ER.lsnr ora....er.type 0/5 0/ ONLINE ONLINE hostsrv1
    ora.asm ora.asm.type 0/5 0/ ONLINE ONLINE hostsrv1
    ora.cssd ora.cssd.type 0/5 0/5 ONLINE ONLINE hostsrv1
    ora.diskmon ora....on.type 0/10 0/5 ONLINE ONLINE hostsrv1
    Looks good.
    Then I try to bring up the database that successfully created last night. I log in as user "oracle" and try to bring the DB up:
    ORACLE_SID=hostsrv1
    ORACLE_BASE=/u01/app/oracle
    ORACLE_HOME=/u01/app/oracle/product/11.2.0/db
    -bash-3.00$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Wed May 12 11:06:43 2010
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup;
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/u01/app/oracle/product/11.2.0/db/dbs/inithostsrv1.ora'
    SQL>
    It's true, the pfile is missing from that directory. If I understand correctly (new to R2) it should be there and be pointing to an spfile in the +DATA diskgroup.  Does that sound right?  I guess I should try to create a pfile that points to the location of the spfile but I need to know how to obtain that information (location of spfile) from the ASM instance.
    Thanks for any help :-)

    If you are sure you spfile should be in ASM diskgroup, then you can use utility asmcmd for connecting to this ASM instance, and later by browsing ASM catalog structure you can find the location of your spfile.

  • Error: Missing Password

    Hi,
    I am using Portal 10 g and BI 10g. I created a portal page using disocverer worksheet. Recently when I tried to click "customize", I always get this error message "Password Missing" and also unable to create a new portlet using the specific connection.
    I had logged in to Enterprise Mgr, and went to the public connection property. I clicked the "edit" icon for the specific connection and saw that the password was blank so I retyped the password. But I still got the error and when I checked the connection property, my password was not saved. Does anyone know how to "save" the password so I won't get the missing password error again?
    Really appreciates any help! :)
    Cheers,
    Angeline

    Hi Angeline,
    Yes, when you create the public connection you need to put the user's password, if you dont put the password the connection are ok, but when yoy try to connect throught portal this is the tipical error message: "Password Missing".
    1) try to edit the Discoverer Connection properties throught EM and put the users password
    2) I was the same error and I discovered that editing the password in the connection properties is OK but Portal show the same message: "Password Missing". Then, I erased the Discoverer Connection throught EM and I created a new Discoverer Connection with the users password and its works fine..
    Regards
    Jose Troya

  • Yahoo e-mail missing password

    A new I-pad for Christmas presented the following problem. The settings etc were transferred via i-tunes backup and everything was fine except that the yahoo e-mail account consistently refused to connect with an error message of password missing. Deleting and re-instating the account gave the same result. The old Ipad and a mac pro could access the account as before via the web and regular e-mail accounts. Fortunately a tech savvy son-in-law fixed the issue by using another way to setup the yahoo mail account. For those who have struggled with this, here is a link to his blog with details:https://charlesshearnontech.wordpress.com/2012/12/26/ipad-ios6-yahoo-mail-doesnt -work-missing-password-error-message/
    This seems to have been a problem with both Iphones and Ipads either when IOS upgrades have been made or with new devices.

    I too have the same problem since yesterday. I am unable to acess my yahoomaill still. Please help. I already done the suggestions here but to no avail. Is this a serious problem ? Thanks.

  • Tried to update iPod, failed, no new drivers installed. Now iPod does not show in my computer or in iTunes.

    Anyone know how I can update/unbrick this iPod? It's useless. It's stuck on the screen that says connect to iTunes. iTunes doesn't know it's there. My computer doesn't know it's there. It's not the USB port.
    Please don't direct me here - http://support.apple.com/kb/HT1808 - already tried, no results.
    Last time it was a missing driver for iTunes but iTunes says nothing new is needed. Help appreciated.

    Let me try this again. My computer said my iPod needed an update. I clicked ok. iTunes said it was doing the update. I browsed the internet. I came back to it after it was done, and it said update failed, no new drivers installed. Now my iPod touch is a brick. I cannot use it for anything. You know that screen that shows the usb cable, a white arrow, and iTunes? It's stuck there. No amount of pushing the sleep/wake button and home button will convince it to go to any other screen. When I go to 'My Computer', it does not recognize that there is anything there. It is not the USB port. Everything was fine until the update tried and failed.
    I am not installing iTunes (piece of crap software that it is) on the other computer in my apartment.
    I have exhausted the articles that sort of go with the problems I am having. They all assume a non brick iPod. Mine is a brick and therefore those articles, including the one you linked, are not relevant.
    Not meaning to be rude, but I came into this not caring much for Apple's business model. I've had my iPod for .. a week? Maybe two, and nothing I've seen has convinced me to feel otherwise. Apple's products are supposed to just work. I am not finding that to be the case. Anyone with anything helpful please?

Maybe you are looking for

  • How can I view as "single page continuous" in full screen mode?

    how can I view as "single page continuous" in full screen mode? preferences->page display: preference->accessbility:

  • In the Calendar, what happened to the day's list of events?

    In the calendar in iOS7, tap on the day and I don't get a list, but a timeline that was already available by turning my iPhone to landscape view. When I tap the day, I want a list of what's scheduled for the day, not a redundant timeline function.  T

  • IPhone isn't recognized by iTunes

    I can't sync my iPhone but my iPod does. Furthermore, all services, physical connections appear to be running/operable. iTunes diagnostic test even showed every possible service I could think of working but returned a sync test result of "no ipod, ip

  • IPad Apps and Mavericks

    Is it possible to get access to iPad Apps with Mavericks?

  • Getting a 7 gig file onto an MS-DOS (fat) drive?

    Trying to deliver a Quicktime movie file to a client ... who has supplied me with a drive that's pre-formatted MS-DOS (fat).  I have this memory that MS-DOS (fat) can't handle files bigger than 2 gigs.  I wonder how the PC world manages big movie fil