Oracle XE 10g connect for the first time

I have just installed Oracle10 g express edition on Windows XP service pack 3, when trying to connect for the first time
I get the ORA-12631 message error when trying to connect!!
SQL> connect system
Immettere la password:
ERROR:
ORA-12631: Recupero nome utente non riuscito
Can anyone help me?

sorry here is:
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\>set
ALLUSERSPROFILE=C:\Documents and Settings\All Users
ambiente=AC
APPDATA=C:\Documents and Settings\UR00780.HD01\Application Data
CLIENTNAME=Console
CommonProgramFiles=C:\Program Files\Common Files
COMPUTERNAME=ACMI1252
ComSpec=C:\WINDOWS\system32\cmd.exe
cstella=VERONA
FP_NO_HOST_CHECK=NO
fserver=ACSWDWV01
HOMEDRIVE=H:
HOMEPATH=\
HOMESHARE=\\acnas200.intranet.unicredit.it\UR00780
KITID=AC
LOGONSERVER=\\USADSW340
LSERVER=ACSWDWV01.hd01.unicreditgroup.eu
NUMBER_OF_PROCESSORS=2
OS=Windows_NT
Path=C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program
Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\IBM\Personal Communications\;C:\Program Files\IBM\Trace Facil
ity\;C:\Program Files\Symantec\pcAnywhere\;C:\PROGRA~1\IBM\CLIENT~1;C:\PROGRA~1\IBM\CLIENT~1\Shared;C:\Program Files\Int
el\DMIX;c:\Program Files\Microsoft SQL Server\90\Tools\binn\
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
PCOMM_Root=C:\Program Files\IBM\Personal Communications\
PROCESSOR_ARCHITECTURE=x86
PROCESSOR_IDENTIFIER=x86 Family 6 Model 37 Stepping 2, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=2502
ProgramFiles=C:\Program Files
PROMPT=$P$G
SESSIONNAME=Console
SystemDrive=C:
SystemRoot=C:\WINDOWS
TEMP=C:\DOCUME~1\UR0078~1.HD0\LOCALS~1\Temp
TMP=C:\DOCUME~1\UR0078~1.HD0\LOCALS~1\Temp
USERDNSDOMAIN=HD01.UNICREDITGROUP.EU
USERDOMAIN=HD01
USERNAME=UR00780
USERPROFILE=C:\Documents and Settings\UR00780.HD01
windir=C:\WINDOWS
C:\>

