Change the type of partition on a table

Hello


I have a table that is partitioned by list on the date column. The table contains a large amount of data.

My requirement is to make the partition from the list in a fan on the same column.



Kindly advice.

Hello

Welcome to the forum.

This is the forum for {forum: id = 260}.

Your question needs to be asked to {forum: id = 61} or {forum: id = 75}.

Please mark this question as answered (so others know they can ignore this thread) and after again in one of the cited one.

Concerning
Marcus

Tags: Database

Similar Questions

  • Problems with mappings when changing the type of source table field?

    Hello world

    one question.
    Is it a problem when I change my types of fields in my table of source of char for example varchar2 with mapping that uses this table?
    In the mapping of the source table field Types are defined as Char fields. Do I have to change all the fields of char to varchar2 (via Import again from the source table and synchronize in the map)?

    Thanks in advance.

    Greetings

    Hello

    If your new data type (in the database is compatible and big enough) then you probably don't have to change the class in your other mapping wise you need.

    It a good practice to import the last definition of table (metadata) in the repository of OWB and then synchronize incoming.

    Thank you
    Fati

  • ORA-1403 when change the type of file to APEX_APPLICATION_TEMP_FILES browser storage

    Hi all

    I'm new to APEX.  I use APEX 5.0 and try in site APEX Oracle using load data wizard to download the csv file.

    I managed to download data when the browser file storage type is obsolete WWV_FLOW_FILES.

    However, when I change the type of storage of Table APEX_APPLICATION_TEMP_FILES, system will prompt ORA-1403 when I click 'Next' to the Source of data loading page.

    Exception logging: Sqlerrm: ORA-01403: no Backtrace data: ORA-06512: at the "APEX_050000.WWV_FLOW_DATA_UPLOAD", line 564 ORA-06512: to the "APEX_050000.WWV_FLOW_PROCESS_NATIVE", line 975 ORA-06512: at the "APEX_050000.WWV_FLOW_PROCESS_NATIVE", line 1172 ORA-06512: to the 'APEX_050000.WWV_FLOW_PLUGIN', line 2017 ORA-06512: at the "APEX_050000.WWV_FLOW_PROCESS", line 188

    Someone able to guide how to diagnose this problem?

    Thank you, Dorothy

    DorothySG wrote:

    I'm new to APEX.  I use APEX 5.0 and try in site APEX Oracle using load data wizard to download the csv file.

    I managed to download data when the browser file storage type is obsolete WWV_FLOW_FILES.

    However, when I change the type of storage of Table APEX_APPLICATION_TEMP_FILES, system will prompt ORA-1403 when I click 'Next' to the Source of data loading page.

    Exception logging: Sqlerrm: ORA-01403: no Backtrace data: ORA-06512: at the "APEX_050000.WWV_FLOW_DATA_UPLOAD", line 564 ORA-06512: to the "APEX_050000.WWV_FLOW_PROCESS_NATIVE", line 975 ORA-06512: at the "APEX_050000.WWV_FLOW_PROCESS_NATIVE", line 1172 ORA-06512: to the 'APEX_050000.WWV_FLOW_PLUGIN', line 2017 ORA-06512: at the "APEX_050000.WWV_FLOW_PROCESS", line 188

    Someone able to guide how to diagnose this problem?

    It's bug #21478903: error when changing from APEX_APPLICATION_TEMP_FILES to download files

    Use the deprecated option for now.

  • Change the Type of the attribute at the request of the View object

    Hi all

    I use JDeveloper 11.1.1.6. I am trying to achieve the following problem.

    My Table has a column of type VARCHAR2, but this field is to store, say, displayed in canonical format "YYYY/MM/DD hh '. I want to show the date in a nice format, as October 30, 12 ' and be able to use the datePicker adf (date. MinValue) on the attribute.

    So I created an entity object, and I changed the type of the attribute of Date String.

    I also created a ViewObject and the test on request module retrieves a date but seems to not understand the canonical format and date it recovers is wrong (something like 5049-02-20 12:45:30.45).

    Since then, I work on EBS I oracle API access and so on, so I changed my query View object;

    SELECT St St myEO.ExpiryDate-> FND_DATE.canonical_to_date (myEO.ExpiryDate) SELECT as displayed in St St. (FND_DATE.canonical_to_date would be the same thing as to_date (date, format))

    When I run AppModule, NICE! It works, it retrieves the date without time and if simple format to give the attribute I can even get the format I wanted.

    The problem is that when I try to update and validate changes to DB, (I replace the doDML so I can analyze my Date to a string with the format YYYY/MM/DD hh: mm: as is supposed to be) I can't even the part update. Complains in the framework;

    Invalid state, another user has changed the line and blah blah blah and the problem is here:

    (oracle.jbo.RowInconsistentException) Houston-25014: another user has modified the line containing oracle.jbo.Key [592674 primary key].


    [178] compare entity did not attribute display
    [179] original value: 2013-06-28 (that I ran with my FND_DATE.) Procedure CANONICAL_TO_DATE)
    [180] target value: 5048-02-21 22:47:53.0 (I guess that the automatic distribution or conversion of the original string)
    OracleSQLBuilder [181]: ROLLBACK WORK point registration "BO_SP".
    [182] DCBindingContainer.reportException: oracle.jbo.RowInconsistentException

    Any suggestion? I'd really appreciate it.

    Edited by: Alejandro T. Lanz on 1st November 2012 06:34

    Well, in short :):
    When you try to update the line, frame checks the data in db and cached (from the entity object) value is different from the db value (because you Date and String objects), so that it will throw oracle.jbo.RowInconsistentException exception.

    Dario

  • How to change the type of object?

    I have an object type, as shown below:

    Here are the object and its type

    create or replace type test_object1 as an object
    (
    val1 varchar2 (50).
    val2 varchar2 (50).
    VARCHAR2 (50) val3
    );

    create or replace type test_type1 is table of the test_object1;


    Now I want to change the type of object. I want to increase the size of val1 to varchar2 (100).

    Any body could help for the alter script.

    Thank you
    Lavan

    >
    SQL > alter type test_object1 change attribute (varchar2 (100)) val1;
    >
    Which won't work OPs example. Your example does not include the second type of object that depends on the first type.

    You cannot change the underlying type unless you use the CASCADe or INVALIDATE option.
    >
    change the type of test_object1 change attribute (val1 varchar2 (100)) waterfall;
    >
    See the CASCADE clause in the link provided by Osame
    >
    CASCADE clause

    Specify the CASCADE clause if you want to propagate the type change to the tables and dependent types. Oracle database abandons the statement if errors are found in the dependent types or tables, unless you also specify the FORCE.

    If you change the property of the type between FINAL and NON-FINAL, you must specify this clause to convert data in the tables and dependent columns. Please refer to [NOT] FINAL.

  • Can we change the type of field dynamically in the Apex

    Hi all

    Using Apex 4.0;
    Is it possible to dynamically change the type of field from one to the other? I have a list of selection; If the user selects a particular value, I need to display the next filed a tabled text, and if a different value that he chose the need to view it as a selection list.

    Please guide me,

    Thank you

    If these two form elements are two different columns in your table, just use the regular treatment.
    Otherwise, you can either
    -Create a view on top of your table that contains two columns (thus duplicate), use the regular treatment of APEX and doing the real work to instead - relaxing on your view or
    -Choose elements to map to your table.column and (when the other field is shown and modified) copy the value to the first element with dynamic Action.

  • Qosmio F10 - cannot change the type of HARD drive in the BIOS

    I want to change my hard drive, but the category in the BIOS is not editable.

    I can not change the type of hard drive in the BIOS on my desktop PC.

    Hello

    And you want to change in the BIOS now?
    I put t know which option you mean exactly

    The drive in the BIOS, you can change t. That's why you should buy a new

  • Change the type of sensor pressure strain for SCXI-1314

    Hello!

    I would like to ask how to change the type of strain sensor.

    I use SCXI-1314 and one of my pressure sensor is a type of 4-wire. (Output 100mV, excitement: 10vdc)

    , but I want to replace the sensor by another type of current output type. (Output 4 ~ 20mV, excitement: 12-30Vdc)

    I checked the output voltage cable 4. (Defined as full-bridge OR max)

    Power + = Ex +.

    Food - = Ex-

    CH+        =  S+

    CH-         =  S-

    However, I don't know how to connect the type 2-wire with SCXI-1314.

    In addition, I don't have enough experience on the types of bridge (bridges and whole, quarter half)

    Can you explain what I need to do?

    One thing you migth try is to put a 5 Ohm resistor in the current loop. causing a drop in voltage 100mV on resistance, however check the soil conditions.  Since you will need a new calculation of sensitivty sensor anyway you can use a resistor 4.7 Ohm or 2 10 ohms in parallel... just find a good match between your 1314 input voltage range and the 4-20mA.

    And you will have an external power supply for the sensor.

  • Can you change the type of device to 'USB Raw resource' to GPIB controller?

    I'm trying to configure a GPIB FL Contec GP - IB (USB) controller in MAX.  I could so he can register through the creation of a pilot of the Assistant driver VISA, but it fits as a "gross resource USB" rather than as a GPIB controller.  I can send and receive information from the controller, but it does give me an option to search for connected devices of GPIB communicate with them.  Is it possible to change the type of the device, maybe by manually changing the driver created by the wizard of the NI-VISA driver?  Thank you for your time.

    N ° do not use MAX at all. You can just create a GPIB-USB controller on your own. You should contact the seller.

  • How can I change the "right click" menu for a table control?

    Hello

    How can I change the "right-click menu" of a table control. I would like to be able to remove the ability to add or remove columns and maybe more selections. I want to keep the possibility of

    Add or remove lines

    Right-click on your table.  Then go to advanced-> DURATION Shortcut Menu-> Edit.

  • Change the type of serial number of UUT

    Hello

    I am a new user of Teststand and I would like to change the type of serial number to USE.

    or add condition number of the operator to write in the information of the object to measure dialog box.

    I want the serial number that have just number 20 and no letters.

    If the serial number is different, the dialog box should reappear as at the beginning.

    Hope that I was clear.

    Thank you

    You will need to replace the PreUUT callback and then build some sort of algorithm to verify the serial number desired.

    I've attached an example of how do.

  • Update of cases in the structure of the case after having changed the 'Type of case.

    Hello

    After you change the "Type of business" (only one case has been deleted), I discovered that in cases of strcuture cases has become "damaged": case "named" have been changed to digital small (that is, 0, 1, 2, 3).

    Is there a way to den strcuture case?

    Thank you

    Pavel

    Right click on one of the enums greyed out and choose 'review and update of Type Def.  That should allow you to solve problems.

  • How to change the type of insurance policy indicator on front panel

    Hello

    I want to change the type of digital indicator police led style. I have the police. But, how can I change the type of indicator of independent policy and not only not by changing the type of policy application. I checked the property node available are only color, size, justification, but type.

    Yoppy.

    Go

     

    LED > right mouse click > Create > property Node > Label > police > name

     

    then use (or)

     

    Digital > right mouse click > Create > property Node > digital text > police > name

    Kind regards.

     

  • Change the Type of Interpolation of waveform graphic part

    Hello dear colleagues,

    How can I change the type of interpolation to a graph of waveform in part? Check the attached photo.

    I don't want yellow interpolation to the beginning of the measure.

    I know that the interpolation can be modified with the property node, but this has an influence on all points.

    Any idea?

    Thank you very much.

    Hi maximint,

    -NaN values used to hide unwanted in the plot points

    -use separate plots when you do not want the "edges" in land line

  • How can I change the type of chassis in an existing CompactRIO project?

    Hello

    I have a built in LabView 8.2 for a chassis 9101 cRIO. Now, I want to bring to LabView 2009 and use it on a chassis of 9104. I would have thought this should be simple, but there is a VI on the FPGA itself. When you compile, I get the error "the device type that has been set up in this function does not match the actual type of the device. I don't want to have to remove the frame of the project & add it back (losing all the settings it can have) - is there a way just to change the type of target, but keeping the relevant parameters?

    Thanks for any help!

    Dave

    Hi Dave,.

    Once you've practiced it several times it is actually a piece of cake.

    Right click on the project select new target or device

    Rember just to specify rather than the current goal.

    Otherwise, you will have a conflict.

    The new target is initialized to the Ip (0,0,0,0) then re address assignment standard.

    Copy (drag) all the components for the new device (RT & FPGA if included)

    Note it's manual labor rather than you have to 'say' labview what material he must understand!

    concerning

    Xseadog

Maybe you are looking for