Modify SUBPARTITION TEMPLATE

Is it possible to change the SUBPARTITION TEMPLATE of the table which has got the data.
I want to add one more value
to the subpartiion template.
SUBPARTITION TEMPLATE
  (SUBPARTITION PRD VALUES ('303', '660', '148', '150') TABLESPACE TEST,
   SUBPARTITION PRD1 VALUES ('238', '76') TABLESPACE TEST,
complete Table script .
CREATE TABLE SYSADM.TEST1
  BUSINESS_UNIT       VARCHAR2(5 BYTE)          NOT NULL,
  FI_INSTRUMENT_ID    VARCHAR2(20 BYTE)         NOT NULL,
  FI_IBALTYPE_CD      VARCHAR2(10 BYTE)         NOT NULL,
  ASOF_DT             DATE,
  ASOF_STATUS         VARCHAR2(2 BYTE)          NOT NULL,
  FI_BALANCE_AMT      NUMBER(18,3)              NOT NULL,
  FI_BALANCE_BCE_AMT  NUMBER(18,3)              NOT NULL,
  FI_ACCRINT_AMT      NUMBER(18,3)              NOT NULL,
  FI_ACCRINT_BCE_AMT  NUMBER(18,3)              NOT NULL,T
  CURRENCY_CD         VARCHAR2(3 BYTE)          NOT NULL,
  BASE_CURRENCY       VARCHAR2(3 BYTE)          NOT NULL,
  FI_LST_PAYMNT_DT    DATE,
  PROCESS_INSTANCE    NUMBER(10)                NOT NULL
TABLESPACE TEST
LOGGING
PARTITION BY RANGE (AS_DT)
SUBPARTITION BY LIST (BUSINESS_UNIT)
SUBPARTITION TEMPLATE
  (SUBPARTITION PRD VALUES ('303', '660', '148', '150') TABLESPACE TEST,
   SUBPARTITION PRD1 VALUES ('238', '76') TABLESPACE TEST,
  PARTITION JUN_2011 VALUES LESS THAN (TO_DATE(' 2011-07-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    NOLOGGING
    NOCOMPRESS
    TABLESPACE TEST
  ( SUBPARTITION JUN_2011_PRD VALUES ('303', '660', '148', '150')    TABLESPACE TEST,
    SUBPARTITION JUN_2011_PRD1 VALUES ('238', '76')    TABLESPACE TEST
  PARTITION JULY_2011 VALUES LESS THAN (TO_DATE(' 2011-08-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    NOLOGGING
    NOCOMPRESS
    TABLESPACE TEST
  ( SUBPARTITION JULY_2011_PRD VALUES ('303', '660', '148', '150')    TABLESPACE TEST,
    SUBPARTITION JULY_2011_PRD1 VALUES ('238', '76')    TABLESPACE TEST,
NOCOMPRESS
NOCACHE
NOPARALLEL
MONITORING;

Please do not multi-post.
https://community.oracle.com/thread/2617016
https://community.oracle.com/thread/2617018
https://community.oracle.com/thread/2617024

Similar Messages

  • SUBPARTITION TEMPLATE modify

    Is it possible to modify the existing SUBPARTITION TEMPLATE. Table has got data.
    I want to add one more value to the SUBPARTITION in the template.
    SUBPARTITION TEMPLATE
      (SUBPARTITION PRD VALUES ('303', '660', '148', '150') TABLESPACE TEST,
       SUBPARTITION PRD1 VALUES ('238', '76') TABLESPACE TEST,
    table script.
    CREATE TABLE SYSADM.TEST1
      BUSINESS_UNIT       VARCHAR2(5 BYTE)          NOT NULL,
      FI_INSTRUMENT_ID    VARCHAR2(20 BYTE)         NOT NULL,
      FI_IBALTYPE_CD      VARCHAR2(10 BYTE)         NOT NULL,
      ASOF_DT             DATE,
      ASOF_STATUS         VARCHAR2(2 BYTE)          NOT NULL,
      FI_BALANCE_AMT      NUMBER(18,3)              NOT NULL,
      FI_BALANCE_BCE_AMT  NUMBER(18,3)              NOT NULL,
      FI_ACCRINT_AMT      NUMBER(18,3)              NOT NULL,
      FI_ACCRINT_BCE_AMT  NUMBER(18,3)              NOT NULL,T
      CURRENCY_CD         VARCHAR2(3 BYTE)          NOT NULL,
      BASE_CURRENCY       VARCHAR2(3 BYTE)          NOT NULL,
      FI_LST_PAYMNT_DT    DATE,
      PROCESS_INSTANCE    NUMBER(10)                NOT NULL
    TABLESPACE TEST
    LOGGING
    PARTITION BY RANGE (AS_DT)
    SUBPARTITION BY LIST (BUSINESS_UNIT)
    SUBPARTITION TEMPLATE
      (SUBPARTITION PRD VALUES ('303', '660', '148', '150') TABLESPACE TEST,
       SUBPARTITION PRD1 VALUES ('238', '76') TABLESPACE TEST,
      PARTITION JUN_2011 VALUES LESS THAN (TO_DATE(' 2011-07-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        NOLOGGING
        NOCOMPRESS
        TABLESPACE TEST
      ( SUBPARTITION JUN_2011_PRD VALUES ('303', '660', '148', '150')    TABLESPACE TEST,
        SUBPARTITION JUN_2011_PRD1 VALUES ('238', '76')    TABLESPACE TEST
      PARTITION JULY_2011 VALUES LESS THAN (TO_DATE(' 2011-08-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        NOLOGGING
        NOCOMPRESS
        TABLESPACE TEST
      ( SUBPARTITION JULY_2011_PRD VALUES ('303', '660', '148', '150')    TABLESPACE TEST,
        SUBPARTITION JULY_2011_PRD1 VALUES ('238', '76')    TABLESPACE TEST,
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;

    Please do not multi-post.
    https://community.oracle.com/thread/2617016
    https://community.oracle.com/thread/2617018
    https://community.oracle.com/thread/2617024

  • How to add subpartitions to the existing subpartition template

    Hi All,
    My Question is ,how to add Subpartition to the exiting subpartition template. e
    like i have created a table with subpartition template with with 5 subpartitions like
    subpartiton one_1 value (121)
    subpartition two_2 value(122)
    and now i one to add one more subpartitin to the existing subpartition template(Like modify the existing subpartition templete).
    subpartition three_3 value(123)
    Could any suggest me.
    Thanks
    Sree

    >
    My Question is ,how to add Subpartition to the exiting subpartition template.
    >
    Follow the example in the section for 'Modifying a Subpartition Template' in the VLDB and Partitioning Guide
    http://docs.oracle.com/cd/E11882_01/server.112/e25523/part_admin002.htm#i1007904
    >
    You can modify a subpartition template of a composite partitioned table by replacing it with a new subpartition template. Any subsequent operations that use the subpartition template (such as ADD PARTITION or MERGE PARTITIONS) now use the new subpartition template. Existing subpartitions remain unchanged.
    If you modify a subpartition template of an interval-* composite partitioned table, then interval partitions that have not yet been created use the new subpartition template.
    Use the ALTER TABLE ... SET SUBPARTITION TEMPLATE statement to specify a new subpartition template. For example:
    ALTER TABLE emp_sub_template
    SET SUBPARTITION TEMPLATE
    (SUBPARTITION e TABLESPACE ts1,
    SUBPARTITION f TABLESPACE ts2,
    SUBPARTITION g TABLESPACE ts3,
    SUBPARTITION h TABLESPACE ts4

  • SUBPARTITION template

    Is it possible to modify the subpartition template of the table which has got data.
    I want to add one more value to SUBPARTITION of the template.
    SUBPARTITION TEMPLATE
      (SUBPARTITION PRD VALUES ('303', '660', '148', '150') TABLESPACE TEST,
       SUBPARTITION PRD1 VALUES ('238', '76') TABLESPACE TEST,
    CREATE TABLE SYSADM.TEST1
      BUSINESS_UNIT       VARCHAR2(5 BYTE)          NOT NULL,
      FI_INSTRUMENT_ID    VARCHAR2(20 BYTE)         NOT NULL,
      FI_IBALTYPE_CD      VARCHAR2(10 BYTE)         NOT NULL,
      ASOF_DT             DATE,
      ASOF_STATUS         VARCHAR2(2 BYTE)          NOT NULL,
      FI_BALANCE_AMT      NUMBER(18,3)              NOT NULL,
      FI_BALANCE_BCE_AMT  NUMBER(18,3)              NOT NULL,
      FI_ACCRINT_AMT      NUMBER(18,3)              NOT NULL,
      FI_ACCRINT_BCE_AMT  NUMBER(18,3)              NOT NULL,T
      CURRENCY_CD         VARCHAR2(3 BYTE)          NOT NULL,
      BASE_CURRENCY       VARCHAR2(3 BYTE)          NOT NULL,
      FI_LST_PAYMNT_DT    DATE,
      PROCESS_INSTANCE    NUMBER(10)                NOT NULL
    TABLESPACE TEST
    LOGGING
    PARTITION BY RANGE (AS_DT)
    SUBPARTITION BY LIST (BUSINESS_UNIT)
    SUBPARTITION TEMPLATE
      (SUBPARTITION PRD VALUES ('303', '660', '148', '150') TABLESPACE TEST,
       SUBPARTITION PRD1 VALUES ('238', '76') TABLESPACE TEST,
      PARTITION JUN_2011 VALUES LESS THAN (TO_DATE(' 2011-07-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        NOLOGGING
        NOCOMPRESS
        TABLESPACE TEST
      ( SUBPARTITION JUN_2011_PRD VALUES ('303', '660', '148', '150')    TABLESPACE TEST,
        SUBPARTITION JUN_2011_PRD1 VALUES ('238', '76')    TABLESPACE TEST
      PARTITION JULY_2011 VALUES LESS THAN (TO_DATE(' 2011-08-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        NOLOGGING
        NOCOMPRESS
        TABLESPACE TEST
      ( SUBPARTITION JULY_2011_PRD VALUES ('303', '660', '148', '150')    TABLESPACE TEST,
        SUBPARTITION JULY_2011_PRD1 VALUES ('238', '76')    TABLESPACE TEST,
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;

    Please do not multi-post.
    https://community.oracle.com/thread/2617016
    https://community.oracle.com/thread/2617018
    https://community.oracle.com/thread/2617024

  • Unable to upload the updated/modified Report template (rtf file) in siebel

    Hi,
    I am unable to upload the updated/modified Report template (rtf file) if already exists in the local database.
    Initially I have uploaded a rtf template, generated xliff, registered it and can view the report from the registered view. Later I have made few changes to the rtf template, in the reports template view, I have uploaded this. When i run the report in the registered view, I am able to see the earlier version and it doesnt show me the updated changes.
    I am using 8.1.1.3 siebel and BIP 10.1.3.3.1 on local.
    Looking at the metalink found "How To Upload Modified RTF Template Files In The Siebel Application For BI Publisher Reporting [ID 1136418.1]" which is related to server but I am working on local database
    Please find attached the template, xml file. can you please look into this and update me ASAP
    Thanks,
    RV

    Hi,
    Not able to find Report - Standard templates or Report - Custom templates view in Administration - BIP reports in Siebel 8.1.1.3?
    We have applied 8.1.1.3 patch on 8.1.1.0
    below are the steps followed
    Reports are not generated after 8.1.1.3 patch installtion.
    we have also followed to below steps mentioned for this issue in oracle support.
    "In order to resolve this behavior it is necessary to ensure that the 8.1.1.3 FixPack has been applied to the Siebel Tools installation. This will provide an additional .zip file in the REPPATCH folder of the Siebel Tools installation. Once this has been done please then follow the configuration steps as documented :
    change sysprefix to X_ before sif import and chage back to SBL_ after sif import.
    1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
    2) Import the 4 SIF files in the following order:
    S_XMLP_REP_TMPL_02112010.sif
    SBL_XMLP_REPORT_SELECTION_FLG.sif
    Report Template BC.sif
    Report Template Registration Applet.sif
    3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
    Once the above steps have been completed the Selected Record flag will appear in the Report Template Registration views."
    we still not able to generated able to generate reports even after following above steps.
    Thanks
    Sean

  • How do I modify the template used in the Photo Gallery module

    I notice the Photo Galleries are rendered as an HTML table and I would like to make a small modification to the way the gallery is rendered on the page.
    Basically I just want to wrap a DIV around the <img> tag so I can control the look of the image via my own CSS.
    I see there is the ability to modify Module Templates, but the photo gallery module is not listed there.
    Where can I access the template used for a photo gallery?
    Alternatively I will need to display the images myself using an XML feed and jQuery, but I would rather use BC's own modules when I can.

    Hi David,
    There is no template for the photo Galleries. But if you are using Firebug you can find out the css values and add your own modification by adding CSS by the same selector as the current gallery to your own page and use the !Important value to over write the gallery css.

  • How to modify Data Template  ARXSGPO.xml

    We are on EBS 12.1.1. My client want to customize AR Customer Balance Statement Letter. They need rtf to be modified as well as some additional info for which I need to modify Data Template ARXSGPO.xml .
    But I am not able to modify above xml file. Update File button has been disabled. Could someone tell me how I can update existing xml file ?
    Thanks in Advance

    Hi
    You could use the XDOLoader command to upload data templates.
    http://bipublisher.blogspot.com/2008/01/bi-publisher-xdo-loader.html
    But it would be better if you could create a custom report and attach the new date template, instead of modifying the standard report.
    Regards
    Nishka

  • Modifying a template

    I have a project with 200 forms more or less. Now I need to modify a template, and I know I would open all the fmbs and save them. How can I optimize this process ? I use Project Builder and think that It can help me with a Macro, but not sure.
    Any suggestions?
    Thanks,
    JMM

    export it and remap the speed of the clip in FCP or Motion. Or(the painful way) select the group with the camera and bring up your keyframe editor panel, extend the duration of your project, go to the point where the camera is focusing on the dropzone, select all the keyframes after that and pull them (holding the shift key) to your left, thus extending the time it takes for the camera to move on.... you would then have to extend the duration or the effects, behaviors, keyframes of your other elements....
    my recommendation: export and retime.

  • Subpartition templates and DBMS_Metadata.Get_DDL

    Does anyone know of a way to get DBMS_Metadata.Get_DDL to specify a subpartition template clause instead of spitting out a specification for every subpartition? I'm finding a 6,000 line create table statement to be a little unwieldy ...
    This is 10.2.0.4

    Does anyone know of a way to get DBMS_Metadata.Get_DDL to specify a subpartition template clause instead of spitting out a specification for every subpartition? I'm finding a 6,000 line create table statement to be a little unwieldy ...
    This is 10.2.0.4

  • Excel busy when I try to modify a template of MS Project visual report

    (Sometime) when I try to modify a xlst template for MS Project (2013) visual report MS Project say me that excel is busy.
    But Excel is closed. I try to close and re-open bot excel and MSProject but say me always that cannot open visual report (based on my custom template) because excel is busy.
    In my template I inserted also an external connection to other data (coming from another database).
    The template is populate with "visualize report" ....
    Also If I try to modify the template (using MS PRoject function) MS Project say me that MS Excel is busy...
    I used that template sussefully... but when I make some update to template file (for example add a table o a simple text) then MS Project is not able to open excel file.... but I don't understand why. So I have to rollback modifies and take previous template
    version.
    [Note:] could be something related to which sheet (of template xlst file) has focus on when saved?
    thank you.
    regards
    db
    Daniele.b75

    
    could depend by what I choose when close & save the template?
    Excel ask me...
    Sometimes I try to click on SI .... or NO ... but always MS Project says me that Excel is busy.
    please.... help
    thank you
    Daniele.b75

  • Modifying Pages templates?

    Have used the "club" newsletter template for a newsletter and now want to modify it to include a logo at the top of the pageCan't figure out how to move the dateline header at the top down to make room for logo. Apple help didn't have any answer and referred me here. This should be easy and straightforward but it isn't.
    Anyone know how to the modify this template to move objects, including dateline, down on page?
    Simple delete of that line of text also removed it from all other pages. Cannot highlight box containing dateline info so can't copy, paste and rebuilt page in new document.

    It's always a good idea to show the layout on Pages documents, makes it easier to see what is where.
    The date is in a header & the object, the UK flag, is a object placeholder. You can drag & drop your logo onto the flag &, because it is an inline object, it will automatically enlarge the header. Since it's a page layout document, the problem you're having is that the title & everything else is text boxes or floating object as there is no text layer. You just need to select the text boxes & objects & move them around to make room.

  • Modify response template workflow_info.htm

    Hi - I'm wanting to modify response template workflow_info.htm to display full names of reviewers in the template. I already know that the getValueForSpecifiedUser function will do that for me and I have some experience with custom components, but I'm not quite sure how to go about this particular change since the template is called from the GET_WORKFLOW_INFO_BYNAME service.
    The questions I have are as follows:
    What type of resource definition do I create?
    Do I use a super tag to override the existing output? I'm leaning to the belief that I override the service itself rather than the output of the response template, but could use a pointer here.
    Appreciate any advice anyone can provide.
    Many thanks,
    Jon

    That helps a bunch. What I'm dealing with is that we need to display the full first and last name of the approvers in the workflow action history section as follows:
              <!-- USERS cell -->
              <td class="<$rowClass$>">
                   <div class="xuiListCellDivCenter" nowrap>
                        <script language="JavaScript">
                             var userString = "<$js(wfUsers)$>";
                             var userArray = userString.split(",");
                             for (var i=0; i<userArray.length; i++) { document.write(userArray[i] + "<br>") }
                        </script>
                   </div></td>
    So I would change the output to display their last and first name rather than their account name, which is what is currently showing up. That is the goal.
    In the past, I've done components where I had used the @dynamichtml to key off the named fragment, so this became a problem when I was trying to use the response template for the Workflow service which didn't have any of these and I was left to try to make sense of how to do a component for this... I think I'm getting what you are saying to do and will give it a go. I'll post my success/fails here to go through it with you guys...
    Many thanks
    Edited by: Jon Almada on Feb 5, 2013 1:38 PM

  • Problem modifying a template room

    Hi experts,
    When i modify a template room, such us, the Assignment Rules only appear this change in the news rooms; the old rooms hasn´t the change...
    Is this normal? Can i update the old rooms with the new Assignment Rules?
    Thanks in advance,
    Regards,

    Hello Victor,
    This is correct behaviour, any changes you make to a room template will only take effect for newly created rooms using this template. Old rooms which were previously created with this template will not be changed.
    Regards,
    Lorcan.

  • I'm using Word for Mac. Though there are various instructions on the Internet for modifying the templates, none make sense to me. They instruct to do something I can't follow. I change a template but can't save it to the template folder.

    What the ****.
    OK, I try to change a template using Word for Mac version 14.3.4 2011 edition.
    I make a change to the template but am unable to save the darned thing to the template folder; it asks for a file name like it's a new document. I want to change the blasted template but if I can't save it as a modified template, I've accomplished nothing.
    Does anyone have a solution?
    Thanks

    Support for Microsoft Office for Mac

  • How to modify a template and use both old/new in the same library without interference

    OK first Thank you for reading this and hopefully being able to help me out. I got dumped this project on my desk to update two different templates already published in
    share point(2010) years ago. The original developer left the company 4 years ago. Since then anyone that tried to do anything with them made a big mess. I have done some heavy reading and am stuck on few issues.
    Please note the templates were created IP 2007 and I will be using IP 2007 to modify them. The temples have a small amount of C# that does not have to be changed. There is also a digital signature linked to them.
    After some heavy reading this week. I figured that I need to edit the template from Share point(2010)/IP(2007) and not copy the templates to a different location laptop/desktop
    because that will ruin the digital signature. There is also a large volume of submitted forms from these temples. The new version of the temples will be heavily modified deleting rolls columns changing names. My understanding is that since I want to keep the
    old submitted forms the way they are and still use the old template to open them. I would need a second version of the original template with all the visual modification to still use the original template's C# digital signatures and any other file that runs
    in the background.
    The plan:
    1)Turn off the automatic update to forms/template when a new version of the template is created.
    2) Copy the existing template (.xsn) file to a new document folder in share point(same network).
    3) Change the name of the .XSN file that I copied and modify it??????????? Will keeping the same name interfere with the old template/C# digital signature ect? I would like to change to something like SameName_version_2015 for example. or will changing the
    name cut the link to the old C# digital signature? or will it get modify the background files and break the old template/submitted files.
    4) Publish the new template in share point.
    5) Change the data connection to a new directory that I wish to submit all files.
    Please advice am I missing anything? and help me understand my step 3 better. Also I would love to get a better understanding of how i can backup and recover everything. Do I simple copy unmodified .XSN files somewhere and publish them if things goes wrong?
    Do I need to backup anything else?
    I am open to options if I can create a test folder in the share point for safety.
    Once again THANK YOU for trying to help.

    Hi, thanks for the reply!
    Just to follow up for what we did to disable the delete function for maintaining table records. We hided the Delete button by adding a "MODULE disable_delete" code in Screen Painter. So now only adding records to the table is allowed.
    Thanks,
    Jenny

Maybe you are looking for

  • Windows Vista and Apple TV

    Anyone got an answer to why I cannot see Apple TV under Devices in my new recently installed 7.2 version of Itunes? In fact that catagory doesn't even show up. I'm running Vista Home Premium and I've tried everything in the Apple TV help section incl

  • Tax determination third party process

    Hi all, I need to re-determined taxes during invoice creation for a third party sales flow. To explain the case: SO: company 1000 Country XX PO: company 1000 Departure country YY Invoice SO: tax determination as:      Departure country YY      Arriva

  • Integration scenario in rep

    hi, i'm creating an integration scenario inthe repository. B2B. the scenari has two action one which picks a file and pother which drops a  file. i'm creating  the applicaiton component  as template. after doing the entire configuration when i import

  • MacBook Pro and some gaming

    I have seached through a bunch of the threads here, but still can't find solid information about gaming with a MBP. I the last gen 1.5 G4 Macbook that I travel with, but lately Ihave been really upset with the performace I get when playing games (spe

  • Tree Layout  and a Where Clause

    I have built a uix application using Jdev (10.1.2) + Jheadstart (10.1.2). I followed Jheadstart for ADF developer’s guide (10.1.2) for creating a page with a recursive tree, tree layout style and it works well. Now I need to apply a where clause, pro