User_lobs and user_segments view shows different tablespace for lob segment

Hi,
I am trying to move lob in different tablespace for partitioned table.
I used
alter table <table_name> move partition <partition_name> lob(lob_column) store as (tablespace <tablespace_name>);
alter index <index_name> rebuild partition <partition_name> tablespace <tablespace_name>
ALTER TABLE <table_name> MODIFY DEFAULT ATTRIBUTES TABLESPACE <tablespace_name>
ALTER INDEX  <index_name> modify default ATTRIBUTES TABLESPACE <tablespace_name>
Database - 10.2.0.5
OS- HP Itanium 11.31
I can see in user_lob_partitions, user_segments and  user_part_tables shows me new tablespace information
whereas user_lobs and user_part_indexes shows me different information regarding tablespace.
I checked some documents in metalink but didnt help me.
I think that I am missing something or doing some step wrong.
Please help.
SQL> select partition_name, lob_partition_name, tablespace_name from user_lob_partitions where table_name in ('TRB1_PUB_LOG','TRB1_SUB_ERRS','TRB1_PUB_LOG') ;
PARTITION_NAME                 LOB_PARTITION_NAME             TABLESPACE_NAME
S2000                          SYS_LOB_P8585                  USAGE_REORG_TBS
S2001                          SYS_LOB_P8587                  USAGE_REORG_TBS
S2003                          SYS_LOB_P8589                  USAGE_REORG_TBS
S2004                          SYS_LOB_P8591                  USAGE_REORG_TBS
S2005                          SYS_LOB_P8593                  USAGE_REORG_TBS
S2006                          SYS_LOB_P8595                  USAGE_REORG_TBS
S2007                          SYS_LOB_P8597                  USAGE_REORG_TBS
S2008                          SYS_LOB_P8599                  USAGE_REORG_TBS
S2010                          SYS_LOB_P8601                  USAGE_REORG_TBS
S2011                          SYS_LOB_P8603                  USAGE_REORG_TBS
S2012                          SYS_LOB_P8605                  USAGE_REORG_TBS
S2013                          SYS_LOB_P8607                  USAGE_REORG_TBS
S2014                          SYS_LOB_P8609                  USAGE_REORG_TBS
S2015                          SYS_LOB_P8611                  USAGE_REORG_TBS
S2888                          SYS_LOB_P8613                  USAGE_REORG_TBS
S2999                          SYS_LOB_P8615                  USAGE_REORG_TBS
S3000                          SYS_LOB_P8617                  USAGE_REORG_TBS
S3001                          SYS_LOB_P8619                  USAGE_REORG_TBS
S3004                          SYS_LOB_P8621                  USAGE_REORG_TBS
S3005                          SYS_LOB_P8623                  USAGE_REORG_TBS
S3006                          SYS_LOB_P8625                  USAGE_REORG_TBS
S3007                          SYS_LOB_P8627                  USAGE_REORG_TBS
S3008                          SYS_LOB_P8629                  USAGE_REORG_TBS
S3009                          SYS_LOB_P8631                  USAGE_REORG_TBS
S3010                          SYS_LOB_P8633                  USAGE_REORG_TBS
S3011                          SYS_LOB_P8635                  USAGE_REORG_TBS
S3012                          SYS_LOB_P8637                  USAGE_REORG_TBS
S3013                          SYS_LOB_P8639                  USAGE_REORG_TBS
S3014                          SYS_LOB_P8641                  USAGE_REORG_TBS
S3015                          SYS_LOB_P8643                  USAGE_REORG_TBS
S3050                          SYS_LOB_P8645                  USAGE_REORG_TBS
SMAXVALUE                      SYS_LOB_P8647                  USAGE_REORG_TBS
32 rows selected.
SQL> select TABLE_NAME,COLUMN_NAME,SEGMENT_NAME,TABLESPACE_NAME,INDEX_NAME,PARTITIONED from user_lobs where TABLE_NAME in ('TRB1_PUB_LOG','TRB1_SUB_ERRS','TRB1_SUB_LOG') ;
TABLE_NAME                     COLUMN_NAME                    SEGMENT_NAME                   TABLESPACE_NAME                INDEX_NAME                     PAR
TRB1_SUB_ERRS                  GENERAL_DATA_C                 SYS_LOB0006703055C00017$$      TRBDBUS1LNN1                   SYS_IL0006703055C00017$$       YES
TRB1_SUB_LOG                   GENERAL_DATA_C                 SYS_LOB0006703157C00017$$      TRBDBUS1LNN1                   SYS_IL0006703157C00017$$       YES
TRB1_PUB_LOG                   GENERAL_DATA_C                 SYS_LOB0006702987C00014$$      TRBDBUS1LNN1                   SYS_IL0006702987C00014$$       YES
SQL> SQL> select unique segment_name ,tablespace_name from user_Segments where segment_name in (select SEGMENT_NAME from user_lobs where TABLE_NAME in('TRB1_PUB_LOG','TRB1_SUB_ERRS','TRB1_SUB_LOG') );
SEGMENT_NAME                                                                      TABLESPACE_NAME
SYS_LOB0006702987C00014$$                                                         USAGE_REORG_TBS
SYS_LOB0006703055C00017$$                                                         USAGE_REORG_TBS
SYS_LOB0006703157C00017$$                                                         USAGE_REORG_TBS
SQL> select unique segment_name ,tablespace_name from user_Segments where segment_name in (select INDEX_NAME from user_lobs where TABLE_NAME in('TRB1_PUB_LOG','TRB1_SUB_ERRS','TRB1_SUB_LOG') );
SEGMENT_NAME                                                                      TABLESPACE_NAME
SYS_IL0006702987C00014$$                                                          USAGE_REORG_TBS
SYS_IL0006703055C00017$$                                                          USAGE_REORG_TBS
SYS_IL0006703157C00017$$                                                          USAGE_REORG_TBS
SQL> select unique index_name,def_tablespace_name from user_part_indexes where table_name in ('TRB1_PUB_LOG','TRB1_SUB_ERRS','TRB1_SUB_LOG');
INDEX_NAME                     DEF_TABLESPACE_NAME
SYS_IL0006702987C00014$$       TRBDBUS1LNN1
SYS_IL0006703055C00017$$       TRBDBUS1LNN1
SYS_IL0006703157C00017$$       TRBDBUS1LNN1
TRB1_PUB_LOG_PK                USAGE_REORG_IX_TBS
TRB1_SUB_ERRS_1IX              USAGE_REORG_IX_TBS
TRB1_SUB_ERRS_1UQ              USAGE_REORG_IX_TBS
TRB1_SUB_ERRS_2IX              USAGE_REORG_IX_TBS
TRB1_SUB_LOG_1IX               USAGE_REORG_IX_TBS
TRB1_SUB_LOG_PK                USAGE_REORG_IX_TBS
SQL> select unique def_tablespace_name from user_part_tables where table_name in ('TRB1_PUB_LOG','TRB1_SUB_ERRS','TRB1_SUB_LOG');
DEF_TABLESPACE_NAME
USAGE_REORG_TBS
Please let me know if some more details required.

