Not able to create partitions using Oracle 10g express edition

Hello Everyone,
I downloaded Oracle 10g express edition as the documentation for the same says that it supports partitioning of the table.
But when I try to run a command like
CREATE TABLE sales_range
(salesman_id NUMBER(5),
salesman_name VARCHAR2(30),
sales_amount NUMBER(10),
sales_date DATE)
PARTITION BY RANGE(sales_date)
PARTITION sales_jan2000 VALUES LESS THAN(TO_DATE('02/01/2000','DD/MM/YYYY')),
PARTITION sales_feb2000 VALUES LESS THAN(TO_DATE('03/01/2000','DD/MM/YYYY')),
PARTITION sales_mar2000 VALUES LESS THAN(TO_DATE('04/01/2000','DD/MM/YYYY')),
PARTITION sales_apr2000 VALUES LESS THAN(TO_DATE('05/01/2000','DD/MM/YYYY'))
I get the following error
"ORA-00439: feature not enabled: Partitioning"
Please let me know what is causing the issue/error and how to resolve it.
Thanks.

Where did you read that the express edition supports partitioning? I would strongly suspect that there was an error in the documentation-- partitioning is an extra cost option on top of an enterprise edition database. Perhaps you are confusing the personal edition (which does support partitioning) with the express edition?
Justin