Similar Messages

  • How can I delete photos from my ipad that came in when I connected for the first time to my pc?

    how can I delete photos from my ipad that came in when I connected for the first time to my pc? HELP

    Photos that were synced from your computer using iTunes can only be deleted by de-selecting them from the folder from where they were synced -  and then re-syncing.
    Connect the iPad to the PC and launch iTunes.
    Click on the iPad name on the left side under devices.
    Click on the Photos Tab on the right.
    If you want to remove all of the Photos - uncheck the Sync Photos from Heading
    Click on Apply in the lower right corner of iTunes
    If you are using iTunes 11 - this will be helpful, Setting up syncing in Windows.
    http://support.apple.com/kb/PH12313

  • What can I do to make sure all my information (Notes Included) transfers to my new MacBook Pro when connecting for the first time?

    I am about to connecting my Iphone to my new Macbook Pro for the first time. I just want to make sure that all my information: contacts, messages, notes, everything will still be on my phone. I just dont want to connect then find out I lost everything on my phone.
    Help! I am really bad with technology...

    When you first sync with a new iTunes library iTunes will delete any iTunes media from your phone and replace it with the media in the library being synced with.  iTunes media includes things like apps, music, movies, tv shows, podcasts, books, custom ringtones and photos synced to your phone from a computer.  If you are also syncing your contacts and calendars with your computer it will replace the ones on your phone with those on your computer.  If your iTunes library, contacts, calendars and iPhoto are all empty, you will end up with all of these being empty on your phone.
    To preserve these you need to follow the steps in the linked article.  This will transfer purchased media from your phone to your iTunes library and transfer contacts and calendar entries to your Mac.  As discussed in the guide, it will not transfer music not purchased from the iTunes store (which can only be done using 3rd party software such as the ones discussed) or photos synced to your phone from another computer (which can be transferred to your computer using an app like PhotoSync).  These will need to done first or you will lose them, as discussed in the guide.

  • Getting Connected for the First Time with JDBC

    Hello everyone. I am trying to make my first database connection to a mysql database with Java. I am using jdk 1.5.0, MySQL 4.1.11 nt, and I think I have the freshly downloaded driver C:\jdk1.5.0\jre\lib\ext\mysql-connector-java-3.0.16-ga-bin.jar" installed in the right spot. When I try to run the following code...
    package dbfinder;
    import java.sql.*;
    import javax.sql.*;
    import com.sun.rowset.JdbcRowSetImpl;
    import javax.sql.rowset.JdbcRowSet;
    import java.sql.ResultSetMetaData;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2005</p>
    * <p>Company: </p>
    * @author not attributable
    * @version 1.0
    public class DatabaseConnector {
    public DatabaseConnector() {
    public static void main(String args[]){
    Connection connection;
    Statement statement;
    // ResultSet resultSet;
    // ResultSetMetaData metaData;
    String DATABASE_DRIVER = "com.mysql.jdbc.Driver";
    String DATABASE_URL = "jdbc:mysql://localhost/state_crime";
    String USER = "cis695d";
    String PASSWORD = "cis695d";
    JdbcRowSet rowSet = new JdbcRowSetImpl();
    try {
    Class.forName(DATABASE_DRIVER); // load database driver
    System.out.println("class loaded");
    rowSet.setUrl("DATABASE_URL");
    rowSet.setUsername(USER);
    rowSet.setPassword(PASSWORD);
    rowSet.setCommand("Select * FROM state_crime_rates");
    rowSet.execute();
    ResultSetMetaData metaData = rowSet.getMetaData();
    int numberOfColumns;
    numberOfColumns = metaData.getColumnCount();
    System.out.println(numberOfColumns);
    } catch(SQLException sqlException){
    sqlException.printStackTrace();
    System.exit(1);
    catch(ClassNotFoundException classNotFound){
    classNotFound.printStackTrace();
    System.exit(1);
    I get the following exception...
    java.sql.SQLException: No suitable driver
         at java.sql.DriverManager.getConnection(DriverManager.java:545)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at com.sun.rowset.JdbcRowSetImpl.connect(JdbcRowSetImpl.java:618)
         at com.sun.rowset.JdbcRowSetImpl.prepare(JdbcRowSetImpl.java:630)
         at com.sun.rowset.JdbcRowSetImpl.execute(JdbcRowSetImpl.java:526)
         at dbfinder.DatabaseConnector.main(DatabaseConnector.java:44)
    Does anyone have any ideas? Is it my code? Is there a different driver I should use? Any help would be greatly appreciated.

    Hello everyone. I am trying to make my first
    database connection to a mysql database with Java. I
    am using jdk 1.5.0, MySQL 4.1.11 nt, and I think I
    have the freshly downloaded driver
    C:\jdk1.5.0\jre\lib\ext\mysql-connector-java-3.0.16-ga
    -bin.jar" installed in the right spot. You shouldn't be putting that JAR in jre/lib/ext, even if you've found some docs to tell you to do it. Only language extensions (e.g., packages that begin w/javax) belong there.
    I get the following exception...
    java.sql.SQLException: No suitable driver
    Does anyone have any ideas? Is it my code? Is there
    a different driver I should use? Any help would be
    greatly appreciated.The driver is correct. The class loader found it, even though I think you should use the -classpath option to find the JAR.
    It's your code.
    What are you doing with all that RowSet stuff?
    This works. Study it:
    import java.sql.*;
    import java.util.*;
    * Command line app that allows a user to connect with a database and
    * execute any valid SQL against it
    public class DataConnection
        public static final String DEFAULT_DRIVER   = "sun.jdbc.odbc.JdbcOdbcDriver";
        public static final String DEFAULT_URL      = "jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\\Edu\\Java\\Forum\\DataConnection.mdb";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        public static final String DEFAULT_DRIVER   = "com.mysql.jdbc.Driver";
        public static final String DEFAULT_URL      = "jdbc:mysql://localhost:3306/hibernate";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        /** Database connection */
        private Connection connection;
         * Driver for the DataConnection
         * @param command line arguments
         * <ol start='0'>
         * <li>SQL query string</li>
         * <li>JDBC driver class</li>
         * <li>database URL</li>
         * <li>username</li>
         * <li>password</li>
         * </ol>
        public static void main(String [] args)
            DataConnection db = null;
            try
                if (args.length > 0)
                    String sql      = args[0];
                    String driver   = ((args.length > 1) ? args[1] : DEFAULT_DRIVER);
                    String url      = ((args.length > 2) ? args[2] : DEFAULT_URL);
                    String username = ((args.length > 3) ? args[3] : DEFAULT_USERNAME);
                    String password = ((args.length > 4) ? args[4] : DEFAULT_PASSWORD);
                    System.out.println("sql     : " + sql);
                    System.out.println("driver  : " + driver);
                    System.out.println("url     : " + url);
                    System.out.println("username: " + username);
                    System.out.println("password: " + password);
                    db = new DataConnection(driver, url, username, password);
                    System.out.println("Connection established");
                    Object result = db.executeSQL(sql);
                    System.out.println(result);
                else
                    System.out.println("Usage: db.DataConnection <sql> <driver> <url> <username> <password>");
            catch (SQLException e)
                System.err.println("SQL error: " + e.getErrorCode());
                System.err.println("SQL state: " + e.getSQLState());
                e.printStackTrace(System.err);
            catch (Exception e)
                e.printStackTrace(System.err);
            finally
                if (db != null)
                    db.close();
                db = null;
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection() throws SQLException,ClassNotFoundException
            this(DEFAULT_DRIVER, DEFAULT_URL, DEFAULT_USERNAME, DEFAULT_PASSWORD);
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection(final String driver,
                              final String url,
                              final String username,
                              final String password)
            throws SQLException,ClassNotFoundException
            Class.forName(driver);
            this.connection = DriverManager.getConnection(url, username, password);
         * Get Driver properties
         * @param database URL
         * @return list of driver properties
         * @throws SQLException if the query fails
        public List getDriverProperties(final String url)
            throws SQLException
            List driverProperties   = new ArrayList();
            Driver driver           = DriverManager.getDriver(url);
            if (driver != null)
                DriverPropertyInfo[] info = driver.getPropertyInfo(url, null);
                if (info != null)
                    driverProperties    = Arrays.asList(info);
            return driverProperties;
         * Clean up the connection
        public void close()
            close(this.connection);
         * Execute ANY SQL statement
         * @param SQL statement to execute
         * @returns list of row values if a ResultSet is returned,
         * OR an altered row count object if not
         * @throws SQLException if the query fails
        public Object executeSQL(final String sql) throws SQLException
            Object returnValue;
            Statement statement = null;
            ResultSet rs = null;
            try
                statement = this.connection.createStatement();
                boolean hasResultSet    = statement.execute(sql);
                if (hasResultSet)
                    rs                      = statement.getResultSet();
                    ResultSetMetaData meta  = rs.getMetaData();
                    int numColumns          = meta.getColumnCount();
                    List rows               = new ArrayList();
                    while (rs.next())
                        Map thisRow = new LinkedHashMap();
                        for (int i = 1; i <= numColumns; ++i)
                            String columnName   = meta.getColumnName(i);
                            Object value        = rs.getObject(columnName);
                            thisRow.put(columnName, value);
                        rows.add(thisRow);
                    returnValue = rows;
            else
                int updateCount = statement.getUpdateCount();
                returnValue     = new Integer(updateCount);
            finally
                close(rs);
                close(statement);
            return returnValue;
         * Close a database connection
         * @param connection to close
        public static final void close(Connection connection)
            try
                if (connection != null)
                    connection.close();
                    connection = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a statement
         * @param statement to close
        public static final void close(Statement statement)
            try
                if (statement != null)
                    statement.close();
                    statement = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a result set
         * @param rs to close
        public static final void close(ResultSet rs)
            try
                if (rs != null)
                    rs.close();
                    rs = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a database connection and statement
         * @param connection to close
         * @param statement to close
        public static final void close(Connection connection, Statement statement)
            close(statement);
            close(connection);
         * Close a database connection, statement, and result set
         * @param connection to close
         * @param statement to close
         * @param rs to close
        public static final void close(Connection connection,
                                       Statement statement,
                                       ResultSet rs)
            close(rs);
            close(statement);
            close(connection);
    }%

  • Connecting for the first time

    New iPod Shuffle, 1 Gb.
    Manual in the box says connect Shuffle to dock, then plug dock into computer.
    iPodshuffle_FeaturesGuide.pdf downloaded from Apple says plug dock into computer, then connect Shuffle to dock.
    Anyone know how it should be done ?
    I don’t want to foul things up on first try.
    Thanks for any help.

    Your dock can remain connected to your computer to be used whenever you need to charge or sync your Shuffle. That said, connect the dock and then plug the Shuffle into the dock. (However, I really don't think the order of connection makes any difference.)

  • Airport Extreme (802.1) cannot connect for the first time.

    Hi all!
    I got an Ubuntu running Wine and the Admin Utility For Windows. I am trying to connect (after a hard reset) to the Airport Extreme Base Station. But no matter what I do I cannot get through the default password (which is supposed to be 'admin' or 'public' ) Neither work - can't configure the router! Please advise!

    Do as it says. Your license is for Creative Suite, not Acrobat. You must activate the license by opening one of the other programs first.

  • Newbee's question: Error connecting to the management server for the first time

    Dear all, I am very new to the oralce world and got stuck today the first time I install oracle 8i on my win2k pro.
    After the installation, I was trying to connect the Enterprise Manager Console for the first time, using the default user name sysman and password oem_temp (correct?). The problem is that I don't know exactly what is a management server, and what name it should be called. I named the database/sid name orarem, under D:\Oracle\admin\OraRem, does it have something to do with this issue?
    I only installed the oracle enterprise server edition 8.1.6.0.0, not the Client part, will that matter if I only wanna run oracle on my stand alone desktop as a testing procedure for now?
    Any help would be really appreciated!!

    Bingo!! I had been trying dumping various .plist files
    Not surprisingly i was a little hesitant about throwing the Airport folder in the bin.
    First thing I did was to check it had been replaced on restarting!
    Glad to say that "Check for updates" is now doing its thing.
    I don't know why it gave me such grief, I just felt it could develope into something nasty down the line.
    Thank you again.
    Unfortunately they don't seem to have a points system for this topic.
    Your fix should be available in Google from now on

  • My Iphone 4 just updated to the iOS6.  I've connected it to my computer for the first time since then, and wanted to back up my photos in iPhoto.  However, although Iphoto recognized my phone, it shows no photos to upload or backup. ??

    My Iphone 4 just updated to the iOS6.  I've connected it to my computer for the first time since then, and wanted to back up my photos in iPhoto.  However, although Iphoto recognized my phone, it shows no photos to upload or backup.  It lists my phone in the "devices" category on the left bar, but no longer shows any of my photos.
    Does anyone have any suggestions?

    I've reread your question several times and am not sure I understand it.
    Are you trying to basically start over, as if you just took your iPhone out of the box?  If so, do:
    Settings > General > Reset > Erase all content and settings

  • Hi I bought a new iPhone 4 with iOS 6.1.3 installed. When I connected it to itunes for the first time to activate it iTunes asked me to enter the password for an account that the iPhone is locked with what shall I do? PLease help

    Hello everybody
    I bought a new iPhone 4 with iOS 6.1.3 installed. When I connected it to itunes for the first time to activate it iTunes asked me to enter the password for an account that the iPhone is locked to like if the device was used before what shall I do? PLease reply soon

    I can't do that because the device was purchased from United Arab Emirates and I got it as a gift in Syria but the problem is that there is not even a single apple store in Syria so is there another way to fix that, I googled it and was told to jailbreak the device whitch I did and than hacktivated it but the problem is the device doesn't connect to any network and only shows "no service" and the battery draining too fast so is there any other way to fix this issue

  • I have bought an iPhone4 and to be able to use it for the first time I connected into a friends itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?

    I have bought an iPhone4 and to be able to use it for the first time I connected into a friends' itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?
    Now I also have a macbook where I can sync my iphone but it doesn't allow me

    first of all only sync it with 1 computers itune account
    second settings->general->store click the appleID box with her appleID in it and log out

  • I connected my iphone for the first time to itunes and lost everything. How can I recover my data?

    I connected my iphone for the first time to my itunes. It didnt have any backup or anything saved on icloud. As soon as i plugged it in, on itunes it asked if I wanted to restore, or backup, my ipod to my iphone or something (I dont remember) and I clicked yes. I thought that it was syncing music, and apps that i had on my ipod but instead it made my iPhone 4s into a copy of my ipod touch from the last time i synced my ipod (august 2012) now i have lost all of my contacts, pictures, messages, calls, emails and everything else I had on my iphone... is there any way that I can recover anything and get it how it used to be before all of this happened? i did not save anything on the computer or on itunes backup...

    Sorry saker, but if you have not backed up your data anywhere, and you told the computer, in essence to clear the data and restore it with your iPod data, then you are pretty much out of luck....
    Cheers,
    GB

  • HT1414 i connected my iphone 5 to my computer for the first time since i got it and it didnt give me any option and just started to restore it from my iphone 4s. ive now lost all my pictures that were on it. Is there a way i can get them back!

    i connected my iphone 5 to my computer for the first time since i got it and it didnt give me any option and just started to restore it from my iphone 4s. ive now lost all my pictures that were on it. Is there a way i can get them back as i did not want it to restore my old phone anyway! i also had my hone set up to the cloud and it didnt work! PLEASE SOMEONE HELP ME

    Can you try to use another computer?
    If this does not work, visit an Apple Store or an Authorized Apple Service Provider next to your place, and show them the phone, maybe they can restore it before you'll have to get it serviced.
    Did you try to put it in recovery mode?
    iOS: Unable to update or restore

  • I'm setting up my Time Capsule for the first time and cannot get an internet connection throughWAN connection

    I'm setting up my Time Capsule for the first time and can't get an internet connection via ethernet cord

    So new AC model TC??
    What modem is it? Pure cable modem .. did you power cycle the modem ( OFF for at least 30min..)??
    This is essential to lose the old setup and start afresh. 
    How have you setup the TC?
    Did you try just bridge to existing router? If it doesn't get an IP and you just bought it, possible it is faulty.
    Lots more details.. really important things like did the ethernet connectivity leds go on.. both the TC port and the modem port - front ethernet indicator should light up..

  • When connecting my iphone 4 to itunes for the first time i get the following message "cannot connect to this device because Apple Mobile Service is not started" what does this mean and how do I solve it?

    when connecting my iphone 4 to itunes for the first time i get the following message "cannot connect to this device because Apple Mobile Service is not started" what does this mean and how do I solve it?

    I'd start with the following document with that one:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • How does a BlackBerry handheld connect to BES for the first time?

    How does a Blackberry device connect to BlackBerry Enterprise Server (BES) for the first time? Is there a risk that a rogue BlackBerry handheld connects to BES?
    Thank you in advance!

    Hi and Welcome to the Forums!
    When a BES admin sets up a BB on BES, they configure the unique BB PIN into their BES and also create credentials that are required to actually complete the registration process on the BB. So, while there is no perfect security anywhere, I don't think the risk you are concerned about is high enough to warrant any attention.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Transfering photos from iPad mini to macbook air

    How can I transfer movie clips (or photos) from my iPad mini to a MacBook Air? I have AirDrop on both devices however they do not see each other. The AirDrop on the MacBook sees an iMac, however not the ipad mini - so the AirDrop on the MacBook works

  • How to add program to report tree

    Hi , Can you please let me know how to add report to report tree..( No transaction code ,just only want to add report) Thanks,,

  • How do I show and hide a popup message by the program

    Hi, I've the following problem. Sometime the program must wait to open a seriel port. On slow machines, this could take some seconds. During this time I'll display a popup message with the message "please, be patient....". After the port is open, the

  • Leading zeroes in a Numeric Field, Don't want.

    I have a Numeric Field set up to hold 9 numbers for a zip code using  Display Pattern 999999999. When I only put in 5 numbers I get leading zeroes. I only want to display the numbers I put in. Sometimes I will have zip code of 9 numbers and other tim

  • SKype can't connect 7.2.0.103

    I have tried around 4 posts here that happend to work for other people but it never worked for me, I have tried clearing everything in IE, reinstall skype, change some settings in skype, change my password, reinstall skype again,  But nothing seems t