>whereas user_lobs and user_part_indexes shows me different information regarding tablespace.
do you see different results after starting a new session after the ALTER statements were issued?

Similar Messages

  • LR2 and PS Eelements8 show different RGB for the same color - Please, HELP

    LR2, Elements 8, Color Chart 24 (CC24),
    Please help. I may need to reset LR2 to factory default or to something else.
    For the following RAW adjustments the tone curve set to Linear, Contrast and Brightness to 0
    I have photographed a CC24 in RAW. Opened image in Elements 8 and adjusted Exposure to 243 for the White patch #19
    Then with with WB tool clicked on the 50% Gray and then readjusted exposure for the CC24 listed 243 for #19.
    Now all Gray patches #19 through #24 as listed in the table or very close R=G=B (243, 200, 160, 122, 85, 52)
    The RGB numbers for Red Patch #15 are R=169, G=58, B=63
    The CC24 listed RGB for Red patch #15 are R=175, G=54, B=60
    Also saved the adjusted image as JPG
    Then opened the image in LR2 and adjusted exposure and WB as described above for Elements 8.
    The Gray patches #19 through #24 show RGB numbers as listed in the table or very close.
    The RGB numbers for the Red patch #15 are R=138, G=84, B=64.
    However the CC24 RGB for Red patch #15 are R=175, G=54, B=60
    Exported the image as JPG
    Then opened the two saved JPG images in Elements. these two images read almost identical RGB numbers for each patch.
    How can I fix LR2 RGB reading. Recently I have saved as defaults the tone curve set to Linear, Contrast and Brightness to 0 and probably did it wrong. My be I need to reset LR2 to the factory defaults to restore its correct reading or something else.
    Please help.
    Leonid

    Q1. Is that means that when LR2 Exported  RAW to JPG the correct numbers resulted from conversion?
    You should be careful with the term RGB numbers. Such numbers are only useful when you know the working space. For example, sRGB, adobeRGB, prophotoRGB, melissaRGB, etc. The numbers I calculated are simply the reference numbers (find them here: http://www.brucelindbloom.com/index.html?ColorCheckerRGB.html ). I recalculated the values in the display space used in Lightroom from Bruce Lindbloom's values in normal prophotoRGB which is a simple arithmetic excercise. When Lightroom exports a jpeg, you can set the color space in the export panel and it will do the conversion for you meaning that it will translate between its internal colorspace and the desired export color space. In an external program, you will usually be working in sRGB, adobeRGB, or prophotoRGB, which are the three main spaces that Lightroom exports to. As you can see from Bruce's tables in the link above the RGB values for these patches in all these spaces are different.
    For example RGB for MacBeth CC24 Red patch (#15) was shown as 203, 0, 0 and x-rite RGB is 174, 54, 60.
    They are actually the exact same chart. As I say above the values are meaningless if you don't know the colorspace. The first RGB triplet you quote makes no sense at all. It does not correspond to any colorspace listed for the MacBeth chart. The zeros indicate that the color is far outside of the gamut of the used color space, so the value is basically useless. The second is sort of close to the sRGB value.
    Q.2 Would it mean that your shown table should not be applied to (used with) x-rite CC24 but to MacBeth only?
    They should be pretty good for both as the chart is supposed to be the same.
    Q3. Have you created your posted LR table or it was provided by Adobe?
    I created it myself. Since you have a colorchecker, you should look into creating a camera profile using it. This can be done with X-rite's excellent passport utility (free download from their website), or with Adobe's free DNG profile Editor. Simply shoot a chart in the right light conditions and run the raw/dng file through this utility and a profile is created that will allow you to get very good color rendering from your camera if you shoot raw.

  • Month view and detail view show different times

    I'm importing this calendar:
    http://www.mychurchevents.com/calendar/ical/2330512/public.ics?tz=z88
    Here is my problem:
    The meeting shows in Month view as 10AM, but the details show 9AM.  9AM is the correct time.  It's only a problem during Daylight Savings Time.  I've switched every Time Zone Control I can find with no change, and I don't want to have to change each event.
    This calendar imports perfectly on any iOS device.  This is only an issue in the Calendar app on OS X Mavericks.
    Feel free to import the calendar and work on it.
    Thanks!

    Robert,
    I imported the calendar, and duplicated your observation, until I edited "to:" to display a 1 hour event. I also used my time zone.
    My Screen Shot displays a one hour event which displays the correct start time as follows:

  • CJR2 entries in version 0 (original) and EFC (copy) show different ? amount

    HI Team,
    Recently we copied data from Version O to Version EFC using T code CJ9F , When running CJ9F to copy V0 to EFC, the work centre rate has updated in Version EFC with the latest from Version  0 , Therefore, the CJR2 entries in version 0 (original) and EFC (copy) show different ? amounts: is this correct?
    My Analysis  on the above  incident between two Versions
    Version EFC
    1.     Version EFC consist  checkedu201D Integrated planningu201D check box 
    2.     Exchange Rate type u201CMu201D ,
    3.     It doesnu2019t consist any u201Cvalue date  u201C 
    4.     checked   u201C integrated planning with cost center / bus. Process.
    Version u201C 0u201D
    Version u201C Ou201D doesnu2019t checked  u201C integrate planning  check box from 2003 fiscal year
    2 . Exchange rate type u201C Pu201D  u201C
    3 .value date u201C 01.04.2003
    4 . unchecked u201Cintegrated planning with cost center / bus. Process
    where is the data corrected can any one guide me and let me know if any steps are missing
    thanks
    Ranamka

    Hi kim standley,
    Thanks for using Apple Support Communities.  I would first try resetting SyncServices as described here:
    Mac OS X: Resetting the SyncServices folder
    http://support.apple.com/kb/TS1627
    If the issue persists after that, I'd move on to this article:
    Sync Services: Advanced troubleshooting for contact and calendar syncing
    http://support.apple.com/kb/ts2481
    Cheers,
    - Ari

  • Keychain showing different character for the password

    Hi just wanted to ask why my keychain is showing different character for my password in my AIM and Yahoo account? When i mark the show password its show plenty of letters but not the one i am really using. How can i show the right one?

    Hi Irvin,
    If you see a crazy corrupt password, I'd delete that item, ythen login yo AIM or Yahoo again to create a new one, unless you don't remember your PW, then try Keychain First Aid under the Window Menu item, then either check the Password under that item, change it, or delete it and start over.
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • In Cover Flow, a compilation album shows different covers for each song.  How do I make it show one cover for the whole album?

    In Cover Flow, a compilation album shows different covers for each song.  How do I make it show one cover for the whole album?

    Also in the first page of Get Info for all tracks set the Album Artist to be Various Artists.
    If you select all the tracks and right click to get info then you can do all the tracks in one go

  • How to create a Platinum,Gold and Silver Customer and how to set different price for a single material based on customer?

    Hi All,
    How to create a Platinum,Gold and Silver Customer and how to set different price for a single material based on customer?
    Assume Material is Pen.
    While creating Sales Order in VA01 how to bring different price for the same material for Platinum,Gold and Silver Customers.
    Kindly help me out.
    Thanks,
    Renjith Jose

    A good place to start is http://www.javaworld.com/javaworld/javatips/jw-javatip34.html
    Also, do a search in this forum on HttpURLConnection. That class allows you to use POST method to send form data to a web server.
    "Hidden" variables are only hidden in HTML. The HTTP that gets POSTed to the web server doesn't distinguish between hidden and not hidden. That is, the content you would write to the HttpURLConnection.getOutputStream() would be something like:
    hidden=1&submit=ok(Of course, the variable names would depend on what the web server was expecting from the form.)
    Also, be sure to set the Content-Type request parameter to "application/x-www-form-urlencoded"

  • Can't accept BBM invitations and Invites sent show as "Pending for Authorization" but recipients are not receiving them either (PIN Message Status : Service Blocked)

    I recenly changed device from BB Curve 8530 to BB Bold 9900 and ever since then can't accept BBM invitations and Invites sent shows only as "Pending for Authorization" but recipients are not receiving them either. Tried sending PIN messages  but  I got a red x next to the message and the status says: "Service Blocked" .
    When my phone got lost, I was lucky that I just synchronized my device to my BB Desktop. Not only was I able to retrieve my contacts (phonebooks and BBM) but also ALL txt msgs and even call logs
    Anway, that happening, I assumed I don't need to re-send all my BBM friends invites since some were able to communicate with me. But for those who have deleted my profile (knowing it got lost) and were still on my contact were the ones affected. I tried deleting them and sent an invite only to find out that: I can't accept BBM invitations and Invites sent shows as "Pending for Authorization" but recipients are not receiving any. (they also have the same pending for authorization notice on their end) 
    When I tried to send them a PIN message I get a red x next to the message nd get the service blocked message.
    Help I do not know what else to do.
    ** FYI: new contacts added with my new PIN have no prob sending invites and me accepting them all.

    Hello Lhea,
    This issue is most likely Caused by the BlackBerry not being provisioned for BlackBerry Data Services. 
    Please have a look at the following article that covers "Service Blocked" when sending a PIN message:
    http://btsc.webapps.blackberry.com/btsc/KB19244
    I hope this helps.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How do I configure my iPhone to show different colours for my two calendars both from separate email accounts, both Exchange.

    How do I configure my iPhone to show different colours for my two calendars both from separate email accounts, both Exchange.

    It does so by default... what's the issue?

  • HT1414 my ipod wont charge and i have used different chargers for it is it possible to reset it while its dead?

    my ipod wont charge and i have used different chargers for it is it possible to reset it while its dead?

    I do not know what you mean by charger. Cable?
    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar                          

  • Engineering and Manufacturing Org has different name for same item

    Dear All,
    I have an Engineering department generally Create items and configure bills, routings then, transfer all to Manufacturing org.
    My client has typical requirement as follows...
    Engineering and manufacturing department has different name for same item.
    Eg: Item A in Manufacturing org may be called as Item AA in Engg org. I have to maintain 2 names for same item. How to map this requirement in R12.
    Regards,
    Saravanan

    Can oyu not make it an organization level item and specify the proce there instead of keeping it a master level item?
    Regards,
    Utsav.

  • When setting the split-days to "every 15 minutes," the week and comparison views show incorrect time ranges for the day

    When I change the "split-days" interval time, under Options > Settings, to
    15, or every 15 minutes, the week and comparison views don't show the correct
    time range for the day.
    <P>
    For example, if I click View to display the calendar and then click Week to get
    a weekly view, the time range displayed is from 6:00 a.m.
    to 4:00 p.m. If I click Comparison to get a
    comparison view, the time range displayed is from 12 p.m.
    to 6:45 p.m.
    <P>
    In this example, should both of these views show the same time range, from
    9:00 a.m. to 4:00 p.m.?
    No, the two views will not necessarily show the same time range. The time
    range for the comparison view will start at the beginning prefs time only
    if you have something scheduled (on any day of the week) starting at that
    time. For example, on one of the days during your week of comparison, if you
    create an event that starts at 9:00 a.m. and then open the comparison view, the
    time range displayed will start with 9:00 a.m.
    <P>
    Additionally, view times will expand past the configured settings if events
    span past the time range. That is, if you have an event that spans from
    5:00 p.m. to 8:00 p.m., the event will be reflected in the view, even though
    your time range may be set to go only to 6:00 p.m.

    Umm yes.
    The settings are stored in ''prefs.js'', so you could swap various copies of this file in and out.
    However, the system will load ''prefs.js'', then, if present, ''user.js'' , so you can set up just your changes in ''user.js'' .
    The sort of line you need to look for is like this:
    <code>user_pref("mail.server.server14.check_time", 10);</code>
    You'll need to do some research to identify which of your accounts is which.
    Search for the account's email address:
    <code>user_pref("mail.identity.id10.useremail", "xenos&#64;example.com");</code>
    Use the id number to locate the account number:
    <code>user_pref("mail.account.account29.identities", "id10");</code>
    Use the account number to find the server number:
    <code>user_pref("mail.account.account29.server", "server14");</code>
    Finally, you can then use the server number find the account's time setting:
    <code>user_pref("mail.server.server14.check_time", 10);</code>
    This last entry may not exist, if you have never changed the setting from the default 10 minutes.
    Do be careful with your typing and copy/pasting; if the file fails the syntax parser it will silently fail.
    And make sure Thunderbird is shut down when you do the swap. If it's open, it may overwrite changes, and in any case, it only reads the settings file when it starts up.

  • Successfully imported json bookmarks file into FF19, and library view shows folders correctly, but Sidebar view shows no folders and so loses my organization.

    Longtime FF user. Still on 3.6.28 mostly, due to my need for my large collection of hierarchically organized bookmarks. I have 2000+.
    Trying FF 19 today.
    Successfully imported the json file from other system.
    Via the Bookmarks menu, Show All reaches Library view and everything is there. Except for the fact that this FF design will not let me see the contents of more than one folder at one time. Which is why I've stayed with 3.6.28.
    Now, a friend has shown me that I can see multiple folders AND the contents of multiple folders using Sidebar Bookmarks, just as I wish. Great! But after importing my bookmarks, all I see is a random list of bookmarks in the Sidebar view. There are no folders or subfolders so with this view I lose all the organizational structure I see in the Library.
    Am I missing something? Is there a way (an addon) that would put everything in the Library Right Pane? instead of just one folder? That would be fine.
    OR
    Is there a way to preserve the organization of my bookmarks after importing them, in the Sidebar view? That would also be fine.
    Thanks for any helpful answers. Otherwise, back to 3.6.28 I go.

    In the Library view, everything functions as Mozilla would have it. Yes, individual bookmarks are not to be seen, except in the right side pane. And only from one folder at a time. Returning to the beginning, that was my complaint with Show All Bookmarks and why I've stuck with 3.6.28 coupled with Old Manage Bookmarks.
    And that's why I asked if anyone is aware of an addon to make the contents of more than one folder visible in the right hand pane of the Library view in FF 4 and up. I've even tried Mike S's "hack" of OMB to see if I could make "Organize Bookmarks" return on FF19. No luck.
    So Library View works as it "should". But that's insufficient for my needs.
    You've indicated that Sidebar view SHOULD function as I wish. But so far, barring a fix, I don't see folders, subfolders nor individual bookmarks ''in the order'' that they started in, from PC1. I don't know why that failed. I'm happy to keep trying things, til the moon turns green.
    Proceeding along -- sort Library? Yes, sorting works. But since the Library is functioning, unsorted is my preference. To make the Library View FULLY ADEQUATE though, I'd want to see bookmarks in different folders viewable at one time. What I need is the Sidebar view with all the folders showing, replicating the Library's View hierarchical structure.
    HTML export and import? I'm sure I can import one into FF19. But I don't know how to export them from PC1 as my bookmarks are in .json format. When I try to do that, the dialog window confines me to selecting an HTML file, and so I can't export the .json file I have. I'm sure there's an easy answer, but its not intuitive.
    Thx
    P

  • Table and Materialized View in different namespaces?

    I've just faced something completly new for me. It appears that there are two objects with the same name and owner. Table and Materialized View have the same names and when I look into system dictionary I can se sth. like that:
    OWNER OBJECT_NAME OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE NAMESPACE
    USER_A USER_TABLE 159381 159381 TABLE 1
    USER_A USER_TABLE 159382 MATERIALIZED VIEW 19
    (I couldn't find how to write above with const length font).
    Two object in different namespace? I thought that Tables and Materialized Vievs have the same namespace.
    Can you please tell me how can I create objects to achieve above result? I would also be grateful if you tell me where to find that topic in documentation.

    Perfectly normal.
    SQL> select object_name, object_type from user_objects where object_name = 'TEST_MV';
    no rows selected
    SQL>
    SQL> create materialized view test_mv
      2  as
      3  select sysdate from dual;
    Materialized view created.
    SQL>
    SQL> select object_name, object_type from user_objects where object_name = 'TEST_MV';
    OBJECT_NAME                                        OBJECT_TYPE
    TEST_MV                                            TABLE
    TEST_MV                                            MATERIALIZED VIEW
    SQL>
    SQL> drop materialized view test_mv;
    Materialized view dropped.
    SQL>
    SQL> select object_name, object_type from user_objects where object_name = 'TEST_MV';
    no rows selected
    SQL>

  • How to move lobsegment and  lobindex to a different Tablespace

    Oracle Version: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit
    Os: Solaris 10
    Hello Everybody,
    I want to move a lobsegment and a lobindex to a differrent tablespace.
    But when i am executing the following statement in order to move the LOBINDEX I am getting the errors listed below:
    SQL> ALTER INDEX SYS_IL0000012358C00008$$ REBUILD TABLESPACE INDX;
    ALTER INDEX SYS_IL0000012358C00008$$ REBUILD TABLESPACE INDX
    ERROR at line 1:
    ORA-02327: cannot create index on expression with datatype LOB
    Is there any differrent commands/methods of moving the LOBSEGMENT/LOBINDEX to a differrent tablespace.
    Any help Appreciated..
    Regards,
    Prosenjit Mukherjee.

    Hi,
    Assuming that I have table "TEST" in USERS TableSpace
    CREATE TABLE TEST
    TEST_ID NUMBER NOT NULL,
    TEST_NAME CLOB,
    CONSTRAINT PK_TEST PRIMARY KEY(TEST_ID)
    SQL> ALTER TABLE TEST MOVE TABLESPACE EXAMPLE;
    Above command will move the table to new tablespace but will not move the CLOB segment and it will still be in original tablespace. This is because LOB data is stored outside of the table.
    Check the tablespace of the CLOB column by issuing following sql.
    SQL> SELECT index_name, tablespace_name
    FROM user_indexes WHERE table_name = ‘TEST’;
    INDEX_NAME TABLESPACE_NAME
    SYS_IL0000073575C00002$$ USERS
    In order to move CLOB column to different tablespace, we have to issue following command.
    SQL> ALTER TABLE TEST MOVE LOB(TEST_NAME) STORE AS (TABLESPACE EXAMPLE);
    In above example, TEST_NAME is the CLOB column which we want to move to new tablespace and EXAMPLE is target tablespace. Above command will successfully move LOB segments to the new tablespace. We can verify it by issuing same sql again.
    SQL> SELECT index_name, tablespace_name
    FROM user_indexes WHERE table_name = ‘TEST’;
    INDEX_NAME TABLESPACE_NAME
    SYS_IL0000073575C00002$$ EXAMPLE
    - Pavan Kumar N

Maybe you are looking for