Similar Messages

  • Creating Partitions in Oracle 10G Express Edition

    Can I create partitions in oracle 10g express edition?

    See yourself :
    http://download.oracle.com/docs/cd/B25329_01/doc/license.102/b25456/toc.htm#BABJIJCJ

  • How to create a new DataBase using Oracle 10g Express Edition???

    Hello, I am new to Oracle, I am used to Microsoft SQL Server (Enterprise Manager).
    Here in Oracle I do not get how do I create a DataBase, and then create tables on it.
    could anyone please explain to me how to do it?

    A SQL Server database is roughly equivalent to an Oracle schema.
    You should rarely need to create a new database. If you do need to create a database, get a 'for fee' edition of Oracle and use the dbca tool (Database Configuration Assistant) to do that. In fact, you are only allowed to have one XE database on the machine.
    However, you can create as many schemas in an existing Oracle database as you need. (One schema, owned by userid SYS, is roughly equal to your 'master catalog'.)
    You can create other schemas simply by
    1) creating a userid that will own the schema (one designated for maintenance of the schema);
    2) grant that userid appropriate privileges, such as 'CREATE TABLE', 'CREATE VIEW' as shown in the SQL Reference manual under the GRANT section;
    3) provide that userid with a quota in one or more tablespaces (see the CREATE USER command in the SQL Reference manual);
    4) create the objects, such as tabels, views, sequences, stored procs and functions, etc. (as in the SQL Reference manual);
    5) create the users who will access the objects, and grant them the CREATE SESSION capability (as in the SQL Reference manual);
    6) grant access (select, update, execute, etc.) on the schema objects to these users (as in the SQL Reference manual);
    7) if desired, create synonyms on the schema objects so the users do not need to use fully qualified syntax such as "SELECT col FROM schema.table;" (as in the SQL Reference manual).
    In case you are interested in looking at the SQL Reference manual, it can be found at http://www.oracle.com/pls/db102/portal.portal_db?selected=1 ;-)

  • How can i create a new database instance in oracle 10g express edition?

    hello everybody
    i'm a student
    i am developing a database application
    i'm using oracle 10g express edition
    to run my application i need to create another database instance
    but i didn't find any option for doing so in that product
    if there is pls tell me where it is?
    if not pls tell me how to manually create it?
    regards,
    Chaitanya

    Chaitanya Babu M wrote:
    yaa i'm sure about that .
    i want one more instance of database.Can you perhaps explain why? I have a fair share of production and development servers - and not a single one of them needs to run more than one database instance.
    So I'm interested in what requirement you are trying to satisfy by using two database instances on a single platform.
    Oh yeah - if you want to create a custom XE instance (different SID, different tablespace sizes, more/less PL/SQL stuff installed, hack standard), make a copy of your XE db creation script (in your XE's +$ORACLE_HOME/bin+ and called createdb.sh ) and modify that for your needs.
    PS. even with a different SID, only a single XE instance can be run at a time - you can however have 2 different ones defined and then use one at a time (e.g. testing international settings, init param differences, etc.)

  • Oracle 10g Express Edition for OCP 10g Upgrade Certification

    Hi
    Can I use Oracle 10g Express edition to prepare for Oracle 10g Release 2 new features exam.
    Thanks,
    James

    For exam/certification disscussions, I suggest the [Certification forum|http://forums.oracle.com/forums/forum.jspa?forumID=459].
    By preparation I assume you refer to the topics of the [1Z0-040 exam|http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=1001&lang=US&p_exam_id=1Z0_040#3].
    For "strictly self-educational purposes", take a look at the OTN downloads license and consider using EE (or PE perhaps) install, supposed you need full features for the managebility stuff, tuning advisors, partitioning, RMAN functionality, etc.
    http://www.oracle.com/technology/software/index.html

  • Oracle 10g express Edition Database

    We are using oracle 10g express edition with a temporary storage space for a class using SQL. When creating and using the database, the data is being deleted after 1 or 2 days and students are having to start over, creating tables and inserting data. Any suggestions?

    suggestions?Backups?
    Or, as long as the DDLs and DMLs don't take long, rerunning table create and insert SQLs would probably be much faster than setting up the database(s) in archivelog mode and copying datafile/archivelog files or rman backup files someplace that won't get reimaged every other day.

  • Dbms_rls.add_policy with Oracle 10g Express Edition

    SQL> begin
    2 dbms_rls.add_policy(
    3 object_schema => 'VPD',
    4 object_name => 'TRANSACTIONS',
    5 policy_name => 'VPD_TEST_POLICY',
    6 function_schema => 'VPD',
    7 policy_function => 'VPD_POLICY.VPD_PREDICATE',
    8 statement_types => 'select, insert, update, delete',
    9 update_check => TRUE,
    10 enable => TRUE,
    11 static_policy => FALSE);
    12 end;
    13 /
    Gives an ORA error as follows
    ERROR at line 1:
    ORA-00439: feature not enabled: Fine-grained access control
    ORA-06512: at "SYS.DBMS_RLS", line 20
    ORA-06512: at line 2
    i'am using Oracle 10g Express Edition
    Please get back as soon as possible

    It should more appropriate to post your question into Oracle Database Express Edition (XE)<br>
    <br>
    Nicolas.

  • Dbms_fga.add_policy with Oracle 10g Express Edition

    begin
    dbms_fga.add_policy (
         object_schema=>'PROVA',
         object_name=>'EMPLOYEE',
         policy_name=>'ACCESS_EMPLOYEES',
         audit_column => 'name',
         ENABLE=> TRUE );
    end;
    Error
    feature not enabled: Fine-grained access control
    at "SYS.DBMS_FGA"
    i'am using Oracle 10g Express Edition i have this error about 5 days ..........please help me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Thanks for your replay , in the follow the result about the query :
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> select * from v$option;
    VALUE
    Parallel load
    TRUE
    Point-in-time tablespace recovery
    FALSE
    Fine-grained access control
    FALSE
    Now i need fine-grained access control , what can I do ?
    I change the version or exist an other metod?
    thanks..........................

  • How to install Mini SAP using Oralce 10g Express Edition!

    Hi Guys,
    I am fresher in SAP and I want to install Mini SAP on my home desk-top for practicing ABAP, I will be grateful if anybody send`s me links for step-by-step installation guide and another question is, it is to install Mini SAP using Oracle 10g Express Edition?
    Early response would be highly appreciated
    Thanks in advance,
    Reetesh
    Edited by: Reetesh Tiwary on Jan 31, 2008 8:59 AM

    Dear Andreas,
    Thanks for your response!
    SAPDB is in-built or I will have to install it seperately, If I will have to install it seperately from where I will get either of these maxdb or sapdb?
    Thanks,
    Reetesh

  • Does Oracle 10g express edition supports UTL_SMTP

    Currently i'm using ORacle 10g Express edition, is it possible to send an automatic email once a value updates a table.
    Does 10gExpress edition supports UTL_SMTP or UTL_MAIL. If supports let me know how to configure in 10gExpress edition .

    It supports UTL_SMTP. You can check a couple of threads to see some demo usage of it.
    Re: How to send Email with attachments
    ~ Madrid

  • Regarding Oracle 10g Express Edition

    Dear Friends,
    I'm very beginner to Oracle database. I worked in SQL Server.
    Here I have downloaded and intalled Oracle 10g Express Edition for development.
    1. How do I create database in Oracle 10g Express Edition?
    2. How do I attach an existing database?
    Please help me.
    Thanks in advance.
    Regards,
    Sathish

    Hi,
    ORACLE is different from SQL Server. Forget about SQL Server for a while.
    1. How do I create database in Oracle 10g Express Edition?Refer to :http://st-curriculum.oracle.com/tutorial/DBXETutorial/index.htm
    2. How do I attach an existing database?As you perform in Sql Server, it won't work in oracle. It's different. I request to understand oracle architecture and basic Administration and once you familar with those things then can understand how to perform activity's on DB.
    - Pavan Kumar N
    Oracle 9i/10g - OCP
    http://oracleinternals.blogspot.com/

  • To create standby database using oracle 10g standared edition

    my producation database is oracle 10G standard edition .Can i implement a oracle dataguard or standby database using standard edition licenses.if standby database is possiable in standard edition .what are the steps for creating a standby database using oracle 10g standard edition.

    General answer is http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/editions.htm#BABJICBB.
    For Data Guard you cannot :
    - use instance parameters to automatically send archived redo logs
    - use instance parameters to resolve archived redo logs gaps
    - create a logical standby
    - use SQL statements to do switchover / failover
    - use Data Guard Broker.

  • Using JDeveloper with Oracle 10g Express Edition

    Hi,
    can JDeveloper 11g 11.1.1.4.0 Studio Edition be used to develop applications connection with Oracle 10g Express Edition?
    If not, is there a version downloadable that can?
    TIA

    Yes, it can.
    John

  • Can not connect Oracle 10g express edition from report builder.

    I have newly installed report builder . Different home was selected for Report builder and oracle. Oracle database server is also in the same machine. But i am not able to connect my oracle 10g express edition database. It throws error ORA-12154 : TNS could not resolve service name.( same error displayed while trying to connect from SQL Plus).But from toad i am able to access the database. May be because here I am able to select the proper home.
    Here i am adding my tns entry
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 1ECA66A679AB494)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    can any one suggest what the actual problem is?
    Thanks ..........

    Hello,
    Oracle 10g XE is rather specific and, I'm not sure that you can upgrade it to 10.2.0.4 .
    However, Oracle published an Upgrade Guide for Oracle Express Edition but, it's limited to *10.2.0.3*:
    http://download.oracle.com/docs/cd/B25329_01/doc/server.102/b32391/toc.htm
    But be careful:
    Once you have upgraded to Oracle Database 10g, you cannot downgrade back to Oracle Database Express Edition.Hope this help.
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on May 22, 2010 12:06 AM

  • Not installing Oracle 10g Express Edition Beta 2

    Hi,
    I am in problem to install Oracle 10g Express Edition Beta 2 on Windows 2000 Pro. I have download OracleXE.exe but when i am double clicking on it, it is not working. What are the problems? Please help me
    Dulal

    Hello,
    Oracle 10g XE is rather specific and, I'm not sure that you can upgrade it to 10.2.0.4 .
    However, Oracle published an Upgrade Guide for Oracle Express Edition but, it's limited to *10.2.0.3*:
    http://download.oracle.com/docs/cd/B25329_01/doc/server.102/b32391/toc.htm
    But be careful:
    Once you have upgraded to Oracle Database 10g, you cannot downgrade back to Oracle Database Express Edition.Hope this help.
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on May 22, 2010 12:06 AM

Maybe you are looking for