creation of the table space

Hello

I installed Oracle 11.2.0.1.0

I need to create a table of spaces for a small project.

I am connected first as sys as sysdba and running the command to create a table below space.

CREATE TABLESPACE SS_DATA

DATA FILE

' D:\clinapps_data\SS_DATA. DBF' SIZE 150M REUSE AUTOEXTEND ON

/

Error I get is:

CREATE TABLESPACE SS_DATA

*

ERROR on line 1:

ORA-01119: error in creating database file ' D:\clinapps_data\

ORA-27040: create file error, cannot create the file

04002 - OSD: could not open the file

S/O-error: (OS 3) the system cannot find the path specified.

do I need to put anything before creating this table space?

Please suggest me.

Thanks in advance

Your will know the path is valid? y at - it the folder named clinapps_data? Otherwise, first create the folder

D:\clinapps_data

Concerning

Tags: Database

Similar Questions

  • Size of the table space increases too quickly (DEV_MDS of soa suite 11g)

    I use Oracle 11g SOASuite.

    We are facing a problem of database (table space). After each schema deployment that dev_mds increases of 40 MB. We are therefore very often our processes in the development stage. and while cancellation of the deployment of the process. Ideally the memory should be freed. but it's not free memory.

    Please, help me out of this problem. and it will be appreciated if someone will explain how this schema size increases too quickly.

    Thank you

    Whenever you cancel the deployment a composite of a partition in the composite EM console gets also deleted from the MDS store. But since you must keep all versions of your composite, that your MDS store is bound to grow with each deployment.

    As you mentioned that your size of the composite is huge due to activity of embedded java, it's something that your design should be avoided because there is no resuability for your component java embedded in several versions of the same composite or composite.

    If you are wanting to use Java in your BPEL process I recommend to use a resalable composite with a context of spring that you can reference from different composite materials or different versions of the same composite.

    It also gives you an advantage in terms of modularisation your application, because whenever you need to change your composite Java or BPEL, they can be changed and deployed independently.

  • Problem with the creation of the table using the parallel Council DEC

    Hello

    We have a database table (CARDS_TAB) with the 1,083,565,232 lines and has created a replica table called T_CARDS_NEW_201111. But the count in the new array is 1,083,566,976 the difference is row of 1744. I have no idea how the new table can contain more lines compared to the original table.
    Oracle version is 11.2.0.2.0.

    The two head of table were taken after creating the table. Script that was used to create the replica table is:
    CREATE TABLE T_CARDS_NEW_201111
    TABLESPACE T_DATA_XLARGE07
    PARTITION BY RANGE (CPS01_DATE_GENERATED)
    SUBPARTITION BY LIST (CPS01_CURRENT_STATUS)
    SUBPARTITION TEMPLATE
      (SUBPARTITION T_NULL VALUES (NULL),
       SUBPARTITION T_0 VALUES (0),
       SUBPARTITION T_1 VALUES (1),
       SUBPARTITION T_3 VALUES (3),
       SUBPARTITION T_OTHERS VALUES (DEFAULT)
      )
    (
      PARTITION T_200612 VALUES LESS THAN (TO_DATE(' 2007-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_200612_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 ),
      PARTITION T_200701 VALUES LESS THAN (TO_DATE(' 2007-02-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_200701_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 )
    .
    .
    .
    .
    .
      PARTITION T_201211 VALUES LESS THAN (TO_DATE(' 2012-12-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_201211_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 ),
      PARTITION T_201212 VALUES LESS THAN (TO_DATE(' 2013-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_201212_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 )
    )
    NOCACHE
    NOPARALLEL
    MONITORING
    ENABLE ROW MOVEMENT
    AS
    SELECT /*+ PARALLEL (T,40) */ SERIAL_NUMBER     ,
      PIN_NUMBER        ,
      CARD_TYPE         ,
      DENOMINATION      ,
      DATE_GENERATED    ,
      LOG_PHY_IND       ,
      CARD_ID           ,
      OUTLET_CODE       ,
      MSISDN            ,
      BATCH_NUMBER      ,
      DATE_SOLD         ,
      DIST_CHANNEL      ,
      DATE_CEASED       ,
      DATE_PRINTED      ,
      DATE_RECHARGE     ,
      LOGICAL_ORDER_NR  ,
      DATE_AVAILABLE    ,
      CURRENT_STATUS    ,
      ACCESS_CODE        from CARDS_TAB T
    /
    Database CARDS_TAB table also has a primary key on the column Serial_number. When you try to create a primary key on the new table he throws Exception:
    ALTER TABLE T_CARDS_NEW_201111 ADD
      CONSTRAINT T_PK2_1
     PRIMARY KEY  (SERIAL_NUMBER) USING INDEX
     TABLESPACE T_INDEX_XLARGE07
     PARALLEL 10 NOLOGGING;
    
      CONSTRAINT TP_PK2_1
                 *
    ERROR at line 2:
    ORA-02437: cannot validate (T_PK2_1) - primary key violated
    Thanks in advance.

    With respect,
    Adeline Faure

    For parallel processing the documentation suggests the use automatic degree of parallelism (determined by the system running) or by choosing a power of 2 value
    Look at the post by Florian in your currently neighbor post How to remove duplicate rows from a Table to locate the violations (apparently due to parallel processing)

    Concerning

    Etbin

  • Manual creation of the table

    Hello

    I have to manually create tables and indexes approximately 25 000. I did as a script, where I simply drag and drop the tables to the sql prompt. Everything by doing like this, a lot of tables is not get created. When I try to manually create the Uncreated tables one by one, then it is created.

    Why not all the tables are created in total while I did drag and drop?

    What is the best parctice to create these huge tables?

    Just an example of my table script

    CREATE TABLE 'DXF_DX_EXCH007' ('RECID' VARCHAR2 (200), 'XMLRECORD "' SYS'.") XMLTYPE") PCTFREE, PCTUSED, INITRANS 40 10 1 MAXTRANS 255 STORAGE (INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 DEFAULT USER_TABLES) TABLESPACE"BMPRODNEW"LOGGING NOCOMPRESS XMLTYPE 'XMLRECORD' STORE AS CLOB"LOB_DXF_DX_EXCH007"(TABLESPACE"BMPRODNEW"ENABLE ONLINE RETENTION 8192 CHUNK STORAGE CACHE STORAGE (65536 FREELISTS INITIAL 1 FREELIST GROUPS 1 DEFAULT USER_TABLES));

    So, I have thousands to create...

    Thank you
    KSG

    Hello

    I haven't used hpux for a long time, but I remember that by default that the terminal is messed up, check your settings from the terminal to help
    $ stty - a and see that the characters are defined for eol or eol2, you can edit them using the stty command for something that isn't the ' @' character

    for example, I often change the character of the erasure of ^ h

    for example
    stty erase ^? or whatever the delete key of characters when I press it.

    Hope this helps, like running the script using @ sounds the best way to do it, or consider using the sqlplus "start order".

    for example
    SQL > start /tmp/filename.sql

    will do the same thing that

    SQL > @ /tmp/filename.sql

  • creation of the table & help request

    Hi all


    How to create the structure of the table and query the data for the situation below.
                                                      A
                                                |
                                         -------------------
                                    |                        |
                                   B                        C
                               ------                     ------
                              |        |                |         |         
                              |        |                |         |
                              D       E                F        H
                             ---       ----          ----         ----
                            |     |  |    |         |     |     |     |
                            G    I   J   K         L   M      N   O     
     
    If I pass an id then all employees who work under A must see, example if 'C' id is passed 'F', 'H', 'L' ' m ',' n "O" have to show, "he said.
    If the 'H' id is past 'n', ' o ' should be displayed. "

    Please help me on this topic, how to create the structure of the table and query the data.


    Kind regards
    Rajasekhar

    Published by: SuNRiZz68 on July 9, 2009 09:47

    Hello

    Hey, it's not a typical hierarchical query?
    Amply confirmed Oracle including examples:

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14200/queries003.htm#sthref3132

  • How to change the data type of a column after the creation of the table

    It comes to my table desc

    SQL > desc job1

    Name                                      Null?    Type

    ----------------------------------------- -------- ----------------------------

    JOB_CODE NOT NULL VARCHAR2 (3)

    JOB_CLASS VARCHAR2 (30)

    CHG_HOUR NUMBER (5.2)

    OVERTIMECHARGE NOT NULL NUMBER

    I want to change column CHG_HOUR to store numbers up to 12 digits in length (including the decimal points).

    I tried the following and it did not help

    SQL > alter table job1 change column chg_hour number (6.6);

    ALTER table job1 change column chg_hour number (6.6)

    *

    ERROR on line 1:

    ORA-01735: invalid option of ALTER TABLE

    SQL > alter table job1 change chg_hour number (6.6);

    ALTER table job1 change chg_hour number (6.6)

    *

    ERROR on line 1:

    ORA-01438: value larger than the precision specified for the column

    where I'm going wrong?

    Hello

    I want to change the CHG_HOUR column to store numbers up to 12 digits in length (including the decimal points).

    I tried the following and it did not help

    ALTER table job1 change chg_hour number (12.6);

  • Oracle 11g R2, CREATE THE TABLE and QUOTAS

    Hi all
    I need some insight on a strange behavior, that I discovered in Oracle 11 g 2. Don't know if I'm missing something or if I just discovered a security issue with Oracle.

    Oracle Version: 11.2.0.1.0

    The problem is with the CREATE TABLE and the QUOTA on the specific tablespace privilege.

    Please, try this on your system (if you have some free time and care to confirm the "bug").

    Create a user, grant privileges than two, CREATE THE SESSION and CREATE TABLE.

    Grant NO quota on any tablespace.

    Try to create a table on any tablespace (except SYSTEM) and everybody say if it worked or not.

    The oracle documentation provides the following:

    To create a relational table in your own schema, you must have the CREATE TABLE system privilege. To create a table in the schema of another user, you must have the CREATE ANY TABLE system privilege. In addition, the owner of the schema containing the table must have a quota of space on the tablespace contains the table or the UNLIMITED TABLESPACE system privilege.

    [http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_7002.htm#SQLRF01402]

    The fact is, so far, on two different instances of Oracle 11 g 2, my users are not limited in the creation of the tables only when they have quotas, but where they want to, except the STRING.

    The behavior correct would be to deny the creation of the table the tablespace where there is no quota, but it does not work.

    My instance of Oracle 10 g behave properly and therefore the creation of the table is denied the tablespace with no quota.

    P.s1 sorry if this a well known "bug/problem/question". I've been ridiculous on a well-known forum for the same question. I don't need to be "filled spoon" as shown on this famous site! I have read the documentation! I googled a lot!

    P.s2 even if the creative work of table on tablespace with no quota, you cannot insert data into it. Yes, big picture, the user cannot not filled space with irrelevant data tables, but it can create thousands of tables...!

    Did I miss something?
    Is there a 'default' option I have to mark to prevent the creation of the table where it shouldn't?
    ? (?)

    Please read http://tkyte.blogspot.com/2011/02/deferred-segment-creation.html.

  • How to reorder the Table of contents?

    Hi all

    In Adobe Captivate 8 I'll create a Table of contents for my introduction to e-Learning. I found the tutorial on Adobe on how to create it.  I know I can you rearrange slides easily in Captivate. My question is this. The Table of contents will revamp the as well as slides or I have to do separately?

    Thank you for your help.

    You need to just reset the TOC, there is a tiny button at the bottom which allows to reset. At least if you have best practices:

    1. to name the slides with the name that you want to appear in the table of contents
    2. the slides that you want to have a higher level and the name of the Group of groups with the name that you want to appear in the table of contents

    In addition I always recommend during training, waiting, with the creation of the table of contents, until the project is completed. Then you can do more editing in the table of contents, such as the creation of more than two levels (groups + slides will be paid the flimstrip, not more levels).

  • Create table space command with no data path specification.

    I use the following command to create the table space in oracle 11g
    TestTbSpace create TABLESPACE DATAFILE 'dataFileName.dbf' SIZE 50 M REUSE AUTOEXTEND ON NEXT 1 M MAXSIZE 32767 M NOLOGGING"
    But he is creating datafile dataFileName.dbf to disk at the following path
    echo $ORACLE_HOME/dbs
    I don't want to create datafile to this path and do not want to specify the path to the data file in the command 'create a table space.

    Is there is no parameter, what I put it and especially the start command to create a dataFileName.dbf to this path

    Published by: user8680179 on May 15, 2012 01:54

    That's what I tried-

    SQL> show parameter create_file
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    db_create_file_dest                  string
    SQL>
    SQL> alter system set db_create_file_dest='D:\oracle\oradata';
    
    System altered.
    
    SQL> show parameter create_file
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    db_create_file_dest                  string      D:\oracle\oradata
    
    SQL> create tablespace sub datafile *'sub_01.dbf'* size 5M;
    
    Tablespace created.
    
    SQL> @filename
    Enter value for tbs_name: sub
    old   1: select file_id,file_name,(bytes/1024/1024)MB,AUTOEXTENSIBLE, MAXBYTES/1024/1024 "MAX size Mb" from dba_data_files where tablespace_name=UPPER('&tbs_name')
    new   1: select file_id,file_name,(bytes/1024/1024)MB,AUTOEXTENSIBLE, MAXBYTES/1024/1024 "MAX size Mb" from dba_data_files where tablespace_name=UPPER('sub')
    
       FILE_ID FILE_NAME                                                                      MB AUT MAX size Mb
    ---------- ---------------------------------------------------------------------- ---------- --- -----------
            11 *D:\ORACLE\PRODUCT\11.2.0.2\DBHOME_1\DATABASE\SUB_01.DBF*                         5 NO            0
    
    SQL> create tablespace note datafile size 5M;
    
    Tablespace created.
    
    SQL> @filename
    Enter value for tbs_name: note
    old   1: select file_id,file_name,(bytes/1024/1024)MB,AUTOEXTENSIBLE, MAXBYTES/1024/1024 "MAX size Mb" from dba_data_files where tablespace_name=UPPER('&tbs_name')
    new   1: select file_id,file_name,(bytes/1024/1024)MB,AUTOEXTENSIBLE, MAXBYTES/1024/1024 "MAX size Mb" from dba_data_files where tablespace_name=UPPER('note')
    
       FILE_ID FILE_NAME                                                                      MB AUT MAX size Mb
    ---------- ---------------------------------------------------------------------- ---------- --- -----------
            12 *D:\ORACLE\ORADATA\MATSTDBY\DATAFILE\O1_MF_NOTE_7V6B0W0Z_.DBF*                    5 NO            0
    

    Anand

  • Calculation of the free space in a data file

    Hello

    I use Oracle database 11g (11.1.0.6). I need to calculate available disk space that exist in a special database for inserting new records. I look in the table dba_data_files for this information. I use the sub query to get the value of maxsize allocated in GB this until datafile that it can grow.

    Select maxbytes/1024/1024/1024 of dba_data_files where nom_tablespace = 'XXXX '.

    How to get the disk space available for the insertion of new records in a particular data file or a bunch of data files in a tablespace?


    Kind regards

    007

    007 wrote:
    Hi Helios - Gunes EROL,

    The Select sum (bytes) / 1024/1024/1024 "GB" of dba_data_files where nom_tablespace = 'xx' query tells you the sum of all files of size data in a tablespace. But I need the free space available in these data files. How to get it?

    Kind regards

    007

    Use

    select sum(bytes/1024/1024/1024) GB from dba_free_space where tablespace_name='tablespace name'
    

    Know schemae storage space

    select default_tablespace from dba_users where username='schema name';
    

    Know the perticular table tablespace

    select TABLESPACE_NAME from dba_tables where table_name='table name';
    

    Utimetly you will be insert in tablespace, little matter how many data file you have and how many girl and how many of them have the space available.
    So just to worry when the table space is saturated.

  • Convert data in hierarchal of hierarchical data for the creation of the tree

    Hi guys,.

    I tried to figure this out for about two days together now and I'm still stuck and I see no possible solution that does not involve a new creation of the table.
    I want to create a tree to navigate through projects and tasks, I use the demo "Task Manager" app, which I customized it a bit to fit my needs.

    Basically, I can't create the tree because the relationship between projects and tasks is not a hierarchical relationship, it's a relationship 1: n like this:

    __Projects__
    ID (PK)
    PROJECT NAME



    ___Tasks___
    ID (PK)
    Project (done FK reference Projects.ID)


    So what I have to do is to "force" this relationship 1: n with a hierarchical relationship by creating a query (view) that links the two tables into one and have 2 columns, I can use as ID and PARENT_ID for the creation of the tree.

    This is the data model:


    CREATE TABLE 'EBA_TASK_PROJECTS '.
    (NUMBER OF 'ID',
    'PROJECT_NAME' VARCHAR2 (255),
    "CREATED_ON" DATE NOT NULL ACTIVATE.
    'CREATED_BY' VARCHAR2 (255) NULL NOT ACTIVATE.
    DATE OF THE "UPDATED_ON"
    "UPDATED_BY' VARCHAR2 (255),
    'FLEX_01' VARCHAR2 (4000).
    'FLEX_02' VARCHAR2 (4000).
    'FLEX_03' VARCHAR2 (4000).
    'FLEX_04' VARCHAR2 (4000).
    'FLEX_05' VARCHAR2 (4000).
    NUMBER OF "PARENT_ID"
    VARCHAR2 (1) 'IS_ACTIVE ',.
    VARCHAR2 (4000) "DESCRIPTION."
    CONSTRAINT CHECK of 'EBA_TASK_PROJECTS_ACTIVE_CC' (in is_active ('Y', 'n')) ENABLE,.
    ENABLE 'EBA_TASK_PROJECTS_PK' CONSTRAINT PRIMARY KEY ('ID')
    ) ; ALTER TABLE 'EBA_TASK_PROJECTS' ADD 'EBA_TASK_PROJECTS_FK' OF CONSTRAINT FOREIGN KEY ('PARENT_ID')
    REFERENCES 'EBA_TASK_PROJECTS' ('ID') ON DELETE CASCADE ACTIVE;


    CREATE TABLE 'EBA_TASK_TASKS '.
    (SELECT 'ID' NUMBER NOT NULL,)
    ACTIVATE THE "PROJECT" NUMBER NOT NULL,
    ACTIVATE THE "TASK_PRIORITY" VARCHAR2 (400) NOT NULL,
    ACTIVATE THE "TASK_DIFFICULTY" VARCHAR2 (400) NOT NULL,
    ACTIVATE THE "TASKNAME" VARCHAR2 (4000) NOT NULL,
    VARCHAR2 (4000) "TASK_DETAILS."
    "CREATED_ON" DATE NOT NULL ACTIVATE.
    DATE 'DONE ',.
    ACTIVATE THE 'CREATED_BY' VARCHAR2 (400) NOT NULL,
    'STATUS' VARCHAR2 (4000).
    DATE OF THE "UPDATED_ON"
    "ON THE ROAD" DATE.
    NUMBER OF "TASK_PREDEFINED_ID."
    "UPDATED_BY' VARCHAR2 (255),
    ACTIVATE THE "USER_NAME" VARCHAR2 (255) NOT NULL,
    'FLEX_01' VARCHAR2 (4000).
    'FLEX_02' VARCHAR2 (4000).
    'FLEX_03' VARCHAR2 (4000).
    'FLEX_04' VARCHAR2 (4000).
    'FLEX_05' VARCHAR2 (4000).
    NUMBER OF "PERCENTAGE."
    ENABLE 'EBA_TASK_TASKS_PK' CONSTRAINT PRIMARY KEY ('ID')
    ) ; ALTER TABLE 'EBA_TASK_TASKS' ADD 'EBA_TASK_TASKS_PROJECTS_FK' OF CONSTRAINT FOREIGN KEY ('PROJECT')
    REFERENCES 'EBA_TASK_PROJECTS' ('ID') ON DELETE CASCADE ACTIVE;

    I use APEX4.0

    It's good enough that this guy, hope you can help me with this. I'm really stuck on this and I'm about to give up.

    Hello

    So what I have to do is to "force" this relationship 1: n with a hierarchical relationship by creating a query (view) that links the two tables into one and have 2 columns, I can use as ID and PARENT_ID for the creation of the tree.

    I'd say you need a UNION rather than a JOIN.
    Something like:

    WITH project_task_view AS (
     SELECT 'P'||to_char(id) as id
          , null as parent_id
          , project_name as node_name
     FROM eba_task_projects
     UNION ALL
     SELECT 'T'||to_char(id)
          , 'P'||to_char(project_id)
          , task_name
     FROM eba_task_tasks
    )
    SELECT id, parent_id, node_name, level
    FROM project_task_view
    START WITH parent_id IS NULL
    CONNECT BY PRIOR id = parent_id
    ;
    
  • How to check the table of organization

    Hi all

    How can we check the Organization of a table and more knowing that at the time of the creation of the TABLE, as we do for the external ORGANIZATION EXTERNAL tables.

    Thank you

    user13332773 wrote:
    Hi all

    How can we check the Organization of a table and more knowing that at the time of the creation of the TABLE, as we do for the external ORGANIZATION EXTERNAL tables.

    Thank you

    select * from dba_tables
    where iot_type = 'IOT' 
    
  • Table space not reduce after deletion in oracle 10g

    Hello..

    Based on my system, I found that my oracle table space has not reduced after the deletion request. Why?... Could someone help me. As your info, I use oracle 10g.

    Thank you
    Balleur

    After you delete the table space will not be scheduled free. high tide are not reset. to find the space you want to recognize objects that you have deleted the data. This can be done in many ways.

    (1) move the objects.
    ALTER table move temp--> possibly the tablespace clause may be used. After that, you must rebuild the indexes of the tables.

    (2) with 10 g table can be shrunken or reorganize to free up space.

    change the movement line of table mytable enable;
    change the table mytable retractable;

    (3) import/export

    export the objects and delete and recreate with import.

  • On the Table nested

    Hi all

    Why the following SQLs are unable to work? He told me that:

    ERROR on line 1:
    ORA-02320: failure in the creation of the table of storage for the nested table column
    ACCESS_G
    ORA-22913: must specify the name of the table for the nested table column or attribute

    SQL:

    CREATE or REPLACE TYPE el_type () AS OBJECT
    ip_address VARCHAR2 (16));
    /

    CREATE or REPLACE TYPE el_tab_type AS TABLE OF THE el_type;
    /

    CREATE or REPLACE TYPE re_type () AS OBJECT
    re_name VARCHAR2 (16).
    el_g el_tab_type);
    /

    CREATE or REPLACE TYPE re_tab_type AS TABLE OF THE re_type;
    /

    CREATE TABLE actual_info)
    profile_name VARCHAR2 (16).
    access_g re_tab_type)
    TABLESPACE DBdata
    NESTED TABLE access_g STORE AS access_tab;
    /

    You have a table nested within a nested table, so you must specify the storage
    for both tables nested.
    Tom tells how do:
    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:2969385152046

    URS

  • Partitioning hard drive, I want to spend 30/40 GB drive and the remaining space for the creation of other partitions.

    I created a recovery disc for my system that I bought the new laptop.
    It consist of 500 GB HARD drive, now the problem is the C - drive which is my WIN7 Home Basic installed occupies 400 GB of space and the D-drive has only 25 GB.
    My problem is I want to partition the drive C so that the other player must occupy the space according to my condition.
    But here its only gives me half the space to shrink.
    I mean, when I opened diskmgmt to shrink, C this is 200 GB disk space allotted to me.
    Medium I can use this space to create other partitions, but what I want is, I want to spend 30/40 GB C drive and the remaining space for the creation of other partitions.
    Help, please... Thnks...

    That's what we tried to tell you. An OEM installation does not lend itself to change and having to clear guarantees for re-setup means that you must be quite certain that you have other reliable ways to re-setup.

    If you want to dabble with Linux or dual boot, you should buy a complete commercial edition of Windows 7 that will give you more flexibility and accept that for drivers etc, you're on your own...

Maybe you are looking for