Tablespace Name in 11.5.10.2

Hi group,
We are working on an environment with 11.5.10.2 Ebusiness Suite application version and 10.2.0.3 database version where there are more than 600 tablespaces with Segment Space Management "Manual".
Now, I want to rellocate large segments to a different tablespace where Segment Space Auto will be used.
So my question is, is there any problem if a move these segments to a different tablespace?
For example: GL_JE_LINES table = 50 Gbytes from GLD to GL_JE_LINES_DATA tablespace name.
I am not sure if it can cause any problem.
Any advice or help will be really appreciated.
Thanks in advance.
Francisco

I think rather going this way, you should use oracle supported OATM tablespace model that will take care your need.
Thanks

Similar Messages

  • Are TableSpace names stored in the tables?

    Are TableSpace names stored in the tables?
    If so, which one?

    Tablespaces are stored in the db.
    I believe they are in tCtrlOption

  • Can we rename Oracle username & tablespace name in 11g R2

    - We have Oracle tablespace name "TULIP"
    - We have Oracle username "TULIP"
    Default tablespace for use TULIP is TULIP.
    - Now can we rename tablespace TULIP to TULIP_NEW ?
    - Now can we rename username TULIP to TULIP_NEW ?
    Can this be done online when the database is running ?
    If NOT please give me the steps involved.
    Thanks
    Bristol

    Yes you can rename a tablespace.
    ALTER TABLESPACE <tablespace_x> RENAME TO <tablespace_y>;As far as renaming the schema there is no command for that. One approach would be to export the data and re-import using the REMAP_SCHEMA (for Data Pump) option.

  • Tablespace name taking too much size

    Hi all,
    As I have posted alot threads regrading to get free space from a tablespace.
    My problem is, we are using oracle 10g infrastructure and MT for messaging services.One of the tablespace name "IAS_META" is taking too much size and data in the table space is not valuable for us and i want to remove all the data. Please guide how can I do it and what will be the best procedure do it ASAP.
    Thanks in Advance.

    Hi Aijaz,
    I too having the same problem i want to get free space from IAS_META tablespace let me tell you i have 1 OAS R 2 (10.1.2) with Oracle Infrastructure i have deployed wireless application on OAS which is syncronized with Oracle Infrastructure & now IAS_META is totaly full and i want to get free space from this tablespace Please let me know how i will get
    Thanks,
    Waheed

  • TIPS(22) : EXPORTING TABLES BASED ON TABLESPACE NAME

    제품 : ORACLE SERVER
    작성날짜 : 1996-11-12
    TIPS(22) : Exporting tables based on Tablespace name
    ====================================================
    This script allows the user to enter the tablespace name and creates a list
    of tables in exp format. Additional choices allow the export of over-extended
    tables or tables over a certain size.
    rem list.sql
    rem Give list of tables depending on parameters
    set termout on linesize 75 pagesize 0 verify off feedback off
    clear buffer
    clear columns
    prompt
    prompt This script will create list.out, which can be used
    prompt to give export tables parameter file
    prompt
    accept Segment_Name Prompt 'Enter Seg Name : '
    accept owner Prompt 'Enter Seg Owner : '
    accept tsname prompt 'Enter TableSpace Name : '
    accept min_extents Prompt 'Enter Minimum num of exts : '
    accept min_size Prompt 'Enter Minimum seg size(M) : '
    prompt
    accept expchoice Prompt 'Is this list for exports ? : '
    col srt noprint
    SPOOL list.out
    -- start bit
    select 0 srt, decode(upper('&expchoice'),'Y','tables=(','')
    from dual
    union
    -- data bit without end segment
    select 1 srt, segment_name||decode(upper('&expchoice'),'Y',',','')
    from dba_segments
    where segment_type = 'TABLE'
    and segment_name like upper('&&Segment_Name%')
    and owner like upper('&&owner%')
    and tablespace_name like upper('&&tsname%')
    and extents >= (&&min_extents + 0)
    and bytes >= (&&min_size + 0) * (1024*1024)
    minus
    -- remove last one (with ',' after the name)
    select 1 srt, max(segment_name)||decode(upper('&expchoice'),'Y',',','')
    from dba_segments
    where segment_type = 'TABLE'
    and segment_name like upper('&&Segment_Name%')
    and owner like upper('&&owner%')
    and tablespace_name like upper('&&tsname%')
    and extents >= (&&min_extents + 0)
    and bytes >= (&&min_size + 0) * (1024*1024)
    union
    -- data bit with end segment
    select 3 srt, max(segment_name)||decode(upper('&expchoice'),'Y',')','')
    from dba_segments
    where segment_type = 'TABLE'
    and segment_name like upper('&&Segment_Name%')
    and owner like upper('&&owner%')
    and tablespace_name like upper('&&tsname%')
    and extents >= (&&min_extents + 0)
    and bytes >= (&&min_size + 0) * (1024*1024)
    order by 1,2
    spool off
    set heading on
    ****************************************************************

    Hi,
    You will have to use dynamic sql to create your second cursor.
    DECLARE
         v_sql_query VARCHAR2(400);
         TYPE cur_typ IS REF CURSOR;
         c1 cur_typ;
         mYRec MyTable%rowtype;
    BEGIN
         v_sql_query := 'select * from MyTable';
         OPEN c1 FOR v_sql_query;
              LOOP
              FETCH c1 INTO mYRec;
                   EXIT WHEN c1%NOTFOUND;
                   EXIT WHEN c1%NOTFOUND IS NULL;
    /*processing here*/
              END LOOP;
         CLOSE c1;
    END;
    Regards

  • Old db2 tablespace names in HR SP22 error log

    Hi all,
    We are applying HR support packages on a test box.  This test instance is a copy of our production ERP instance.  The copy was done using a backup/restore off the PRD database.
    We get an error when applying SAPKE60020 because it is trying to create a table in a tablespace that does not exist.  The tablespaces it is trying to access are of the pattern PRD#STABD, PRD#POOLD etc.   PRD is copied to TST.
    I have updated tables TADB6, TSDB6 and IADB6 and changed PRD to TST for all tablespaces.  At the OS level if I run a "db2 list tablespaces" all the names show up as TST#<tablespacename>.
    I am not sure why it is trying to access PRD#<tablespace>.  Is there someplace else I need to make a change from the old name?
    Thanks,
    Kevin

    Hi Kevin,
    no I am running out of ideas. As Dirk mentioned the tablespace names are only maintained in tables TADB6, IADB6 and TSDB6. The SAP DDIC assembles CREATE TABLE statements for new tables using those table entries.
    If you have changed all entries with the old SID in these tables and if you haven made sure that no old entries are buffered in the SAP table buffers ( $SYNC )
    , the SAP DDIC should not generate CREATE TABLE statements for new tables containing the old tablespace names any more.
    For existing tables that need to be converted the SAP DDIC reads out the current tablespace location from SYSCAT.TABLES and stores them into table DDSTORAGE before the table is dropped. For recreating the tables the DDIC then uses the DDSTORAGE entries. If no DDSTORAGE entries exist DDIC again falls back to TADB6, IADB6 and TSDB6.
    If no table conversion is running table DDSTORAGE is usually empty.
    Regards
                  Frank

  • Awrrpt gives wrong tablespace names (old names of renamed tablespaces)

    Hi all,
    I found a strange thing running some awr reports:
    I'm running a 10.2.0.1.0 db on a 32 bit Win cluster.
    I rebuilt some tablespaces to switch to automatic extents management, and I renamed tablespaces to a new name. Everything works fine, but awrrpt shows the wrong (old) names.
    Basically, here's what I did:
    --create new tablespaces
    CREATE TABLESPACE TS1_NEW ...
    CREATE TABLESPACE TS2_NEW ...
    --move tables from TS1 to TS1_NEW
    ALTER TABLE T MOVE TABLESPACE TS1_NEW...
    --move indexes from TS1 to TS1_NEW
    ALTER INDEX I REBUILD TABLESPACE TS2_NEW...
    --restore default names
    DROP TABLESPACE TS1...
    DROP TABLESPACE TS2...
    ALTER TABLESPACE TS1_NEW RENAME TO TS1
    ALTER TABLESPACE TS2_NEW RENAME TO TS2
    now, dba_tablespaces and v$tablespace show the right names ( TS1 and TS2 ), but if I run awrrpt.sql and look at the section "IO Stats"."Tablespace IO Stats" I found statistics for tablespaces TS1_NEW and TS2_NEW, and I don't find anything for tablespaces TS! and TS2!
    Obviously the time interval of the report is not the problem: I finished to build the new tablespaces at 7pm of 13th december and I run the awrrpt between 14-Dec-07 13:01:03     and 14-Dec-07 14:00:20... and the database has also been restarted many times (to try failover / failback) after the drop and rename operations.
    So my question is: where does awrrpt find the (wrong) names of the tablespaces?
    Am I going into troubles?
    Thanks for any answer,
    andrea

    Check out Metalink Note:343795.1, does it apply?No: I got no errors in alert.log and statistics made by awrrpt looks corrrect (or at least reasonable).
    I only got the wrong (old) tablespace name.

  • Tablespace names and SQLPLUS

    Hi,
    I need to know if there is a way to name tablespace names in a SQLPLUS command line statement.
    For example:
    sqlplus <user_name>/<password>@<service> <tablespace_name> <index_tablespace_name>
    Can this be done in one statement?
    Please post a reply to this discussion and also send me email if you have the answer or need clarification of what the problem.
    Thanks,
    Joe

    Tablespace information is not required at login time (or its a new feature and I dont know about it). If you are logging in to the database all you need is the username, password and the connect string. A user is assigned a default tablespace, that will hold data for any objects the user creates and does not specify storage information while creating those objects, and a temporary tablespace which will be used for sorting etc., but these tablespaces are assigned to a user when the DBA creates the user.
    Hope this answers your question.

  • Can rman restore tablespace to a different tablespace name?

    Hi all,
    I was wondering that can RMAN restore a tablespace to a different name tablespace in the same instance? I have the full backup by RMAN, I wonder I can do that or not? Any helps would be greatly appreciated. Thank you.
    Rich,

    Hi,
    a tablespace is not necessarily a logical space to separate schema objects from one another (could be, but not necessarily, depends on your object distribution).
    So what you need is: export your original user schema with the exp utility
    then import this dump into another user schema with the imp tool (fromuser=old touser=new)
    BEFORE you create the new user and you give it a different default tablespace. If you like to really separate the objects in tablespaces (like for transportable tablespaces) you may deny access to any of the tablespaces of old user to the new user. That makes sure data is not erroneously loaded in the old tablespaces.
    Read the docs to understand this clearly if you like.

  • How to find username and tablespace name indatapump import

    I have a datapump export without the logfile .I would like to import it into a db.Before starting import I would like to know the schema and tablespace which it is exported so that I can remap the schema and tablespace to some other.Is there anyway I can do this

    You can run your import command but add this:
    include=tablespace,user sqlfile=look.sql
    The file look.sql will have the create tablespace commands and the create user commands.
    Edit look.sql to see what the tablespace and user names are.
    Dean

  • Migrating schemas - Different tablespace names on source and destination

    Hi,
    I am migrating database schemas with exp/imp from 8i on Solaris to 9i on Linux and also from one 9i on Linux to another 9i on another Linux machine.
    The tablespaces and schemas (empty) already exist in the destination, so the schemas now need to be filled using imp. However, the default tablespace of the schemas have a different name in the source than in the destination. Is this going to cause errors during the import?
    Thanks.

    Not at all, i think. Just verify that the source tablespace is not present in the destination database. If you have a tablespace with the same name like the source, put the user quota to zero, so imp will switch to the default tablespace.
    Dba Z.

  • How to find the tablespace name and schema name from a dump file

    Good day to all,
    I recived a dump file from a client with oracle 11g, and I need do get the tablespace and schema name from the dump file. How can I do that?
    Thanks.
    Flávio Melo
    Edited by: 933141 on 09/05/2012 07:41

    user12038066 wrote:
    Use imp utility, it generates DDL for both tables and indexes. So you will get tablespace info for both.
    Use impdp utility, it generates DDL for indexes only. So you will miss tablesapce info for tables.
    Haven't found a workaround for impdp utility. Anyone knows?Are you sure you are using the impdp utility correctly? Because if you do, then sqlfile should have all gory details.

  • Getting the tablespace name(its very urgent)

    Hi,
    Can anyone help me to get the query to find the tablespace used by the users in the database
    Its Very urgent please
    Thanks,
    Murali.V

    @Murali,
    ...the tablespace used by the users...What did you mean exactly ?
    Default tablespace doesn't say that user cannot create a table in an other tablespace.
    You can see what tablespace are used by the user's segments :
    SQL> select default_tablespace
      2  from user_users;
    DEFAULT_TABLESPACE
    PSDEFAULT
    SQL> select tablespace_name, count(*)
      2  from user_segments
      3* group by tablespace_name
    SQL> /
    TABLESPACE_NAME                  COUNT(*)
    AAAPP                                 102
    AALARGE                                 4
    ADAPP                                 429
    AMAPP                                   2
    [...]@Talifhani,
    SELECT tablespace_name FROM dba_tablespaces; This give all tablespace from database.
    Nicolas.

  • Any way to create tablespace with name greater than 30 characters ?

    Is there any way to create tablespace greater than 30 characters on solaris 10 and Oracle 10g. Any way ? because i have no other option.

    desc dba_tablespaces
    So clearly the answer is NO.
    Tablespace names are invisible and irrelevant. Why the question?

  • Unable to extend index name of the index by 8 in tablespace

    Hello,
    I am not a DBA and do not have much experience in Oracle. When I was trying to restore the backup of my application, I received the following error. I could not able to proceed further in my tasks.
    ORA-01654: unable to extend index <name of the index> by 8 in tablespace <name of the Index tablespace>The following query was used to create the table space. Oracle version is 10g.
    CREATE TABLESPACE TS_JIRA
    DATAFILE 'D:\oracle\product\10.2.0\oradata\jiraadmi\TS_JIRA.dbf' SIZE 100M REUSE
    AUTOEXTEND ON NEXT 10M MAXSIZE 200M
    MINIMUM EXTENT 64K
    DEFAULT STORAGE ( INITIAL 64K NEXT 64K MINEXTENTS 1 MAXEXTENTS UNLIMITED PCTINCREASE 0);I do not know how to extend the size of the tablespace. Can anyone help to sort out this issue?
    Thanks in advance
    Ram

    Hi Ram;
    I suggest also review below doc for your future issue
    TROUBLESHOOTING GUIDE (TSG) - UNABLE TO CREATE / EXTEND Errors [ID 1025288.6]
    Overview Of ORA-01654: Unable To Extend Index %s.%s By %s In Tablespace %s [ID 146595.1]
    OERR: ORA 1654 unable to extend index <name.name> by <num> for tablespace <nam [ID 19049.1]
    I belive they will answer all your question ;)
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

