Database 10g personal edtion with apex3.0?

Hi gurus,
I just installed Database 10g personal edtion, and I want to install apex 3.0, is it Ok?

According to http://www.oracle.com/technology/products/database/oracle10g/pdf/twp_general_10gdb_product_family.pdf
Oracle 10g Personal Edition is equal to a Oracle 10g Enterprise Edition, so APEX 3.0 should work on the Personal Edition, too.
Just go ahead and try the installation.
Patrick
Check out my APEX-blog: http://inside-apex.blogspot.com
Check out the ApexLib Framework: http://apexlib.sourceforge.net

Similar Messages

  • Oracle Database 10g Personal Edition. I can't find download.

    I am looking for a Oracle release to work at home. I need compatibility with Oracle 9i, release installed at work. I think Oracle Database 9i Personal Edition would be perfect, but I didn't find where is the correct download for Linux.
    I didn't find the Oracle Database 10g Personal Edition download too. Is there another name?

    The enterprise edition download CD will give you the option of installing the personal edition as one of the install options.

  • 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 connectivity problem with Report Builder

    Hi,
    I need to amend a .rdf report and am using the dev10g. I can't connect the test database from report builder.
    It is getting the error like :
    "ORA-12154 : TNS: could not resolve service name".
    I can connect the database from sql*plus, Toad etc. Also It's giving me the response when I run the TNSPING command with the database name.
    Could someone advise me that how can I resolve this problem?
    Thanks,

    set the TNS_ADMIN variable point to the correct tnsnames.ora file
    or try the note mentioned in http://www.alexyscorp.com/products.htm
    Lastly try opening a command line/dos prompt, set the TNS_ADMIN variablea and start the reports builder from commandline
    Rajesh

  • Oracle Data Miner 10.1.0.2 Interoperate with Database 10g Release 2

    Hi all,
    I cannot connect from Oracle Data Miner to a newly upgraded Database 10g Release 2 with Data Mining option. This database was 10.1.0.2 before upgrade, and I could connect via Oracle Data Miner before the upgrade (though it needs to be upgraded to 10.1.0.3+ for data mining to function).
    I have similar problem for a new installation on another computer. The error message in either case is "Cannot connect to specified Data Mining Server. Check connection information and try again."
    I can use SQL*Plus to login as the data mining user using the net service corresponding to the connect string. I check the v$option and DBA_REGISTRY as per the Data Mining Admin. documentation to verify that the data mining option exists and is valid. I am able to use the same connect string "host:port:SID" to connect from Analytical Workspace Manager to verify that the connectivity is OK.
    Furthermore, some Oracle by Example seems not valid for a DB of version 10.2. For example, at the URL http://www.oracle.com/technology/obe/obe10gdb/bidw/odm/odm.htm#p, the point 6 <ORACLE_HOME>\dm\lib\odmapi.jar is not applicable, because the path <ORACLE_HOME>\dm no longer exists.
    Therefore, I have query if Oracle Data Miner 10.1.0.2 can work with DB 10.2? What procedure should I follow? Please advise.
    Thanks and regards,
    lawman

    I am waiting on the beta version since I have installed Oracle10gR2.
    I've been checking the OTN website every day to see when it is released.
    If it is not a bother, can you send me an email when I can download it.
    Thanks in advance.
    Have a wonderful day/weekend,
    Andy

  • 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.

  • Windows server 2008 sp2 andoracle database 10g r2

    We have created a server with windows server 2008 sp2, installing various roles, active directory, domain, dhcp server, dns server, some others, and various functionalities, and all works fine.
    After all of this we are trying to install oracle database 10g, 'cause compatibiliy with an already existing db running at the moment under this database platform, using oracle universal installer, and when the launcer starts the procedure oracle database configuration assistant its windows come out and after just the 2% of the procedure it stops with ora-12560 error.
    Before this not any kind of error appear.
    the windows firewall security windows that appears, just 2, are unlocked by clicking the unlock button.
    All seems configured right.
    The listener service, oracleoradb10g_home1tnslistner, seems configured right, automatically configured from the setup procedure just before the oracle database configuration assistant, and is running.
    This is the only one service created and running, at this point of the installation, from oracle.
    the global database we are trying to create is named orcl, but in any place this name is found at the moment that the installation stops.
    I hope that someone can help with this 'cause are 5 days that we are blocked with the installation and can't install the server in its environment.
    We are desperates.

    At this link
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10203vista.html
    it says server and client for windows 2008 not just client.
    Not only.
    If I install this with no creation of the active directory and the domain, with all the rest, the installation work till the end without any error.
    And anyway the error i reported in the first post happen the same, exactly the same point of the installation, with the 11g version too.
    Waiting and hoping can be helped
    Best regards.

  • Download problems Oracle Database 10g Express Edition

    Completed download.
    Attempted to start application but cannot find the server.
    Removed the software using add/remove programs.
    Attempted to reinstall but it seems that some applications are still on my system.
    Attempted to remove the application but the add/remove program does not recognized the application
    What can I do.

    Hello,
    I need to install "Oracle database 10g Express Edition" with different database name example dev but it is taking
    default name that is XE and there is no option come during installation where i can put the name of database as per my desire.First, note that you can't install more than one instance of XE per server. Changing the instance name won't help you with that.
    As you've already found out, the installer always creates a database instance with default names. That's part of the "Express" concept: As little configuration as necessary to get a Oracle Database installed with just a few clicks. The second advantage is, that you can also simplify the documentation, as you can forget about several aspects when you don't have to configure them...
    Since you don't have tools like dbca in XE, your only option would be to rename the database once it's created. There are a few threads on that topic in this forum, e. g. {thread:id=403056}.
    But before you start working on that, could you explain why exactly you have to use a different database/instance name?
    And also explain why we use "Oracle database 10g Express Edition" instead of Oracle database 10g. what is the meaning of Express Edition.Why and how should we answer why you picked a certain edition? The most likely cause is license costs: XE is available for free, all others are just free as long as you use the OTN license...
    For an overview, there is a [url http://www.oracle.com/us/products/database/enterprise-edition/comparisons/index.html]Comparison Matrix for Oracle Database Editions.
    I'd furthermore ask why you still use 10g XE instead of the current 11g XE?
    -Udo

  • Oracle Database 10g and jdk 6

    does Oracle Database 10g driver work with java jdk 6
    I am returning a ref cursor from pl-sql to java and when I do
    cs.registerOutParameter(2, OracleTypes.CURSOR);
    it will throw ora 17004, invalid column type 246
    I am trying to migrate my app from jboss to weblogic 10.3.4
    George

    Yes it works. But OJDBC6 also works fine for connecting to 10g, all drivers are backwards compatible.
    it will throw ora 17004, invalid column type 246So you are saying that this is not happening when running Java 1.4? I find that highly doubtful, the driver is not going to change its behavior based on the JDK version.

  • Oracle 10g Personal edition as a Client Database

    Hi, Our enterprise application runs as in both Online and offline mode. For offline mode it uses Microsoft accesss as Data Store. Now we want to use Oracle 10g Personal Edition as Our client database, so that we can use stored procedure and have code base for both server and client. Oracle XE can not be used because Oracle XE is not supported by Oracle.
    Please suggest what is the best way to deploy Oracle PE to get smallest footprint and best performance. It is alright to use PE as client DB or it is too much for offline application.
    Any suggested customizations or Alternatives. We have rules out Oracle Database lite because it doesn't support Pl/ SQL SP. Thanks.

    Note that Personal Edition is actually designed for Developers. It includes all options to the Enterprise Edition (except RAC) but is limited by license agreement to being used by one named person. You can not legally provide data from Personal Edition through direct connection electronically (eg: a web or app server) to several people. You also can not say "John is using it now, and when he is off, Fred will use it."
    The best and smallest footprinit is XE, but (as you say) you can not purchasse support from Oracle. Next is Standard Edition 1, with a Standard Edition software install (SE and SE1 are the same s/w) and a custom-created DB.

  • Problem with Character Set in Oracle database 10g

    Hi,
    I tried to import one tablespace into test server. Source server with Oracle 8i and Target server with Oracle database 10g. The error I get is
    Import: Release 10.2.0.1.0 - Production on Thu Aug 3 00:20:49 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Username: sys as sysdba
    Password:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V08.01.07 via conventional path
    About to import transportable tablespace(s) metadata...
    import done in WE8DEC character set and AL16UTF16 NCHAR character set
    export server uses WE8DEC NCHAR character set (possible ncharset conversion)
    . importing SYS's objects into SYS
    . importing SYS's objects into SYS
    IMP-00017: following statement failed with ORACLE error 19736:
    "BEGIN sys.dbms_plugts.beginImport ('8.1.7.4.0',2,'2',NULL,'NULL',67051,25"
    "51,2); END;"
    IMP-00003: ORACLE error 19736 encountered
    ORA-19736: can not plug a tablespace into a database using a different national character set
    ORA-06512: at "SYS.DBMS_PLUGTS", line 2386
    ORA-06512: at "SYS.DBMS_PLUGTS", line 1946
    ORA-06512: at line 1
    IMP-00000: Import terminated unsuccessfully
    PLZ somebody help in geting resolve this. Has anybody seen this error before.

    The solution to this problem is described in MetaLink note #211920.1. But this note is published with LIMITED access as it involves using a hidden parameter.
    You can get access to the note through Oracle Support only.
    The problem itself is solved generically, if the source database is at least 10.1.0.3 and the target database is 10.2
    -- Sergiusz

  • Compiling error ORA-00600 with Forms 6 and Database 10g

    Hi,
    I am using "Oracle Database 10g Enterprise Edition Release 10.1.0.4.0" and "Forms [32 Bit] Version 6.0.8.26.0 " with patch 17, when i compile a form that works with some tables in another database under dblink the error ORA-00600:internal error code, arguments:[16203],[],[],[],[],[],[],[] is displayed.
    If i word with reports or sqlplus no error is displayed.
    Before we installed 10g everything worked ok
    What is wrong with forms or do i need to configure something else?
    Regards
    Yuri V. López Manrique

    I searched for this error on Google and found the following blog:
    Is there a tool to troubleshoot ORA-00600 and ORA-07445 errors?
    February 27th, 2006 By Fahd Mirza
    ORA-00600 and ORA-07445 errors are the most esoteric errors in Oracle.
    There is a tool called “ORA-600/ORA-7445 Troubleshooter” available at Metalink. It asks for the first argument of ORA-600 error with an optional database version number.
    For example, to see the description of the error:
    ORA-00600: internal error code, arguments: [723], [25908], [25908], [memory leak]
    You enter 723 in the “ORA-600 First Argument” field. The first argument is a pointer to where in the code the error was caught and thus is the key information in identifying the problem.
    You can also embed (copy/paste) the “Call Stack Trace” there, and, when you click on the “Search Call Stack” button an advanced MetaLink search is performed to find documents containing relevant sections from the call stack.
    Call Stack extracts from the following files are supported:
    * Generic foreground and background server trace files located in background_dump_dest and user_dump_dest
    * OpenVMS NETV2 and BEQ log files located in ORA_ROOT:[NETWORK.LOG]
    * WINDOWS CORE.LOG files
    * GDB (debugger) backtrace call stacks (best endeavors)
    Of course you will need a login to Oracle's Metalink site.
    Hope that helps,
    c

  • Problem connecting developer 6i with database 10g express edition

    i have installed developer 6i on windows xp
    then installed database 10g express edition in different folders
    i am able to connect to the database 10g from the sql command line
    but i cannot connect from the form builder in 6i
    as soon as i try to connect the form builder shuts down
    i have copied tnsnames.ora from the 10g to the 6i and it doesn't connect
    does anyone know why this is happening ?
    please help me solve this issue ???

    then installed database 10g express edition in different foldersWhich version ? Universal or Western European ?
    Universal version uses AL32UTF8 character set and Forms 6i does not work with it.

  • Manually register rman backup with oracle database 10g

    Dear All.
    I want to restore full backup of database.
    I have not configure flash_recovery_area.
    how i can manually register full rman backup of database with oracle database 10g.?
    Please help me.
    Thanks & Regards
    Ravi Kumar

    This is the 10gR2 documentation on the CATALOG command :
    http://docs.oracle.com/cd/B19306_01/backup.102/b14194/rcmsynta011.htm#sthref230
    You must be specific when stating the version you are running.  Commands may be limited or unavailable in older versions versus more recent versions of Oracle.
    Hemant K Chitale

  • "Personal Edition" & "Oracle Database 10g for Linux"

    Is there a personal edition for "Oracle Database 10g for Linux" ?

    The enterprise edition download CD will give you the option of installing the personal edition as one of the install options.

Maybe you are looking for

  • Anyone having issues with custom paper sizes?

    I've narrowed down my printing problems to be primarily when using custom paper sizes. I still get regular crashes with standard sizes, but cannot print at all if I set up a custom size in A3. I am able to print custom sizes in Lightroom so it must b

  • Macbook display on a 40" LCD

    is it possible? what do i need to buy? tv has hdmi inputs, everything except the 100gb processor, it is 80gb. please help!! macbook   Mac OS X (10.4.8)  

  • Cost of execution of a query

    Hi, I have two queries both give exactly the same result set , both the queries are identical just with one difference , in one query we have code = '51 2345' and in the other query we have text = 'impulse' , which is the text value for the code . Th

  • An error occured during the generation of data service

    com.sunopsis.tools.core.exception.SnpsSimpleMessageException: Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps JAVA_HOME does not point to the JDK. It is currently set to "E:\OraHome_2\jre\1.4.2"      at com.

  • Camera won't run.

    Hi, I purchased the 5800 today and everything was working fine. However now whenever I press the camera button or choose to run the camera through applications the phone is unresponsive. I have reinstalled the firmware twice but this hasn't made any