Unlimited tablespace issue

Hi,
would like to have a better understanding on the unlimited tablespace privilege isue.
1.) Am i right to say that when an account for example A is granted with the unlimted tablespace privilege, A can use any tablespace in the database, no restriction on the amount of size to be used?
2.) For example, tables were created on tablespace T1_data. So when user account B insert records into the tables, where will the data be stored at? The default tablespace that the user B is assigned or the T1_data tablespace? Does the user account B need to be granted with the unlimited tablespace or quota on the T1_data tablespace?
Thank You. Anyone can advise.

http://download.oracle.com/docs/cd/B19306_01/network.102/b14266/admusers.htm#sthref1493
Oracle® Database Security Guide
10g Release 2 (10.2)
Part Number B14266-01
11.1.1.4.2 UNLIMITED TABLESPACE System Privilege
To permit a user to use an unlimited amount of any tablespace in the database, grant the user the UNLIMITED TABLESPACE system privilege. This overrides all explicit tablespace quotas for the user. If you later revoke the privilege, then explicit quotas again take effect. You can grant this privilege only to users, not to roles.

Similar Messages

  • Unlimited tablespace

    Hello
    I am using Oracle XE 11G (no Oracle support, I know). CentOS 6.5 64bit
    I am getting following error when I create a user, add/import some data and try to drop it:
    [code]SQL> drop user test_user cascade;
    drop user test_user cascade
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kdddgb:clsviol_kcbgcur_9], [0],
    [4194452], [1], [4294967250], [8192], [], [], [], [], [], [][/code]
    To reproduce at my machine I do:
    [code]CREATE USER TEST_USER IDENTIFIED BY TEST_PASSWORD
    DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP
    QUOTA 200M ON USERS;
    GRANT CREATE TRIGGER, CREATE SEQUENCE, CREATE SYNONYM, CREATE TABLE, CREATE VIEW,
    CREATE TYPE, CREATE SESSION, CREATE MATERIALIZED VIEW , CREATE PROCEDURE  TO TEST_USER;
    ALTER USER TEST_USER GRANT CONNECT THROUGH apex_rest_public_user;
    GRANT EXECUTE ON UTL_HTTP TO  TEST_USER;
    GRANT EXECUTE ON UTL_SMTP TO TEST_USER;
    GRANT EXECUTE ON UTL_TCP TO TEST_USER;
    GRANT EXECUTE ON DBMS_CRYPTO TO TEST_USER;
    imp test_user/TEST_PASSWORD file=MyDUmp.dmp fromuser=pageh touser=test_user
    SQL> drop user test_user cascade;
    drop user test_user cascade
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kdddgb:clsviol_kcbgcur_9], [0],
    [4194452], [1], [4294967250], [8192], [], [], [], [], [], []
    grant unlimited tablespace to test_user;
    [/code]
    But when I run following I am able to drop my user without a problem:
    [code]SQL> grant unlimited tablespace to test_user;
    Grant succeeded.
    SQL> drop user test_user cascade;
    User dropped.
    [/code]
    History:
    Some DBA working in past some months ago executed following:
    [code]grant unlimited tablespace to public;[/code]
    It was revoked after a few months by:
    [code]revoke unlimited tablespace from public;[/code]
    I would be really thankful if someone can help me fix this issue.
    Thanks in advance,
    Habib

    CentOS is not a supported distro for installing XE - Oracle® Database Express Edition - so things may or may not work as expected. The ORA-600 errors are internal oracle errors that only Support can troubleshoot. Since no support is available for XE, I suggest you perform a full export, delete the XE install, re-install XE and perform a full import.

  • TABLESPACE Issue with DEV_SOAINFRA

    Hi,
    I am getting the following error while using the function ora:readBinaryFromFile
    ORA-01691: unable to extend lob segment DEV_SOAINFRA.SYS_LOB0000147944C00002$$ by 8192 in tablespace DEV_SOAINFRA.
    I know that automatic extending of DEV_SOAINFRA tablespace in em or purging of old instance data will resolve the issue, but is there any other way where I can get rid of storing instance data in SOAINFRA. This is because, I get large amount of size files through FTP adapter and they are getting into dehydration store. Is there any way I can get rid of this so that I wont be storing this data.

    Thanks for your response,
    1. in Step 1 i am using FTP adapter for copying from source directory to target directory in a single invoke ( i.e. file gets copied from remote location A to local location A) in a single invoke and I have used the following type in <interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPIoInteractionSpec"> jca file.
    2. After this I am invoking an webservice adapter which takes the files from local location to remote location B. The elements inside the WSDL are filename, filepath and file content. For file content i am using ora:readBinaryfromfile(). Also, I attached MTOM policy for WS adapter. Everything is working fine, but i am getting tablespace issue frequently as the attachments are getting stored in Attachment table of SOAINFRA.
    Thanks,

  • ORA-01536 Space Quota with resource and unlimited tablespace privilege

    Good morning.
    I've got the following error ORA-01536: space quota exceeded for tablespace, but my owner has the following grants:
    - RESOURCE
    - UNLIMITED TABLESPACE
    The tablespace transaction has allocated 150GB and when it's about 90% of space used the error occurs, but we have auto extend in all tablespaces.
    My environment:
    Oracle Database 10.2.0.2
    RAC - ASM
    Server Red Hat release 4
    Best Regards,
    Rafael Ceolim

    jgarry wrote:
    Check the ddl for all objects in the tablespace. There was a thread yesterday where an unused partitioned index had part of it's data in an offline tablespace, or something like that. You might also look at dba_segments for the objects too, in case something is just not where you expect.tanks jgarry for your reply.

  • Unlimited Tablespace Privilege

    I have one user in the database say'user1'. Let this user has only 'create session' privilge.
    I have two sessions open. In one session I am connect as:
    "sys/oracle as sysdba" and in other session, I am connect as : "user1/user1".
    Now from "sys" session I am granting dba privilege to 'user1'. "grant dba to user1".
    When I go to "user1" session and fire a command with out reconnecting :
    'select * from session_privs', I see the only two privileges
    1 . Create session
    2. Unlimited Tablespace.
    Here I understand that :
    1. I need to connect again as user1/user in order to reflect the dba privilges.
    2. But even if I do no connect again, why am I getting "Unlimited Tablespace " privilge.
    My question is : Is there something special about this privilege or is this a bug?

    This is definitely a wrinkle I wasn't aware of, and which I don't see documented.
    In session 1
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.3.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.3.0 - Production
    system@jcave > create user newUser identified by newUser;
    User created.
    system@jcave > grant create session to newUser;
    Grant succeeded.
    system@jcave > @connect newUser/newUser;
    Connected.
    newuser> select * from session_privs
      2  ;
    PRIVILEGE
    CREATE SESSIONIn session 2
    system@jcave > grant dba to newUser;
    Grant succeeded.And new back in session 1
    newuser> select * from session_privs;
    PRIVILEGE
    CREATE SESSION
    UNLIMITED TABLESPACEIf I log off and log back on as newUser, I see 140 some rows in session_privs.
    Justin

  • Unlimited tablespace and dba_ts_quotas dynamic view

    Hi everybody,
    I have read an article about the dba_ts_quotas and particularly the following query :
    select username, tablespace_name,
    bytes/1024/1024 used,
    max_bytes/1024/1024 quota
    from dba_ts_quotas
    order by username
    which returns for each user and its tablespace the used tablespace and quota (size in the tablespace which can host user's objects).
    In the article , it is pointed out that if a user has unlimited tablespace on the tablespace then the column quota has the value of -0.000 , whereas in my database (oracle 10g v.2 on XP) the value -9,5367431 appears!!!!
    What may be the reason ...the different database versions????
    However the value -9,5367431 seems to be like 'irrelevant'.......
    Thanks , a lot
    Simon

    Yes, and you can see it here:
    SQL> select username, tablespace_name,
      2  bytes/1024/1024 used,
      3  max_bytes/1024/1024 quota
      4  from dba_ts_quotas
      5  where
      6  tablespace_name = 'USERS'
      7  and username = 'KKISHORE'
      8  order by username
      9  /
    USERNAME                       TABLESPACE_NAME                      USED      QUOTA
    KKISHORE                       USERS                                   0 -9.537E-07
    1 row selected.
    SQL> column quota format 999
    SQL>
    SQL> /
    USERNAME                       TABLESPACE_NAME                      USED QUOTA
    KKISHORE                       USERS                                   0    -0
    1 row selected.
    SQL>

  • "UNLIMITED TABLESPACE" is revoked - don't know who did that

    I got call from developer they encountered error from insert statement stating
    ERROR at line 1:
    ORA-01536: space quota exceeded for tablespace 'XXXXXXXX'
    I went there and found that "unlimited tablespace" is revoked from that user.
    I can not explain how it happened since I am the only DBA for this database. Although one of the developers has DBA privilege, I don't think he has the ability to do so. There is no reason for anybody to do so.
    The database is 9.2.0.7 with 2nd Quarter CPU patch.
    My question is that is there any other mechanism to make this happen? This is really strange to me.
    jzc

    This is most curious.
    It turns out that granting resource also grants unlimited tablespace and revoking resource also revokes unlimited tablespace. However, unlimited tablespace is not a privilege granted to resource, rather it is granted to the user.
    If I grant unlimited tablespace, I can see the user has it.
    If I then grant resource, the user keeps unlimited tablespace -- of course.
    If I revoke resource, unlimited tablespace goes away.
    If I then grant resource, unlimited tablespace comes back.
    resource has an interesting property in this -- at least in 10.2
    SQL> create user test01 identified by test01;
    User created.
    SQL> grant unlimited tablespace to test01;
    Grant succeeded.
    SQL> @privs_all
    Enter User ID: test01
                                              System Priveleges Granted to test01.
    Privilege                                           Via Role?
    UNLIMITED TABLESPACE                      No Admin
    SQL> grant resource to test01;
    Grant succeeded.
    SQL> @privs_all
    Enter User ID: test01
                                              System Priveleges Granted to test01.
    Privilege                                           Via Role?
    CREATE CLUSTER                            No Admin  RESOURCE
    CREATE INDEXTYPE                          No Admin  RESOURCE
    CREATE OPERATOR                           No Admin  RESOURCE
    CREATE PROCEDURE                          No Admin  RESOURCE
    CREATE SEQUENCE                           No Admin  RESOURCE
    CREATE TABLE                              No Admin  RESOURCE
    CREATE TRIGGER                            No Admin  RESOURCE
    CREATE TYPE                               No Admin  RESOURCE
    UNLIMITED TABLESPACE                      No Admin
    SQL> revoke resource from test01;
    Revoke succeeded.
    SQL> @privs_all
    Enter User ID: test01
    SQL> grant resource to test01;
    Grant succeeded.
    SQL> @privs_all
    Enter User ID: test01
                                              System Priveleges Granted to test01.
    Privilege                                           Via Role?
    CREATE CLUSTER                            No Admin  RESOURCE
    CREATE INDEXTYPE                          No Admin  RESOURCE
    CREATE OPERATOR                           No Admin  RESOURCE
    CREATE PROCEDURE                          No Admin  RESOURCE
    CREATE SEQUENCE                           No Admin  RESOURCE
    CREATE TABLE                              No Admin  RESOURCE
    CREATE TRIGGER                            No Admin  RESOURCE
    CREATE TYPE                               No Admin  RESOURCE
    UNLIMITED TABLESPACE                      No Admin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • UNLIMITED TABLESPACE vs MAXEXTENTS...

    Hi,
    Let's assume that :
    1)a db user has been granted the UNLIMITED TABLESPACE privilege....
    2)all tables's extents he created have been full ....
    3)the tables's maximum number of extents has been reached....
    4)there is almost no other free tablespace empty..... so , it must be resized....
    when a/some records in one table are going to be inserted.... what may happen....????
    1) because of the maxextents number has been reached... so as there is no possibility another extent(s) to be added..., the records will not be inserted....????
    2) because of the UNLIMITED TABLESPACE... the tablespace would be resized and as a result the records... will be inserted....????
    In other words....which one is prevailing....
    the UNLIMITED TABLESPACE.... or MAXEXTENTS .....????
    Thanks... a lot
    Sim

    unlimited tablespace privilege means tablespace quotas do not apply and you can create objects in any tablespace, including SYSTEM.
    Consequently, granting UNLIMITED TABLESPACE should be avoided, as it allows the grantee to create havoc in your database.
    Setting maxextents is a thing of the past. Usually maxextents is unlimited.
    You forgot however: datafiles have limits too
    As to your questions:
    If you did set quota for the owner of the table and the quota is used up, the statement will fail.
    However, usually one sets quota unlimited on the tablespace(s) the owner has access to, and one sets the tables maxextents to unlimited.
    In that case the statement will fail when the datafile and/or the disk is full.
    Final note: as altering quotas is quite easy, you could have experimented, and one proper answer would have been 'did you try?'
    Hth
    Sybrand Bakker
    Senior Oracle DBA

  • UNLIMITED TABLESPACE in RESOURCE role

    Hi all,<br>
    It's known that UNLIMITED TABLESPACE is included in RESOURCE role.<br>
    My question is: <b>Why I don't see the system privilige UNLIMITED TABLESPACE when I try to display the priviliges granted to that role?</b><br>
    SQL> select PRIVILEGE     
      2  from   ROLE_SYS_PRIVS
      3  where
      4   role='RESOURCE'
      5  /
    PRIVILEGE
    CREATE TYPE
    CREATE TABLE
    CREATE CLUSTER
    CREATE TRIGGER
    CREATE OPERATOR
    CREATE SEQUENCE
    CREATE INDEXTYPE
    CREATE PROCEDURE<br>
    Also, in the Enterprise Manager, it is shown that a user who is granted the RESOURCE role has the UNLIMITED TABLESPACE. However, when I display the priviliges granted to the RESOURCE role, I don't see the privilige granted to the role.<br>
    Oralce DB 10g R2 on Win XP<br><br>
    Thanks in advance

    Why I don't see the system privilige UNLIMITED TABLESPACE
    when I try to display the priviliges granted to that role?Because that privilege cannot be granted to a role, but to a user only, albeit granting RESOURCE role implicitly grants UNLIMITED TABLESPACE, That's why I never grant RESOURCE role directly to a user. See this example.
    SYS@db102 SQL> create role user_role;
    Role created.
    SYS@db102 SQL> grant connect, resource to user_role;
    Grant succeeded.
    SYS@db102 SQL> create user test1 identified by test1;
    User created.
    SYS@db102 SQL> grant user_role to test1;
    Grant succeeded.
    SYS@db102 SQL> conn test1/test1
    Connected.
    TEST1@db102 SQL> select * from session_privs;
    PRIVILEGE
    CREATE SESSION
    CREATE TABLE
    CREATE CLUSTER
    CREATE SEQUENCE
    CREATE PROCEDURE
    CREATE TRIGGER
    CREATE TYPE
    CREATE OPERATOR
    CREATE INDEXTYPE
    9 rows selected.
    TEST1@db102 SQL> conn / as sysdba
    Connected.
    SYS@db102 SQL> create user test2 identified by test2;
    User created.
    SYS@db102 SQL> grant connect,resource to test2;
    Grant succeeded.
    SYS@db102 SQL> conn test2/test2
    Connected.
    TEST2@db102 SQL> select * from session_privs;
    PRIVILEGE
    CREATE SESSION
    UNLIMITED TABLESPACE
    CREATE TABLE
    CREATE CLUSTER
    CREATE SEQUENCE
    CREATE PROCEDURE
    CREATE TRIGGER
    CREATE TYPE
    CREATE OPERATOR
    CREATE INDEXTYPE
    10 rows selected.
    TEST2@db102 SQL>                                                               The following is from Oracle documentation :
    UNLIMITED TABLESPACE
    Use an unlimited amount of any tablespace. This privilege overrides any specific quotas assigned. If you revoke this privilege from a user, then the user's schema objects remain but further tablespace allocation is denied unless authorized by specific tablespace quotas. You cannot grant this system privilege to roles.

  • Unlimited tablespace and unlimited quota

    What is the differences between granting a user unlimited tablespace and giving unlimited quota. Is unlimited tablespace mean the user can create object in any tablespace?
    Thanks,
    Nur Hidayat

    unlimited tablespace = user can create objects in any tablespace. In any tablespace he can use unlimited amount of space.
    unlimited quota can be given to a user for a particular tablespace.
    Disadvantages of giving unlimited tablespace privilege
    1) The privilege overrides all explicit tablespace quotas for the user.
    2) You cannot selectively revoke tablespace access from a user with the UNLIMITED TABLESPACE privilege. You can grant access selectively only after revoking the privilege.
    -aijaz

  • Enough space, unlimited tablespace ,why faces the error ORA-01536

    the error happened the production database.the case is that enough space, unlimited tablespace for the table owner,but the table index has another owner,the index has a tablespace,the error happened on the index which was in the tablespace. at that time,we were worried,because the error had affected the foregrounding,then we execuated "ALTER USER the table_owner QUOTA <integer> [K/M] ON <tablespacename>;" but now i make a test which reappeared the error,the error has reappeared,but i execuated ALTER USER the table_owner QUOTA <integer> [K/M] ON <tablespacename>; " the error still hanppened. so i don't know if i make a mistak to decide the production database error??? please tell me why ,thank you !

    01536, 00000, "space quota exceeded for tablespace '%s'"
    // *Cause:  The space quota for the segment owner in the tablespace has
    //          been exhausted and the operation attempted the creation of a
    //          new segment extent in the tablespace.
    // *Action: Either drop unnecessary objects in the tablespace to reclaim
    //          space or have a privileged user increase the quota on this
    //          tablespace for the segment owner.
    ALWAYS
    Post Operating System (OS) name & version for DB server system.
    Post results of
    SELECT * from v$version
    or post Oracle version to 4 decimal places

  • R11 and tablespace issue

    Hi hussein;
    I want to hear your advice about R11 and tablespace issue... I am following :Subject: Oracle Applications Tablespace Model FAQs Doc ID: 269293.1
    I can understand which tablespace using for what in R11 but i wonder one thing. Picture this please:
    My AOOS_TS_TX_IDX tablaspace has 6 datafile as a_txn_ind06.dbf ... some of this file has %83 usegae 2 of %97 and %96... The quesiton is when we should resize datafile? I mean when we should say " oo the datafile is %?? using so i have to resize it.
    One other question is my APPS_UNDOTS1 tablespace's datafile(those are 3 files) are now %100.. Should i resize them or its unncessarry?
    Thanks for advice

    Hi,
    The quesiton is when we should resize datafile? I mean when we should say " oo the datafile is %?? using so i have to resize it.There is no specific answer to this question, and it depends on how this tablespace is utilized and on the size of the tablespace (for example, 70% used space of 1 GB tablespace is different that 70% used space of 100 MB tablespace). So, I would say whenever you believe you need to add more space to the this tablespace (these datafiles).
    One other question is my APPS_UNDOTS1 tablespace's datafile(those are 3 files) are now %100.. Should i resize them or its unncessarry?You do not have to -- See (Note: 413732.1 - Full UNDO Tablespace In 10gR2) for details.
    Regards,
    Hussein

  • Sysaux tablespace issue

    hi,
    I ve upgraded an database for 9i to 10g. The upgrade was sucessfull and the Db was in normal usage. Due to some functionality testing the database was restored to a state from the backup taken after upgrade. But while restoring the database i forgot to include the path of the datafile of sysaux tablespace in the control file re-creation script.
    I didnt notice this issue for long time until i realised the mistake made by me.
    I found in the alert logs which showed errors such as
    ORA-01157: cannot identify/lock data file 124 - see DBWR trace file
    ORA-01110: data file 124: '/oracle/ora/dbs/MISSING00141'
    ORA-27037: unable to obtain file status
    since the path of the sysaux tablespace was not referred in the script i thought of referring it now and i issued the following command
    alter tablespace sysaux add datafile '<path>/sysaux01.dbf' reuse;
    i issed this as the datafile was already present and i thought of jus reuing it again.
    But what had happened is this datafile had been added as an additional datafile for the sysaux tablespace,which means the sysaux is still referring '/oracle/ora/dbs/MISSING00141' as one of the datafile.
    but one important thing is that there isnt any such datafile ie '/oracle/ora/dbs/MISSING00141' when i checked inside the dbs folder.
    The path is getting referred as part of the sysaux tablespace but its physical location is not found.
    So i did took this datafile offlinedrop issuing
    alter database datafile '/oracle/ora/dbs/MISSING00141' ofline drop
    but the problem i m facing now is the AWR is not opening up and it throw error stating first datafile of sysaux tablespace '/oracle/ora/dbs/MISSING00141' not found.
    ORA-00376: file 124 cannot be read at this time
    ORA-01110: data file 141: '/oracle/ora/dbs/MISSING00141'
    ORA-06512: at line 21.
    any solution for solving the problem would be appreciated
    thanks,
    ahmed

    i m able to start up the database normally....there isnt any errors while starting the DB.These errors are encountered in alert log file and user trace files.As as result AWR is not opening.

  • Sysaux tablespace issue-missing sysux datafile

    hi,
    I ve upgraded an database for 9i to 10g. The upgrade was sucessfull and the Db was in normal usage. Due to some functionality testing the database was restored to a state from the backup taken after upgrade. But while restoring the database i forgot to include the path of the datafile of sysaux tablespace in the control file re-creation script.
    I didnt notice this issue for long time until i realised the mistake made by me.
    I found in the alert logs which showed errors such as
    ORA-01157: cannot identify/lock data file 124 - see DBWR trace file
    ORA-01110: data file 124: '/oracle/ora/dbs/MISSING00141'
    ORA-27037: unable to obtain file status
    since the path of the sysaux tablespace was not referred in the script i thought of referring it now and i issued the following command
    alter tablespace sysaux add datafile '<path>/sysaux01.dbf' reuse;
    i issued this as the datafile was already present and i thought of jus reusing it again.
    But what had happened is this datafile had been added as an additional datafile for the sysaux tablespace,which means the sysaux is still referring '/oracle/ora/dbs/MISSING00141' as one of the datafile.
    but one important thing is that there isnt any such datafile ie '/oracle/ora/dbs/MISSING00141' when i checked inside the dbs folder.
    The path is getting referred as part of the sysaux tablespace but its physical location is not found.
    So i did took this datafile offlinedrop issuing
    alter database datafile '/oracle/ora/dbs/MISSING00141' ofline drop
    but the problem i m facing now is the AWR is not opening up and it throw error stating first datafile of sysaux tablespace '/oracle/ora/dbs/MISSING00141' not found.
    ORA-00376: file 124 cannot be read at this time
    ORA-01110: data file 141: '/oracle/ora/dbs/MISSING00141'
    ORA-06512: at line 21.
    any solution for solving the problem would be appreciated
    thanks,
    ahmed

    Hi, I've got exactly the same problem up to the point where I try to offline drop the MISSING0009 datafile.
    The command says it completed OK but the phantom datafile does not go and still reports that it's there in dba_data_files, althoguh the online_status is RECOVER, the status is ONLINE.
    I'm not sure how to get rid of the entry if the offline drop command doesnt work. I've tried recreating the control file and deleting the entry for this datafile too but somehow it returned after that too!
    I''m also not sure what to do when I do get rid of it - since I cant recover the old sysaux01.dbf datafile since it's not consistent with the database since there has been a week inbetween and we're not running archivelogging.
    I would assume that all the stuff usually put in the SYSAUX tablespace is therefore lost, but I dont think we use anything that normally puts stuff in there, I've only noticed this since I was trying to install em.
    Do I have to rebuild the database from scratch? Or any ideas on how I can recover the situation? Can I do something like startup upgrade and re-run the upgrade scripts which will put their stuff back into sysaux....?
    Many thanks for ideas
    Rob

  • Transportable tablespace - Issue in impdp

    Hi guys,
    I need to transport the tablespace from 32 bit environmet (32 bit Linux and 32 bit Oracle) to 64 bit environment (Both 64 bit) as I am migrating to 64 bit.
    I have exported the tablesapce from 32 bit machine using expdp command. But I am getting below error while trying to import it on 64 bit environment
    ORA-39002: invalid operation
    ORA-31694: master table "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" failed to load/unload
    ORA-02354: error in exporting/importing data
    ORA-02373: Error parsing insert statement for table "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01".
    ORA-00904: "ORIGINAL_OBJECT_NAME": invalid identifier
    Oracle version in 32 bit mc is : *11.1.0.7.0*
    Oracle version in 64 bit mc is : *11.1.0.6.0*
    Tablespace path in 32 bit mc was : /opt/oracleDBTable/tablespace/
    I have mounted this folder from 32 bit mc to same path on 64 bit mc using NFS.
    All tablespaces has been changed to read only and metadata file has been copied in binary mode to 64 bit mc.
    Can anyone Pls help me in resolving this issue..
    Regards,
    Suprith

    should this work..?? and what is the parameter "compatible=xyz" how should i use it ?I dont know from memory... the parameter to do exports for lower version databases might as well be named "version" - but you will find the answer in the fine documentation.
    See these links:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/dp_export.htm#i1007148
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/dp_overview.htm#CEGFCFFI
    Edit:
    Regarding your export command
    .... version=11.1.0.6.0;Are these collons ";" at the end a typo or really there?
    Ronny Egner
    My Blog: http://blog.ronnyegner-consulting.de
    Edited by: Ronny Egner on May 20, 2010 11:48 AM

