I can't loggon in the database-help

Ihave download C:\10g_win32_db then installed it,
after the installation it started at http://jean:5500/em/console/logon/logon, but the problem is the password i have gave as the password to the database when it was created does not work.I get the flollowing errors on my screen.
Error
Your username and/or password are invalid.
Login to Database:orcl
* User Name
* Password
Connect As NormalSYSOPERSYSDBA
Is there a way that I can reset the password? or change it to a new one I am really new to this.
thanks

Thanks Kamal Kishore when I created the database I was aske a password,I gave sofus1.
I can't loggon on sqlplus.
is there an other way just to loggon to the db then change the password ?

Similar Messages

  • How can I connect to the database using ODBC within excel.

    Hi,
    How can I connect to the database using ODBC within excel and just refresh the data when needed.
    Thanks,
    Priyanka
    Edited by: user554934 on Jun 9, 2009 2:53 AM

    This is NOT an APEX relevant question, try posting it in the SQL/PL/SQL Forum..
    Thank you,
    Tony Miller
    Webster, TX

  • Can not login into the database 9i

    I use WarehouseBuilder 9i's repository assistant to create new repository on a host.While the database is oracle 9i release 2 , the sysdba's name/password can't login into the database.But if the database is oracle 8.1.7 ,the sysdba's name/password can login.Why?
    If the oracle 9i doesn't support WarehouseBuilder 9i ?

    This is well known bug in OWH 9i.
    The thing is:
    1. Repository Assistant need to login under SYS and only SYS
    2. SYS are allowed to login to Oracle 9i only AS SYSDBA
    3. ... but Repository Assistant CANNOT correctly login by "SYS AS SYSDBA"
    Solution:
    1. Set Oracle 9i init parameter O7_DICTIONARY_ACCESSIBILITY=TRUE and restart database instance. This allow you to login as SYS (without SYSDBA) to Oracle 9i.

  • Can't connect to the database after 1-2 day, Named Pipes Provider, error: 40,Microsoft SQL Server, Error: 121

    HI
    I have a problem. I can't connect to the database. It said : 
    An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider,
    error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 121)
    When I restart the server, I can connect normally. But after 1-2 days, it can't be connected. 
    How can I fix this?

    Hi Lee,
    Please refer to the following article to configure SQL Server 2005 to allow remote connections:
    http://support.microsoft.com/kb/914277/en-us
    Regards,
    Elvis Long
    TechNet Community Support

  • I can´t access to the database using SQLPlus

    Hello to everybody,
    I have installed Oracle XE without problems and my listener is running. Anyway I can´t acces to the database, when I try to log in i have this message:
    ORA-01033: ORACLE initialization or shutdown in progress.
    I have tried to shutdown and restart the database and in startup i have start and mount confirmation messages but at the end appear this message:
    ORA-01589: you must use RESETLOGS or NORESETLOGS option to open the database.
    Ok, I try but an invalid option message appear. This is normal because RESETLOGAS and NORESETLOGS isn´t startup command options.
    So I don´t know how to continue, any idea??
    Thank you.

    When I try to connect to the database:
    [yuner@leyla bin]$ sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Beta on Vie Dic 16 16:22:57 2005
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Introduzca el nombre de usuario: sys
    Introduzca la contraseña:
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress
    When I connect as sysdba to restart the db:
    [yuner@leyla bin]$ sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Beta on Vie Dic 16 16:23:20 2005
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> conn sys as sysdba
    Introduzca la contraseña:
    Conectado.
    SQL> shutdown
    ORA-01109: base de datos sin abrir
    Base de datos desmontada.
    Instancia ORACLE cerrada.
    SQL> startup
    Instancia ORACLE iniciada.
    Total System Global Area 146800640 bytes
    Fixed Size 1218208 bytes
    Variable Size 58722656 bytes
    Database Buffers 83886080 bytes
    Redo Buffers 2973696 bytes
    Base de datos montada.
    ORA-01589: debe utilizar la opcion RESETLOGS o NORESETLOGS para abrir la base
    de datos
    This is my problem, any idea?
    Thank you.

  • Can't connect to the database server from localhost

    Hi,
    I'm having a problem I hope you can help with please!
    I recently installed mysql and phpmyadmin... I can access mysql perfectly from the command line, and can access it partially through phpmyadmin although there are some restrictions that I haven't figured out how to change yet (despite editing php.ini, configure.inc.php and others), but on the whole inside phpmyadmin I can see all the databases I've uploaded with the command line and all the users are there and can be edited. Unfortunately whenever I try to connect to a mysql database using a username and password that was created in phpmyadmin (or anywhere!), I get a 'cannot connect to the database server error'. I've checked and rechecked the username, the passwords, the database names and the host names a thousand times but nothing I change is working.
    Is there a special prefix my mac could be adding to the database, usernames or host names?
    Thanks!

    Okay, don't worry!
    I finally figured it out...
    it needed to be 127.0.0.1 rather than localhost!

  • How I can transfer data from the database into a variable (or array)?

    I made my application according to the example (http://corlan.org/2009/06/12/working-in-flash-builder-4-with-flex-and-php/). Everything works fine. I changed one function to query the database - add the two parameters and get the value of the table in String format. A test operation shows that all is ok. If I want to display this value in the text area, I simply drag and drop service to this element in the design mode
    (<s:TextArea x="153" y="435" id="nameText" text="{getDataMeanResult.lastResult[0].name}"  width="296" height="89"  />).
    It also works fine, just a warning and encouraged to use ArrayCollection.getItemAt().
    Now I want to send the value to a variable or array, but in both cases I get an error: TypeError: Error #1010: A term is undefined and has no properties..
    How can I pass a value from the database into a variable? Thank you.
    public var nameTemp:String;
    getDataMeanResult.token = authors.getDataMean(arrayOfNumber[0], dir_id);
    nameTemp = getDataMeanResult.lastResult[0].name;
    public var nameArray:Array = new Array();
    for (var i:uint=o; i<3; i++){
    getDataMeanResult.token = authors.getDataMean(arrayOfNumber[i], dir_id);
    nameArray[i] = getDataMeanResult.lastResult[0].name;
    And how i can use syntax highlighting in this forum?

    Astraport2012 wrote:
    I have to go back to the discussion. The above example works fine when i want to get a single value of the database. But i need to pass an array and get an array, because i want to get at once all the values for all pictures tooltips. I rewrote the proposed Matt PHP-script and it works. However, i can not display the resulting array.
    yep, it won't work for Arrays, you'll have to do something slightly more intelligent for them.
    easiest way would be to get your PHP to generate XML, then read that into something like an ArrayList on your HTTPService result event (depends what you're doing with it).
    for example, you could have the PHP generate XML such as:
    <pictures>
         <location>test1.png</location>
         <location>test2.png</location>
         <location>test3.png</location>
         <location>test4.png</location>
         <location>test5.png</location>
         <location>test6.png</location>
    </pictures>
    then you'll read that in as the ResultEvent, and perform something like this on it
    private var tempAC:ArrayList = new ArrayList
    protected function getStuff_resultHandler(event:ResultEvent):void
        for each(var item:Object in event.result.pictures)
           var temp:String = (item.@location).toString();
           tempAC.addItem(temp);
    in my example on cookies
    http://www.mattlefevre.com/viewExample.php?tut=flash4PHP&proj=Using%20Cookies
    you'll see an example of how to format an XML structure containing multiple values:
    if($_COOKIE["firstName"])
            print "<stored>true</stored>";
            print "<userInfo>
                    <firstName>".$_COOKIE["firstName"]."</firstName>
                    <lastName>".$_COOKIE["lastName"]."</lastName>
                    <userAge>".$_COOKIE["userAge"]."</userAge>
                    <gender>".$_COOKIE["gender"]."</gender>
                   </userInfo>";
        else
            print "<stored>false</stored>";
    which i handle like so
    if(event.result.stored == true)
                        entryPanel.title = "Welcome back " + event.result.userInfo.firstName + " " + event.result.userInfo.lastName;
                        firstName.text = event.result.userInfo.firstName;
                        lastName.text = event.result.userInfo.lastName;
                        userAge.value = event.result.userInfo.userAge;
                        userGender.selectedIndex = event.result.userInfo.gender;
    depends on what type of Array you're after
    from the sounds of it (with the mention of picture tooltips) you're trying to create a gallery with an image, and a tooltip.
    so i'd probably adopt something like
    <picture>
         <location>example1.png</location>
         <tooltip>tooltip for picture #1</tooltip>
    </picture>
    <picture>
         <location>example2.png</location>
         <tooltip>tooltip for picture #2</tooltip>
    </picture>
    <picture>
         <location>example3.png</location>
         <tooltip>tooltip for picture #3</tooltip>
    </picture>
    etc...
    or
    <picture location="example1.png" tooltip="tooltip for picture #1"/>
    <picture location="example2.png" tooltip="tooltip for picture #2"/>
    <picture location="example3.png" tooltip="tooltip for picture #3"/>
    etc...

  • How can I connect to the database using the Oracle Remote Diagnostic Agent?

    Now I try to study RDA on Windows XP platform,when I run 'rda.cmd',there is a question 'Enter password for 'SYSTEM@'',what is the answer?
    Because I didn't know how to connect to database,there are many error messages - RDA-00510: SQL execution disabled,What can I do?

    Metalink Note:314422.1 to start
    It is asking you to tell how to connect to 'the database that you are investigating' over a network. The answer .... the password for the userid called 'system' in the database specified after the @
    I am confused ... you do not know how to connect to your database?

  • How can I find out the database version from an old backupset

    Hi,
    I have to restore a database using an old backupset (4 years ago) to a new database. My challenge is we don't know what version of the database were used back then. Is there anyway I can find this information. We are using the RMAN catalog.
    Or is RMAN restore and recovery can be used to a newer version than the backupset?
    Thanks in advance.
    Regards,
    Sosan Fong

    Thanks for the reply and suggestion.
    We are using its own software for all databases hosted in the server. So I need to cleanup and reinstall after tested in 11g. A little bit more work, but if it works, that's ok. Is there any other suggestions?
    Regards,
    S

  • Can i connect to the database through the internet

    hi all
    i installed a database oracle 8i enterprise edition on a pc that exists in a town far from me . i wonder can i connect to this database through the internet from my house
    please i need a answer
    thanks in advance

    You can connect from an Oracle client to any Oracle database in the world that meets certain requirements.
    First you need an open network connection between the two points so either no firewall exists between the two stations or the firewall(s) have been configured to allow Oranet traffic. This means both databases must have access to the Internet and certain ports are open.
    Second you will need the IP address and port for the remote listener, which in turn must be up and running on the target server.
    Then you must have the Service Name or SID and a valid username/password combination for the target database. Plus the username must have create session privilege.
    That should be about it.
    HTH -- Mark D Powell --

  • ROOT can't enter in the database

    Hi.
    I have a problem: I need to install a oracle 9i database to a client and configure it. Then, the client will administer the DB and I'll only make the full offline backup. I'll have the root password, but the client wants a way that me, with the root password, can't connect in his database.
    How I can ensure it to him? If I do a su -oracle I'll can enter in the database with external authentication (connect /); I can copy the pwd file, changes the sysdba password with internal user, connect at the database as sysdba and after rollback the pwd file.
    How I can solucionate it?

    There's not a way to do this that I know of. Like Tim said it comes down to a matter of trust. It doesn't matter what database you're using,
    Oracle, DB2, SQL Server... if you have the root/administrator account you can get into the database. If your client doesn't feel they can
    trust you with the root password then they need to find someone they can trust.
    Having said that, if you're client trusts no one I suppose the client could allow you root access for the install and then change the root
    password after the install. This way the client knows you can't access the database while they're not watching you and you can ask
    for their permission each time you need the use the root account. As far as I know you only need the root account to install the Oracle
    software. Depending on if you're using OS or database authenication to access the database a user only needs the OSOPER or
    SYSOPER role to backup a database. Here's what those roles allow a user to do:
    Permits the user to perform STARTUP, SHUTDOWN, ALTER DATABASE OPEN/MOUNT, ALTER DATABASE BACKUP, ARCHIVE LOG,
    and RECOVER, and includes the RESTRICTED SESSION privilege.
    This means you could create another OS user account and use that for the Oracle backups. What this means for backing up UNIX
    system files I don't know, I'm not a sys admin. I would think you'd still need to back up all system files using the root account.
    Even if I have the ability to backup the database only what prevents me from restoring it on another server where I do have root access?
    I could then su to the oracle account on the server I restored the database to and access the database. Better not tell the client about that!
    Excuse my sarcasm, it's not directed at you. I just think your client has unreal expectations if they expect you to install and backup their
    database but can't trust you.

  • RDA ---Can not connect to the database

    Folks,
    I am trying to generate an RDA output for ORACLE SUPPORT
    Database:10.2.0.4
    Server: Win 32bit SP1
    STEP 1: ran rda.cmd -S to collect config info
    STEP2: run rda.cmd to generate output
    at this time it asks me the password of the system username as sysdba and errors out saying
    the following
    Processing Initialization module ...
    Enter the password for 'SYSTEM@abc as SYSDBA':
    Please re-enter it to confirm:
    The database to be analyzed (abc) does not appear to be accessible.
    Please do one of the following:
    - If the database is not started, start it in another session, then press
    'Enter' to continue this script after the database has been started;
    - Interrupt this script, start the database or solve the connection
    problem, and next re-run rda; or
    - Hit 'Enter' to continue this script without gathering information from
    the database.
    If you choose to continue without database connection, some information will
    be missing and Oracle Support may request that rda be re-run.
    Press 'Enter' to Continue
    RDA-00501: Database access disabled due to a connection problem
    Has anyone encountered this issue

    Well, I'm not sure if Oracle can't even figure it out. I found this in a connection troubleshooting guide specific to windows....maybe give these a try just to verify again.
    Troubleshooting Steps Common to Unix and Windows
    Connection Issues
    If RDA is unable to connect to the database, and the user is declared as a SYSDBA user when running the setup, ensure that a connection is possible with as the user using AS SYSDBA. For example, if SYSTEM is specified as the username, make sure that you can connect using the following command in sqlplus:
    connect system AS SYSDBA
    If you cannot connect, run the setup again and answer N to that question, or edit the setup file (setup.cfg) and set SYSDBA_USER=0. You can also use the 'TSTdb' test module to obtain more elements on the connection problem. This test can be performed using the following command(s):
    For Windows run:
    rda.cmd -T TSTdb or rda.pl -T TSTdb
    For Unix run:
    rda.sh -T TSTdb or rda.pl -T TSTdb
    If you use TWO_TASK enviroment variable is used to connect to the database, then unset TWO_TASK and run RDA on the server local to the database. This is necessary because RDA depends on a local connection to the database, and automatically unsets TWO_TASK before performing any function.
    Edited by: DBA_Mike on Mar 25, 2009 5:37 AM

  • How can i check if the database contains the rows stated or not?

    hi there..
    i hav a problem here. I need to check the database if it contains the row of the attribute. If it doesnt not hav the row, i would then insert a new row into it, or else, i would only update the attribute. I have encountered a null pointer error and i've been trying to resolve it but i cant solve it. Here's my code..
    "i" is the attribute i wan to check if it exist in the database.
    "id" is the attribute i wan to check, from my JSP
    String m = null;
    String sql11 = "SELECT i from database WHERE i ='" + i+ "'";
    System.out.println(sql11);
    try {
    db = new Database();
    rs = db.readRequest(sql11);
    if (rs != null && rs.next()) {
    U u= new U();
    u.setU(rs.getString("i"));
    m = u.getU(); ==> this is the line tat's givin my null pointer
    System.out.println(m);
    db.close();
    } catch (SQLException se) {
    se.printStackTrace();
    throw (new UserException("Unable to retrieve from Database!"));
    } catch (Exception e) {
    e.printStackTrace();
    throw (new UserException("Unknow error encountered!"));
    if (m.equals(id)){
    //performs the updating of database
    else if (m_userID.equals("nil")){
    // performs the inserting of new row in the database
    }*/

    And what does getU() do?

  • Now that there's a lovely (totally unnecessary) icon next to each bookmark on the bar, I can no longer organize the bookmarks: Help?

    I used to be able to click on bookmarks, then toolbar, and delete, add, or organize. With the new firefox, can't do that. How do you manage bookmarks?

    You can do that with the Bookmarks Deiconizer extension - https://addons.mozilla.org/firefox/addon/bookmarks-deiconizer
    "Organize Bookmarks" has been renamed to "Show All Bookmarks" in the bookmarks menu.

  • Can UI defaults use the database comments column as a default for Help?

    we have comments on database columns, but the UI defaults for Table dictionary don't use them. Is there a setting or configuration to enable this?

    Click File tab | Options | Customize Ribbon. Make sure there is a check mark next to "Design." Repeat for any other missing ribbon tabs. Click OK.
    Stefan Blom, Microsoft Word MVP

Maybe you are looking for

  • IPod and Windows x64 Professional?

    Ok, This is the day i have waited for. Windows XP 64bit edition. I tried my new iPod and it could not read it for the life of me. So i reinstalled the old windows xp w/service pack 2 and all is well. Does iPod not work for windows xp 64bit edition?

  • Runtime error 429, activeX component cant create object while using netbet pro on windows 7 & 8.1 HELP!!!

    runtime error 429, activeX component cant create object while using netbet pro does anyone know what I could do to fix this problem??? netbet pro was't available for a while then it's back but has yet to run

  • Fillable Form Fields Created With Acrobat XI Pro on Mac Won't Save on PCs?

    Hi all, Apologies if this has been covered already, but I've done a search of the forums that have turned up nothing. Briefly, I have created a fillable form with Acrobat XI Pro on a Mac. The original file was created with InDesign CS6. Once the fiel

  • Servlet jar file

    I am trying to compile a simple example servlet. It is looking for the javax.servlet.* and javax.servlet.http.* import classes. I discovered that I needed to add c:\j2sdkee1.2.1\lib\j2ee.jar to my classpath for this to compile. c:\j2sdkee1.2.1\lib wo

  • Creative Cloud Install Issues

    I recently deactivated my Creative Cloud on an old Mac and installed on a new one. When I try to launch Indesign it list a number of 9.0 version plugins that are needed. Where do I get these?