Maybe you are looking for

  • File-XI-RFC, where can I see the payload of the RFC (after mapping)?

    Hi ! We have a File-XI-RFC scenario. It is working. Under the SXMB_MONI we see the checkered flag entries. Inside them, we have these 3 main branches: Inbound Message, Receiver Grouping and Response. Only the first 2, have Payloads -> MainDocument (a

  • BPM Not Updating

    Hi All, I have created a BPM with a transformation step in it, now when I am trying to change the Interface Mapping in the BPM the new mapping is not getting updated. The BPM is still reffering the old mapping. *I have tried the following solutions:

  • Firfox 19.0.2 dont load pages properly

    Most pages I open with Firefox give me a "Server cant be found" error message i.e Firefox can't find the server at www....I then have to hit the "try again" button (sometimes more than once) to get the page to load. Some pages when they do load does

  • How to enter an Artist in the ARTIST column on a playlist ?

    I have created an iTunes playlist with several song titles but the artist's name did not appear in the ARTIST column. How can I add the appropriate artist by the song title in the ARTIST column ? [email protected]

  • I am using outlook and got EXC_BAD_ACCESS

    I am using outlook and everytime I tried to open it teh following message is displayed Error Signature: Exception: EXC_BAD_ACCESS Date/Time: 2013-05-20 23:49:03 +0000 Application Name: Microsoft Outlook Application Bundle ID: com.microsoft.Outlook Ap