Where is the web root directory in Database 10g Express Edition and APEX

I'm developing a mod_plsql application with database express edition and the APEX version that comes with.
It works fine for developing mod_plsql applications(http://localhost:8080/apex/mypackages), but I could not find the different web directories to put my static html documents, css, gifs etc.
I could also not find a way to configure the webserver.
There's no apache installed.
Can somebody help me.
Thanks Roman

http://daust.blogspot.com/2006/03/where-are-images-of-application.html

Similar Messages

  • Problems with Oracle Database 10g Express Edition and JBoss

    Hi all,
    I try to use Oracle Database 10g Express Edition and JBoss, but sometimes i have a connection problems.
    Sometimes i have starnge warning:
    WARN [JBossManagedConnectionPool] Unable to fill pool
    org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12519, TNS:no appropriate service handler found
    and:
    org.jboss.util.NestedSQLException: Could not create connection; - nested throwable: (java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12519, TNS:no appropriate service handler found
    Oracle Database 10g Express Edition support Distributed Transaction Processing (DTP) XA interface or not?
    Some ideas?
    Thanks in advance!
    Stoyan

    Hi,
    yes, it will work, but only with the Western European Edition, not the Unicode release.
    See this thread for details:
    Re: Connection error from SqlPlus 8.0 to Oracle XE in the same computer
    Regards,
    ~Dietmar.

  • Oracle Database 10g Express Edition and xmlelement

    Hi
    when i tried to execute the following Sql command on a Oracle Database 10g Express Edition
    select level,xmlelement(evalname(desc), value1)
    from hr.xml_local
    connect by prior id = id - 1 start with level = 1
    i got this error:
    ORA-19039: The keyword EVALNAME is reserved for future use as a builtin function.
    is there a workaround to avoid this?
    MDK.

    mdrake wrote:
    Catch-22.. The other way of doing this easily is XQuery, but since in 10.2.0.1.0 XQuery had a dependancy on Java, and Java is not supported in XE we are back to square 1.
    The only other ways are (a) string manipulation - which I refuse to discuss, or (b) DOM-APIOr Oracle Support providing the person with the relevant "alter session set events ..." statement to switch on that feature in 10.2.0.1 (as shown in the SQL and PL/SQL forum thread). Obviously as it's from Oracle support, it can't be supplied on the forums.
    ;)

  • Oracle Database 10g Express Edition and Forms 6i

    Hello
    Is it possible to combine those two in an application? I mean...can i make an application in Forms&Reports 6i with Oracle Database 10g Express Edition?
    Sorry if that sounded silly but i didnt found a phrase on this subject on Oracle's forums
    Thanks,
    Oana

    Hi,
    yes, it will work, but only with the Western European Edition, not the Unicode release.
    See this thread for details:
    Re: Connection error from SqlPlus 8.0 to Oracle XE in the same computer
    Regards,
    ~Dietmar.

  • Oracle Database 10g Express Edition with openSUSE 10.3 ?

    The install guide for Oracle Database 10g Express Edition say it requires Suse SLES-9 .
    Does any know if Express Edition can be installed on openSUSE 10.3 ?
    Thanks in advance.

    Likewise. No issues at all.
    You might want to web-search for Novell's orarun package. Not required if you read the install manual and understand Linux, but it helps prep the environment by eliminating some of the guess work.

  • Oracle Database 10g Express Edition & linux Fedora

    Hi guys
    How are you doing?
    I want to ask about my problem which is I can't access to the home page of Oracle Database 10g Express Edition when I press on "Go To Database Home Page" it's open firefox but does not do any thing by the way I try to write the web page http://127.0.0.1:8080/apex on the address bar but firefox give me an error which is "Unable to connect"
    So please when you know the solution post it here step by step "I'm beginner linux user" .
    My distribution is Fedora 14
    ..Thanks a lot
    Saleh

    Was the configure step completed successfully?i.e., did you run
    /etc/init.d/oracle-xe configure after you installed the rpm? This is similar in XE 10g and 11g beta. You can run this again to reenter your configuration parameters, especially concerning HTTP port, and make sure they have the expected values that way.
    Despite that, you could try to (re)start the service, and see if it comes up without errors.
    /etc/init.d/oracle-xe stop
    /etc/init.d/oracle-xe startIf everything doesn't look too bad, you could have a port conflict with another service using port 8080. In that case, you could reconfigure XE to have its HTTP server listening to a different port.
    -Udo

  • Connecting to Oracle Database 10g Express Edition

    Hello guys,
    Im running Windows XP SP2.
    Ive just installed Oracle SQL Developer and Oracle Database 10g Express Edition.
    Im trying to connect via SQL Developer with:
    hr/hr (yes, ive unlocked this user)
    localhost:1521
    sid:orcl
    but then it says:
    "Status: Failure -Listener refused the connection with the following error:ORC-12505, TNS:listener does not currently know of SID given in connect descript..."
    i guess its smth wrong with my SID.
    Im total newbie to oracle, keep that in mind.
    Please help!

    The default SID for Oracle Database 10g Express Edition is XE.

  • Migration Oracle 9iR2 - Oracle Database 10g Express Edition, please, help

    Good day!
    Now I study examples from tutorial book "Oracle 9iR2 Data Warehousing"
    (translated to Russian) written by Lilian Hobbs, Susan Hilson, Shilpa Lawande. However my Oracle is "Oracle Database 10g Express Edition" and ( as I thought ) for this reason I can't perform these examples.
    Please, help me, if it no hard.
    First example founded on using "Oracle Database Configuration Assistant"
    and "Oracle Enterprise Manager Console". However, I not found them at
    "Oracle Database 10g Express Edition".
    Now I use only "Oracle Application Express" ( and SQL ). Please, tell me,
    if "Application Express" has enough functionality with comparision to
    "Oracle Database Configuration Assistant" and "Oracle Enterprise Manager Console"
    and how I need to do ? (It must, because 10 > 9)
    Second example founded on using SQL. First 80% SQL-commanfs of this executed succesfully. But command "CREATE TABLE easydw.purchases" has error message
    "PARTITIONing is not available." Really, in "2 Day Developer Guide"
    (SQL Reserved Words ) PARTITION is not exist.
    Can I CREATE TABLE easydw.purchases by "Oracle Database 10g Express Edition"
    (with PARTITIONing by other means of SQL )?
    There is full text of this SQL-Command:
    CREATE TABLE easydw.purchases
    (product_id varchar2(8)
    constraint not_null_product_id NOT NULL
    constraint fk_product_id
    REFERENCES product(product_id),
    time_key date
    constraint not_null_time NOT NULL
    constraint fk_time
    REFERENCES time(time_key),
    customer_id varchar2(10)
    constraint not_null_customer_id NOT NULL
    constraint fk_customer_id
    REFERENCES customer(customer_id),
    purchase_date date,
    purchase_time number(4,0),
    purchase_price number(6,2),
    shipping_charge number (5,2),
    today_special_offer varchar2(1)
    constraint special_offer
    CHECK (today_special_offer IN ('Y','N')) )
    PARTITION by RANGE (time_key )
    partition purchases_jan2002
    values less than (TO_DATE('01-02-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_jan2002,
    partition purchases_feb2002
    values less than (TO_DATE('01-03-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_feb2002,
    partition purchases_mar2002
    values less than (TO_DATE('01-04-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchasee_mar2002 );
    Naturally, I also shall continue try find solution.
    Winni.

    Winni,
    Partitioning is only available with Oracle Enterprise Edition.
    Here is a list of features by edition:
    http://www.oracle.com/database/product_editions.html
    DBCA is not needed with Express edition because you can only have one XE database per server, and all options are pre-configured.
    Enterprise Manager Console is not included with XE - only with the other editions.
    You can get most of the functionality through SQL, Application Express and SQL Developer.

  • Make Database 10g Express Edition accessible from web

    Hello,
    I'd like to make my Database 10g Express Edition accessible from the web. I'm using a non fixe IP but I can manage putting the dynamic IP into the url when I'll want to connect to it. Is it anything to configure inside the DB config to achieve this aim?
    Actually the DB use 127.0.0.1 on the port 8080. When I try to put my dynamic ip into the URL it doesn't work and the following messag appears:
    'Firefox ne peut établir de connexion avec le serveur à l'adresse 123.123.2.6:8080.'
    (NB: this IP 123.123.2.6 is a fake one for the purpose on hand )
    My OS is Ubuntu 9.x
    Thanks for any help.
    Claude
    Edited by: claude_belgique on 8 févr. 2010 05:52

    In fact I think the question is not Oracle's relevant. It is mutch system lan config I suppose. Then I close the question.
    Claude

  • Oracle Database 10g Express Edition How to change the prot 8080 ????

    Hello I have installed Oracle Database 10g Express Edition
    it listen to port 8080 how can I change it to prot i want ?
    Thanks

    Above post addressed you query. But i suggest Book Mark following doc,it will address most of the queries regarding XE Database
    Oracle Database Express Edition 2 Day DBA

  • Problem upgrading Apex 2.1 to 3.2.1 in Oracle Database 10g Express Edition

    G'Day Apex gurus,
    I installed Oracle Database 10g Express edition in my Windows XP PC which comes with Apex 2.1 with no problems. Then I wanted to upgrade Apex 2.1 to 3.2.1 (Currently Apex download in OTN) following the document below:
    http://www.oracle.com/technology/products/database/application_express/html/3.1_and_xe.html
    I went to the steps:
    @apexins SYSAUX SYSAUX TEMP /i/
    Then to change the password for the admin account run apxchpwd.sql and when prompted enter a password for the ADMIN account.
    @apxchpwd
    with not problems
    Then I connected to SQL*Plus as SYS by:
    sqlplus /nolog
    CONNECT SYS as SYSDBA
    Enter password: xxxxxxxxxxx
    but when I tried to run:
    @APEX_HOME/apex/apxldimg.sql APEX_HOME
    where APEX_HOME is Apex3.2.1 in my case
    SQL> @Apex3.2.1/apex/apxldimg.sql Apex3.2.1 (I get the messages below)
    PL/SQL procedure successfully completed.
    old   1: create directory APEX_IMAGES as '&1/apex/images'
    new   1: create directory APEX_IMAGES as 'Apex3.2.1/apex/images'
    Directory created.
    declare
    *+
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    The system cannot find the path specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.17
    Directory dropped.
    Can anyone help me in how to trouble shout this?
    I tried to continue by following the steps document
    @APEX_HOME/apex/apxxepwd.sql password
    (where password is the password of the Application Express internal ADMIN account)
    but when I tried to login in:
    http://localhost:8080/apex/f?p=4550:1
    when I type the credentials
    system
    system
    systempassword
    nothing happens
    or even If I try:
    http://localhost:8080/apex/f?p=4550:10
    admin
    adminpassword
    nothing happens here too.
    I appreciate any help
    Kind regards
    Carlos

    My database version is 10.2.0.1.0 Oracle express.
    Operating system is Windows Vista.
    I started installing using the following commands.
    @ C:\temp\apex\apexins.sql
    it prompts me for the values of sysaux sysaux temp and c:\temp\apex\images\
    If I supply the value for images the sqlplus window closes after scrolling a lot of info.
    Enroute it also prompts me for a value for 9:
    I don't know what the input shall be.
    Then it again stops at enter value for version:
    I used 3.2.1.0
    The window scrols a while and closes.
    later I changed the password and ran the command.
    @c:\temp\apex\apxldimg.sql c:\temp
    but no success with installation.
    the output is as following.
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 27 18:13:43 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect system/sairam as sysdba;
    Connected.
    SQL> @ c:\temp\apex\apxchpwd
    Enter a value below for the password for the Application Express ADMIN user.
    Enter a password for the ADMIN user []
    Session altered.
    ...changing password for ADMIN
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 3:
    ORA-06550: line 3, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 3, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_USER' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 5, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 5, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 8, column 23:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 7, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 13, column 32:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 12, column 9:
    PL/SQL: Statement ignored
    ORA-06550: line 19, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 19, column 5:
    PL/SQL: Statement ignored
    Commit complete.
    SQL> @c:\temp\apex\apxldimg.sql c:\temp
    PL/SQL procedure successfully completed.
    Directory created.
    if wwv_flow_utilities.db_version_is_at_least('11') then
    ERROR at line 32:
    ORA-06550: line 32, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 32, column 3:
    PL/SQL: Statement ignored
    PL/SQL procedure successfully completed.
    if wwv_flow_utilities.db_version_is_at_least('11') then --11g only
    ERROR at line 16:
    ORA-06550: line 16, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 16, column 3:
    PL/SQL: Statement ignored
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.32
    Directory dropped.
    SQL>
    Does this require XE 11 or anything else.
    This will happen even if I supply as following(closing of sqlplus in the begining).
    @ C:\temp\apex\apexins.sql sysaux sysaux temp c:\temp\apex\images\
    Any help.

  • Oracle Database 10g Express Edition installing on win2003 SP2

    We are trying to install oracleXE on W2k3 SP2 and getting failed after diplaying "Publishing product information" at final stage. Noting is prompted after this step.

    Many Thanks for the response. These are the few lines. Please let me know if you wish to view the complete log. plz share you mail id, so that i can share the complete log.
    Property(S): RESOURCES = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\
    Property(S): DE = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\de\
    Property(S): DEFAULTS = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\admin\defaults\
    Property(S): DELX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\delx\
    Property(S): DEMO = C:\oraclexe\app\oracle\product\10.2.0\server\demo\
    Property(S): DEMO1 = C:\oraclexe\app\oracle\product\10.2.0\server\nls\demo\
    Property(S): DIRPROPERTY1 = D:\
    Property(S): DOC1 = C:\oraclexe\app\oracle\product\10.2.0\server\doc\
    Property(S): DOC3 = C:\oraclexe\app\oracle\product\10.2.0\server\precomp\doc\
    Property(S): ODP.NET1 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\
    Property(S): DOC6 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\doc\
    Property(S): DesktopFolder = C:\Documents and Settings\All Users\Desktop\
    Property(S): ENLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\enlx\
    Property(S): ES = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\es\
    Property(S): ESLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\eslx\
    Property(S): FLASH_RECOVERY_AREA = C:\oraclexe\app\oracle\flash_recovery_area\
    Property(S): FR = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\fr\
    Property(S): FRLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\frlx\
    Property(S): FavoritesFolder = C:\Documents and Settings\-oper-lrajesh\Favorites\
    Property(S): FontsFolder = C:\WINDOWS\Fonts\
    Property(S): GIFS = C:\oraclexe\app\oracle\doc\dcommon\gifs\
    Property(S): GlobalAssemblyCache = D:\
    Property(S): HELP = C:\oraclexe\app\oracle\product\10.2.0\server\precomp\help\
    Property(S): HELP1 = C:\oraclexe\app\oracle\product\10.2.0\server\sqlplus\admin\help\
    Property(S): HELP2 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\
    Property(S): ODBC = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\
    Property(S): HELP3 = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\help\
    Property(S): HTML = C:\oraclexe\app\oracle\doc\dcommon\html\
    Property(S): HTML2 = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\html\
    Property(S): SCHEMA1 = C:\oraclexe\app\oracle\product\10.2.0\server\demo\schema\
    Property(S): HUMAN_RESOURCES = C:\oraclexe\app\oracle\product\10.2.0\server\demo\schema\human_resources\
    Property(S): IMG = C:\oraclexe\app\oracle\doc\img\
    Property(S): IMG_TEXT = C:\oraclexe\app\oracle\doc\img_text\
    Property(S): INCLUDE = C:\oraclexe\app\oracle\product\10.2.0\server\plsql\include\
    Property(S): OCI = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\
    Property(S): INCLUDE2 = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\include\
    Property(S): OLEDB = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\
    Property(S): INCLUDE3 = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\include\
    Property(S): INSTALL3 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\install\
    Property(S): ORACLEXE = C:\oraclexe\
    Property(S): ProgramFilesFolder = C:\Program Files\
    Property(S): ISMyCompanyDir = C:\Program Files\My Company Name\
    Property(S): ISMyProductDir = C:\Program Files\My Company Name\My Product Name\
    Property(S): IT = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\it\
    Property(S): ITLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\itlx\
    Property(S): LOG1 = C:\oraclexe\app\oracle\product\10.2.0\server\log\
    Property(S): IWINRBB09 = C:\oraclexe\app\oracle\product\10.2.0\server\log\iwinrbb09\
    Property(S): JA = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\ja\
    Property(S): JA1 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ja\
    Property(S): JA2 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\ja\
    Property(S): JALX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\jalx\
    Property(S): JDBC = C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\
    Property(S): JLIB = C:\oraclexe\app\oracle\product\10.2.0\server\jlib\
    Property(S): JLIB1 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\jlib\
    Property(S): KO = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ko\
    Property(S): KOLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\kolx\
    Property(S): LDAP = C:\oraclexe\app\oracle\product\10.2.0\server\ldap\
    Property(S): LIB = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\lib\
    Property(S): LIB1 = C:\oraclexe\app\oracle\product\10.2.0\server\precomp\lib\
    Property(S): LIB2 = C:\oraclexe\app\oracle\product\10.2.0\server\opmn\lib\
    Property(S): LIB3 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\lib\
    Property(S): LIB4 = C:\oraclexe\app\oracle\product\10.2.0\server\LIB\
    Property(S): LIB5 = C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\
    Property(S): LIB6 = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\lib\
    Property(S): LOG = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\log\
    Property(S): LOG2 = C:\oraclexe\app\oracle\product\10.2.0\server\config\log\
    Property(S): LocalAppDataFolder = C:\Documents and Settings\-oper-lrajesh\Local Settings\Application Data\
    Property(S): SLAX = C:\oraclexe\app\oracle\product\10.2.0\server\slax\
    Property(S): MESG = C:\oraclexe\app\oracle\product\10.2.0\server\slax\mesg\
    Property(S): MESG1 = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\mesg\
    Property(S): MESG10 = C:\oraclexe\app\oracle\product\10.2.0\server\opmn\mesg\
    Property(S): MESG11 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\mesg\
    Property(S): MESG13 = C:\oraclexe\app\oracle\product\10.2.0\server\sqlplus\mesg\
    Property(S): MESG15 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\mesg\
    Property(S): MESG2 = C:\oraclexe\app\oracle\product\10.2.0\server\plsql\mesg\
    Property(S): MESG3 = C:\oraclexe\app\oracle\product\10.2.0\server\nls\mesg\
    Property(S): MESG4 = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\mesg\
    Property(S): MESG5 = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\mesg\
    Property(S): XDK = C:\oraclexe\app\oracle\product\10.2.0\server\xdk\
    Property(S): MESG6 = C:\oraclexe\app\oracle\product\10.2.0\server\xdk\mesg\
    Property(S): ORACORE = C:\oraclexe\app\oracle\product\10.2.0\server\oracore\
    Property(S): MESG7 = C:\oraclexe\app\oracle\product\10.2.0\server\oracore\mesg\
    Property(S): MESG8 = C:\oraclexe\app\oracle\product\10.2.0\server\ldap\mesg\
    Property(S): MIGRATE_DIR = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\migrate\
    Property(S): MSVC = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\lib\MSVC\
    Property(S): ORACLE_CORPORATION = C:\Program Files\Oracle Corporation\
    Property(S): MY_PRODUCT_NAME = C:\Program Files\Oracle Corporation\My Product Name\
    Property(S): MyPicturesFolder = C:\Documents and Settings\-oper-lrajesh\My Documents\My Pictures\
    Property(S): NLLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\nllx\
    Property(S): ODE = C:\oraclexe\app\oracle\product\10.2.0\server\ODE\
    Property(S): _0.2.0 = C:\oraclexe\app\oracle\product\10.2.0\
    Property(S): WindowsVolume = C:\
    Property(S): ORACLE_XE = C:\Program Files\Oracle Corporation\Oracle XE\
    Property(S): OUI = C:\oraclexe\app\oracle\product\10.2.0\server\cfgtoollogs\oui\
    Property(S): OWM = C:\oraclexe\app\oracle\product\10.2.0\server\owm\
    Property(S): PRODUCT = C:\oraclexe\app\oracle\product\
    Property(S): PT_BR = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\pt-BR\
    Property(S): PUBLIC3 = C:\oraclexe\app\oracle\product\10.2.0\server\oramts\public\
    Property(S): PUBLISHERPOLICY = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\PublisherPolicy\
    Property(S): PersonalFolder = C:\Documents and Settings\-oper-lrajesh\My Documents\
    Property(S): PrimaryVolumePath = D:\
    Property(S): ProgramFiles64Folder = D:\
    Property(S): ProgramMenuFolder = C:\Documents and Settings\All Users\Start Menu\Programs\
    Property(S): SAMPLE = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN\SAMPLE\
    Property(S): SAMPLE2 = C:\oraclexe\app\oracle\product\10.2.0\server\admin\sample\
    Property(S): SAMPLES = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\samples\
    Property(S): SCRIPTS1 = C:\oraclexe\app\oracle\product\10.2.0\server\config\scripts\
    Property(S): SEEDDB = C:\oraclexe\app\oracle\product\10.2.0\server\config\seeddb\
    Property(S): SRVM = C:\oraclexe\app\oracle\product\10.2.0\server\srvm\
    Property(S): SendToFolder = C:\Documents and Settings\-oper-lrajesh\SendTo\
    Property(S): StartMenuFolder = C:\Documents and Settings\All Users\Start Menu\
    Property(S): StartupFolder = C:\Documents and Settings\All Users\Start Menu\Programs\Startup\
    Property(S): System16Folder = C:\WINDOWS\system\
    Property(S): System64Folder = D:\
    Property(S): SystemFolder = C:\WINDOWS\system32\
    Property(S): SourceDir = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\
    Property(S): TRACE = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\trace\
    Property(S): TRACE1 = C:\oraclexe\app\oracle\product\10.2.0\server\oramts\trace\
    Property(S): TRACE2 = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\trace\
    Property(S): TempFolder = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\
    Property(S): TemplateFolder = C:\Documents and Settings\All Users\Templates\
    Property(S): USERPROFILE = C:\Documents and Settings\-oper-lrajesh\
    Property(S): VC71 = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\lib\MSVC\vc71\
    Property(S): WindowsFolder = C:\WINDOWS\
    Property(S): XA = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\XA\
    Property(S): XE2 = C:\oraclexe\app\oracle\flash_recovery_area\XE\
    Property(S): XML = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\xml\
    Property(S): XXLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\xxlx\
    Property(S): ZHLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\zhlx\
    Property(S): ZONEINFO = C:\oraclexe\app\oracle\product\10.2.0\server\oracore\zoneinfo\
    Property(S): newfolder1 = C:\Documents and Settings\All Users\Start Menu\Programs\Oracle Database 10g Express Edition\
    Property(S): newfolder2 = C:\Documents and Settings\All Users\Start Menu\Programs\Oracle Database 10g Express Edition\Get Help\
    Property(S): _781042AB71DC4D58AEFDC83AFA6603C3 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\delx\
    Property(S): _7DB1B2C8944C4054BCC8C4500F37049C = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\enlx\
    Property(S): _C47544281E2F4507BDADF8C3ECB1568E = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\eslx\
    Property(S): _91B054F49ECC497AB485FC09F4A586A2 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\frlx\
    Property(S): _33DB7C9A5200482CB2F5310F002805A1 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\itlx\
    Property(S): _7CD34E90D6F04BC88D98DE349DFF3CFD = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\jalx\
    Property(S): _4394EB4FE2AD4AC3977E96E14A074BE8 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\kolx\
    Property(S): _B93C978070284B47AB72A0BBF9AE0206 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\nllx\
    Property(S): _4CBEF1293D584608B7C996039CB10472 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\xxlx\
    Property(S): _35AF789A79614E4FB411E8DD5E191A99 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\zhlx\
    Property(S): _125D15172A3E408AB30DF25DFACDA298 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\ja\
    Property(S): _1D715EB43CA34692A8A7182FA7817BEC = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\de\
    Property(S): _2CAB3BBCB9354C9387FC313D7A2C1EEB = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\es\
    Property(S): _3904DD47B9F6426CAAC171797F64E1B3 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\fr\
    Property(S): _DF56685F21CB4558BCD9A5B88ED4151E = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\it\
    Property(S): _C5DE329B16584BAE9DE223D4510192D7 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ja\
    Property(S): _12900F77D1294A7EAFA13ADF5B599D1C = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ko\
    Property(S): _863AA42463B64FC2B896AE7A2D729BA1 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\pt-BR\
    Property(S): _A62C1E6B40CC4EAB83EF4114BE8F5533 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\zh-CHS\
    Property(S): _2AD8F73997334D64A411704F544084F7 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\zh-CHT\
    Property(S): ProductState = -1
    Property(S): TRANSFORMSATSOURCE = 1
    Property(S): TRANSFORMSSECURE = 1
    Property(S): TRANSFORMS = |C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\1033.MST
    Property(S): RecacheTransforms = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\1033.MST
    Property(S): PackageCode = {32D9C15A-C7C5-4D45-AAE0-B5DB53447098}
    Property(S): ___________3 = ?,?????????
    Property(S): ________p_3 = ?,???? %p?
    Property(S): _Modify = &Modify
    Property(S): ARPNOMODIFY = 1
    Property(S): ARPPRODUCTICON = ARPPRODUCTICON.exe
    Property(S): ARPURLINFOABOUT = http://www.oracle.com
    Property(S): AvailableSpaceInDrive = 0
    Property(S): Avvia__p_adesso. = Avvia %p adesso.
    Property(S): Avvia__p_adesso.1 = Avvia %p adesso.
    Property(S): BUILDTYPE = 87
    Property(S): DWUSINTERVAL = 30
    Property(S): DWUSLINK = CE9C27889E6CD79FFEACD0AF1EFB978FE98BA78FCE1CC08FCEABB7D8FE3CF788DECCE0FFD9AC
    Property(S): DefaultUIFont = Tahoma8
    Property(S): HOSTNAME = localhost
    Property(S): ISSCRIPT_ENGINE_VERSION = 11.0.0.28844
    Property(S): ISSCRIPT_VERSION_MISSING = The InstallScript engine is missing from this machine. If available, please run ISScript.msi, or contact your support personnel for further assistance.
    Property(S): ISSCRIPT_VERSION_OLD = The InstallScript engine on this machine is older than the version required to run this setup. If available, please install the latest version of ISScript.msi, or contact your support personnel for further assistance.
    Property(S): ISVROOT_PORT_NO = 0
    Property(S): IS_COMPLUS_PROGRESSTEXT_COST = Costing COM+ application: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_INSTALL = Installing COM+ application: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_UNINSTALL = Uninstalling COM+ application: [1]
    Property(S): IS_PROGMSG_XML_COSTING = Costing XML files...
    Property(S): IS_PROGMSG_XML_CREATE_FILE = Creating XML file %s...
    Property(S): IS_PROGMSG_XML_FILES = Performing XML file changes...
    Property(S): IS_PROGMSG_XML_REMOVE_FILE = Removing XML file %s...
    Property(S): IS_PROGMSG_XML_ROLLBACK_FILES = Rolling back XML file changes...
    Property(S): IS_PROGMSG_XML_UPDATE_FILE = Updating XML file %s...
    Property(S): IS_SQLSERVER_AUTHENTICATION = 0
    Property(S): IS_SQLSERVER_USERNAME = sa
    Property(S): Ja__ReadMe_Datei_jetzt_anzeigen. = Ja, ReadMe-Datei jetzt anzeigen.
    Property(S): Ja__ReadMe_Datei_jetzt_anzeigen.1 = Ja, ReadMe-Datei jetzt anzeigen.
    Property(S): Ja___p_jetzt_starten. = Ja, %p jetzt starten.
    Property(S): Ja___p_jetzt_starten.1 = Ja, %p jetzt starten.
    Property(S): MTSNOI = 1
    Property(S): MTSPORTNUM = 2030
    Property(S): Manufacturer = Oracle Corporation
    Property(S): NLS_LANG = ENGLISH_UNITED KINGDOM.WE8MSWIN1252
    Property(S): NewProperty1 = 0
    Property(S): NewProperty10 = 0
    Property(S): NewProperty11 = 0
    Property(S): NewProperty12 = 0
    Property(S): NewProperty13 = 0
    Property(S): NewProperty14 = 0
    Property(S): NewProperty15 = 0
    Property(S): NewProperty16 = 0
    Property(S): NewProperty17 = 0
    Property(S): NewProperty18 = 0
    Property(S): NewProperty19 = 0
    Property(S): NewProperty2 = 0
    Property(S): NewProperty3 = 0
    Property(S): NewProperty4 = 0
    Property(S): NewProperty5 = 0
    Property(S): NewProperty6 = 0
    Property(S): NewProperty7 = 0
    Property(S): NewProperty8 = 0
    Property(S): NewProperty9 = 0
    Property(S): Oui__je_d_sire_lancer__p_maintenant. = Oui, je désire lancer %p maintenant.
    Property(S): Oui__je_d_sire_lancer__p_maintenant.1 = Oui, je désire lancer %p maintenant.
    Property(S): Oui__je_souhaite_lire_le_fichier_Lisez_moi. = Oui, je souhaite lire le fichier Lisez-moi.
    Property(S): Oui__je_souhaite_lire_le_fichier_Lisez_moi.1 = Oui, je souhaite lire le fichier Lisez-moi.
    Property(S): PROGMSG_IIS_CREATEAPPPOOL = Creating application pool %s
    Property(S): PROGMSG_IIS_CREATEAPPPOOLS = Creating application Pools...
    Property(S): PROGMSG_IIS_CREATEVROOT = Creating IIS virtual directory %s
    Property(S): PROGMSG_IIS_CREATEVROOTS = Creating IIS virtual directories...
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSION = Creating web service extension
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSIONS = Creating web service extensions...
    Property(S): PROGMSG_IIS_EXTRACT = Extracting information for IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTDONE = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTDONEz = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTzDONE = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_REMOVEAPPPOOL = Removing application pool
    Property(S): PROGMSG_IIS_REMOVEAPPPOOLS = Removing application pools...
    Property(S): PROGMSG_IIS_REMOVESITE = Removing web site at port %d
    Property(S): PROGMSG_IIS_REMOVEVROOT = Removing IIS virtual directory %s
    Property(S): PROGMSG_IIS_REMOVEVROOTS = Removing IIS virtual directories...
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSION = Removing web service extension
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSIONS = Removing web service extensions...
    Property(S): PROGMSG_IIS_ROLLBACKAPPPOOLS = Rolling back application pools...
    Property(S): PROGMSG_IIS_ROLLBACKVROOTS = Rolling back virtual directory and web site changes...
    Property(S): PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS = Rolling back web service extensions...
    Property(S): ProductCode = {F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}
    Property(S): ProductName = Oracle Database 10g Express Edition
    Property(S): ProductVersion = 10.2.1015
    Property(S): REBOOT = Suppress
    Property(S): RequiredSpaceInDrive = 0
    Property(S): STANDARD_USE_SETUPEXE = This installation cannot be run by directly launching the MSI package. You must run setup.exe.
    Property(S): S___deseo_consultar_el_archivo_L_ame. = Sí, deseo consultar el archivo Léame.
    Property(S): S___deseo_consultar_el_archivo_L_ame.1 = Sí, deseo consultar el archivo Léame.
    Property(S): S___deseo_lanzar__p_ahora. = Sí, deseo lanzar %p ahora.
    Property(S): S___deseo_lanzar__p_ahora.1 = Sí, deseo lanzar %p ahora.
    Property(S): SecureCustomProperties = ISALWAYSINSTALLELEVATED;ISSETUPDRIVEN;ARPSYSTEMCOMPONENT;ARPNOMODIFY;ARPNOREMOVE;INSTALLDIR
    Property(S): Sim__desejo_executar_o__p_agora. = Sim, desejo executar o %p agora.
    Property(S): Sim__desejo_executar_o__p_agora.1 = Sim, desejo executar o %p agora.
    Property(S): Sim__quero_visualizar_o_arquivo_Leiame. = Sim, quero visualizar o arquivo Leiame.
    Property(S): Sim__quero_visualizar_o_arquivo_Leiame.1 = Sim, quero visualizar o arquivo Leiame.
    Property(S): Visualizza_il_file_Leggimi. = Visualizza il file Leggimi.
    Property(S): Visualizza_il_file_Leggimi.1 = Visualizza il file Leggimi.
    Property(S): Yes__I_want_to_launch__p_now. = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.1 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.2 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.3 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.4 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.5 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_view_the_ReadMe_file. = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.1 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.2 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.3 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.4 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.5 = Yes, I want to view the ReadMe file.
    Property(S): ___ReadMe__________. = ?, ReadMe ??? ?????.
    Property(S): ___ReadMe__________.1 = ?, ReadMe ??? ?????.
    Property(S): ___ReadMe____________ = ???ReadMe ???????????
    Property(S): ___ReadMe____________1 = ???ReadMe ???????????
    Property(S): ___________ = ?,?????????
    Property(S): ___________1 = ?,?????????
    Property(S): ___________2 = ?,?????????
    Property(S): ________p_ = ?,???? %p?
    Property(S): ________p_1 = ?,???? %p?
    Property(S): ________p_2 = ?,???? %p?
    Property(S): ________p________ = ?????? %p ???????
    Property(S): ________p________1 = ?????? %p ???????
    Property(S): ________p_____________. = ?, ?? '%p'?(?) ???????.
    Property(S): ________p_____________.1 = ?, ?? '%p'?(?) ???????.
    Property(S): ARPINSTALLLOCATION = C:\oraclexe\
    Property(S): ProductLanguage = 1033
    Property(S): COMPANYNAME = KPMG
    Property(S): INSTALLLEVEL = 1
    Property(S): INSTALLSHIELDSETUPLANGUAGE = 1033
    Property(S): ISSETUPDRIVEN = 1
    Property(S): ISSETUPFILESCOMPLETED = Completed
    Property(S): ISSETUP_UISEQUENCE_PROCESSED = 1
    Property(S): ROOTDRIVE = D:\
    Property(S): SETUPEXEDIR = C:\temp\fabric manager
    Property(S): SUPPORTDIR = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}
    Property(S): USERNAME = KPMG
    Property(S): ARPSYSTEMCOMPONENT = 1
    Property(S): ARPNOREMOVE = 1
    Property(S): CURRENTDIRECTORY = C:\WINDOWS\system32
    Property(S): CLIENTUILEVEL = 3
    Property(S): CLIENTPROCESSID = 4636
    Property(S): VersionDatabase = 200
    Property(S): VersionMsi = 3.01
    Property(S): WindowsBuild = 3790
    Property(S): ServicePackLevel = 2
    Property(S): ServicePackLevelMinor = 0
    Property(S): MsiNTProductType = 3
    Property(S): RemoteAdminTS = 1
    Property(S): NetHoodFolder = C:\Documents and Settings\-oper-lrajesh\NetHood\
    Property(S): PrintHoodFolder = C:\Documents and Settings\-oper-lrajesh\PrintHood\
    Property(S): RecentFolder = C:\Documents and Settings\-oper-lrajesh\Recent\
    Property(S): GPTSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): ShellAdvtSupport = 1
    Property(S): Intel = 15
    Property(S): PhysicalMemory = 2047
    Property(S): VirtualMemory = 3152
    Property(S): AdminUser = 1
    Property(S): LogonUser = -oper-lrajesh
    Property(S): UserSID = S-1-5-21-1965243242-631715425-1848903544-213045
    Property(S): UserLanguageID = 2057
    Property(S): ComputerName = UKWATAPP29
    Property(S): SystemLanguageID = 2057
    Property(S): ScreenX = 1024
    Property(S): ScreenY = 768
    Property(S): CaptionHeight = 19
    Property(S): BorderTop = 1
    Property(S): BorderSide = 1
    Property(S): TextHeight = 16
    Property(S): ColorBits = 16
    Property(S): TTCSupport = 1
    Property(S): Time = 10:45:57
    Property(S): Date = 07/05/2009
    Property(S): MsiNetAssemblySupport = 1.1.4322.2300
    Property(S): MsiWin32AssemblySupport = 5.2.3790.3959
    Property(S): RedirectedDllSupport = 2
    Property(S): Privileged = 1
    Property(S): DATABASE = C:\WINDOWS\Installer\3d91347.msi
    Property(S): OriginalDatabase = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\Oracle Database 10g Express Edition.msi
    Property(S): UILevel = 2
    Property(S): Preselected = 1
    Property(S): ACTION = INSTALL
    Property(S): ISStartupEvent = E4351944
    Property(S): ff9ef67406aa11d5ab9800b0d02332eb = g
    Property(S): CLEANUPUNINSTALLROLLBACK = Waiting
    Property(S): CostingComplete = 1
    Property(S): OutOfDiskSpace = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): SOURCEDIR = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\
    Property(S): SourcedirProduct = {F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}
    Property(S): ProductToBeRegistered = 1
    MSI (s) (DC:0C) [10:45:57:884]: Note: 1: 1708
    MSI (s) (DC:0C) [10:45:57:884]: Product: Oracle Database 10g Express Edition -- Installation operation failed.
    MSI (s) (DC:0C) [10:45:57:884]: Attempting to delete file C:\WINDOWS\Installer\3d91348.mst
    MSI (s) (DC:0C) [10:45:57:884]: Unable to delete the file. LastError = 32
    MSI (s) (DC:0C) [10:45:57:900]: Cleaning up uninstalled install packages, if any exist
    MSI (s) (DC:0C) [10:45:57:900]: MainEngineThread is returning 1602
    MSI (s) (DC:D4) [10:45:57:916]: Destroying RemoteAPI object.
    MSI (s) (DC:AC) [10:45:57:916]: Custom Action Manager thread ending.
    === Logging stopped: 07/05/2009 10:45:57 ===
    MSI (c) (1C:40) [10:45:58:150]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (1C:40) [10:45:58:150]: MainEngineThread is returning 1602
    === Verbose logging stopped: 07/05/2009 10:45:58 ===

  • [Oracle Database 10g Express Edition] Don't UP

    Hi,
    I've installed the "Oracle Database 10g Express Edition" in my laptop, ThinkPad T60. The installation finish fine or I think that.
    In the event viewer I don't see any error.
    But I cant sing on in SQL/PLUS and I can't go to web config. All services are up.
    The erro when i conect by SQL PLUS are:
    SQL> connect system/PASSWORD as sysdba
    ERROR:
    ORA-12560: TNS:error del adaptador de protocolo
    SQL> connect system/PASSWORD@localhost as sysdba
    ERROR:
    ORA-12514: TNS:el listener no conoce actualmente el servicio solicitado en el
    descriptor de conexión
    I cant found the error becose It happens.
    I uninstall the database, erase the registry of Windows and Install again. But nothing success. I uninstall again, erase the registry, download again from www.oracle.com all continuous one equally.
    Thanks for all!

    SQL*Plus: Release 10.2.0.1.0 - Production on Vie Oct 20 14:47:04 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect / as sysdba
    Conectado a una instancia inactiva.
    SQL> connect sys/PASSWORD@localhost as sysdba
    ERROR:
    ORA-12514: TNS:el listener no conoce actualmente el servicio solicitado en el
    descriptor de conexi¾n
    Advertencia: íYa no estß conectado a ORACLE!
    SQL>
    The Services are UP.
    The name of enviourment varible is oracle_sid but the value is?
    In My PC --> Propierties ---> Advanced Option ---> Enviorurment variable
    System or User?
    Thanks an i waiting for your help

  • Oracle Database 10g Express Edition Beta 2 Installation

    Oracle Database 10g Express Edition Beta 2 Release for Microsoft Windows installation successful, no problems.

    Hi Rekha,
    The format mask 999G999G999G999G990D0000 is the format mask that I selected from the software itself. I also use this format mask for a single record update. If' s ok, no error, but with tabular form with multiple record update, it shows error .I also changed the decimal point to two digits ,select from software pop-up window (this was tested in the workspace provide by Oracle). It still shows error. Last test I put the space like 1 111,111.00 in a single record update it shows error (but if I put 1 in front of 111,111 without space it's ok-no space before). My point is from user point of view.In the first time user input 100000 the software accept it. Opp! it has to be 1100000. The user comes back after submit and put 1 without comma.It shows error (in tabular form with multiple record update not in single row update). While in the first time the user do not to key any comma at all. This may makes some confuses both the users and the developers which had to check error by adding program to checking some where in Page Processing or Page Rendering.
    Thanks
    Tritep

  • Oracle Database 10g Express Edition for Microsoft Windows-port 8080 proble

    I have installed Oracle Database 10g Express Edition for Microsoft Windows, it listen to port 8080, where can I change this port ?
    Thanks

    Inside the database. Search the XE forum for how to do it, it's been done there many times :)
    ~Jer

Maybe you are looking for