Maybe you are looking for

  • Weird javascript issues in google-chrome and awesome-wm

    I'm having a specific and annoying problem running google-chrome 12.0.742.100-1 and awesome 3.4.9-1.  When I use Gmail, the popup chat and tasks window placement is totally fscked up.  The windows appear in random places and are hanging off the side

  • Query is throwing an error like missing right paranthesis.,

    Hi, The below query is throwing an error like missing right paranthesis., and Is there any way to write the same query in a simpler way ? SELECT AVALABLEBALANCE FROM ( ( SELECT SUM(TH1.TRANSACTIONAMOUNT) FROM TRANSACTIONHISTORY TH1, TRANSACTIONTYPE T

  • Half screen goes dark on macbook 2.13 ghz intel core 2 duo

    Hi everybody...I am having problems with the screen on my MacBook Laptop. Half the screen has greyed out (the bottom half). All of a sudden using the MacBook, the half the screen goes grey, perfectly in horizontal. I´ve been with Apple 21 yrs, I have

  • Question bout the new Fios speed that might come.

    So I have the 25/25 connection will I get upgraded to 50/25 for free or will there be a increase in monthly fee if you choose to?

  • Statistical significance of causal factors in Demantra

    Hey everyone, I bet you missed me, well I have another question which is bugging my mind regarding demantra implementations. Say I add a causal factor to my business model, and of course I re-run the analytical engine in order to generate a new forec