How Increase performance of delete operation

Hi,
How Increase performance of delete operation. This delete is done on a table which has around millions of records and loaded back every day .
The statement is in a procedure and is as follows.
#$%%$#$;
commit;
delete from TVRBC_SITE_ROLLUP_T;
commit;

Hi,
execute immediate 'truncate table TVRBC_SITE_ROLLUP_T';
Regards,
Oleg
Message was edited by:
tsiboleg

Similar Messages

  • How to perform long deletes in a table

    Hi,
    How to perform long deletes from contains large number of records in a table.There is a table which size is 20GB and total record is 70283699
    When we try to delete the records it take more than ten hours. Suggest me how can I to reduce the time.
    Thanks,

    Hi,
    Find below that table script..
    CREATE TABLE TRADING_FIN
    TABLESPACE FIN_DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    NEXT 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    LOGGING
    PARTITION BY RANGE (YEAR)
    SUBPARTITION BY LIST (GROUP_NO)
    PARTITION ABC_Z2009 VALUES LESS THAN (2009)
    LOGGING
    NOCOMPRESS
    TABLESPACE FIN_DATA
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    NEXT 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    ( SUBPARTITION ABC_Z2009_SP_1101 VALUES (1101) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1102 VALUES (1102) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1108 VALUES (1108) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1111 VALUES (1111) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1112 VALUES (1112) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1113 VALUES (1113) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1133 VALUES (1133) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1161 VALUES (1161) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1164 VALUES (1164) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1165 VALUES (1165) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1167 VALUES (1167) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1168 VALUES (1168) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1169 VALUES (1169) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1201 VALUES (1201) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1223 VALUES (1223) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1228 VALUES (1228) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1229 VALUES (1229) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1230 VALUES (1230) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1231 VALUES (1231) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1232 VALUES (1232) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1233 VALUES (1233) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_Z2009_SP_1234 VALUES (1234) TABLESPACE FIN_DATA ),
    PARTITION ABC_Z2010 VALUES LESS THAN (2010)
    LOGGING
    NOCOMPRESS
    TABLESPACE FIN_DATA
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    NEXT 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    ( SUBPARTITION ABC_2010_SP_1101 VALUES (1101) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1102 VALUES (1102) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1108 VALUES (1108) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1111 VALUES (1111) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1112 VALUES (1112) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1113 VALUES (1113) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1133 VALUES (1133) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1161 VALUES (1161) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1164 VALUES (1164) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1165 VALUES (1165) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1167 VALUES (1167) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1168 VALUES (1168) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1169 VALUES (1169) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1201 VALUES (1201) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1223 VALUES (1223) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1228 VALUES (1228) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1229 VALUES (1229) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1230 VALUES (1230) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1231 VALUES (1231) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1232 VALUES (1232) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1233 VALUES (1233) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2010_SP_1234 VALUES (1234) TABLESPACE FIN_DATA ),
    PARTITION ABC_Z2011 VALUES LESS THAN (2011)
    LOGGING
    NOCOMPRESS
    TABLESPACE FIN_DATA
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    NEXT 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    ( SUBPARTITION ABC_2011_SP_1101 VALUES (1101) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1102 VALUES (1102) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1108 VALUES (1108) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1111 VALUES (1111) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1112 VALUES (1112) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1113 VALUES (1113) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1133 VALUES (1133) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1161 VALUES (1161) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1164 VALUES (1164) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1165 VALUES (1165) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1167 VALUES (1167) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1168 VALUES (1168) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1169 VALUES (1169) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1201 VALUES (1201) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1223 VALUES (1223) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1228 VALUES (1228) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1229 VALUES (1229) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1230 VALUES (1230) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1231 VALUES (1231) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1232 VALUES (1232) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1233 VALUES (1233) TABLESPACE FIN_DATA,
    SUBPARTITION ABC_2011_SP_1234 VALUES (1234) TABLESPACE FIN_DATA )
    NOCOMPRESS
    NOCACHE
    PARALLEL ( DEGREE DEFAULT INSTANCES DEFAULT )
    MONITORING;
    CREATE UNIQUE INDEX TRADING_FIN_SUMMARY1P ON TRADING_FIN
    (ITEM, LOCATION, YEAR, WEEKNO)
    LOGGING
    TABLESPACE FIN_DATA
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    NEXT 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOPARALLEL;
    CREATE INDEX TRADING_FIN__IDX_BRANDP ON TRADING_FIN
    (YEAR, WEEKNO, GROUP_NO)
    LOGGING
    TABLESPACE FIN_DATA
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    NEXT 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOPARALLEL;
    ALTER TABLE TRADING_FIN ADD (
    CONSTRAINT TRADING_FIN_SUMMARY1P
    PRIMARY KEY
    (ITEM, LOCATION, YEAR, WEEKNO)
    USING INDEX
    TABLESPACE FIN_DATA
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    NEXT 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    Thanks

  • On performing continuous delete operation database hangs

    Dear All,
    On performing continuous delete operation , the instance on which delete operation is performed database hangs i.e it does not allows to make new connection and some times on alert log we get ORA-3136 error
    Database version 10.2.0.3 , OS : HP-UXvi3
    Regards

    Refer this thread
    ORA-3136 while performing bulk delete

  • Database performance degrade - delete operation

    Hi,
    I have a big database. One of the table contains 120 milion records and many tables (more than 50) has referential integrity to this table.
    Table structure
    Customer (Cust_ID, and other columns). Cust_ID is Primary Key. Other tables has referential integrity to Customer.Cust_ID.
    There are around 100 thousand records that have entry only in this (Customer) table. These records are identified and kept in a table Temp_cust(Cust_ID).
    I am running a PL/SQL which fetches a Cust_ID from Temp_cust and delete that record from Customer.
    It is observed that a delete command takes long time and the whole system performance degrades. Even a on-line service that inserts row into this table looks like almost in hand stage.
    The system is 24/7 and I have no option to disable any constraint.
    Can someone explain why such a simple operation degrades system performance. Please also suggest how to complete the operation without affecting performance of other operations.
    Regards
    Karim

    Hi antti.koskinen
    There is no on delete rule. All are simple
    referential integrity.
    Like REFERS CUSTOMER (Cust_ID).
    Regards,
    KarimCan you run the following snippet just to make sure (params are name and owner of the Customer table):
    select table_name, constraint_name, constraint_type, delete_rule
    from dba_constraints
    where r_constraint_name in
           select constraint_name
           from dba_constraints
           where owner = upper('&owner')
           and table_name = upper('&table_name')
           and constraint_type = 'P'
    /Also check the last time the table was rebuilt - deletes w/o rebuilds tend to raise the high water mark.

  • How to Perform Group By operation in OBIEE 11g

    Hi,
    I have created a report for the "Nationality count in department wise manner", since for this i need to give 'group by department' for getting correct answer...
    But in OBIEE 11g on presentation service how i need to give "Group BY" operation....for viewing correct count in nationality wise......
    Regards,
    Harry...

    Hi sai,
    U mentioned, but i couldn't clearly able to understand that.......Since to perform Group By i need to make some setting changes in content in Advanced Tab setting like that it is mentioned, but i need to perform in the following manner
    select count(nationality), nationality
    from per_all_people_f, per_all_assignment_f, hr_all_organization_units
    group by department
    Note: per_all_people_f-----------> dimension table, per_all_assignment_f--------------> fact table
    nationality from per_all_people_f and count(nationality) from per_all_assignment_f
    But department is from hr_all_organization_units--------->dim table
    I dont want to see the departments but i need to group the result in department manner that i was taking from the table hr_all_organization_units.....
    How to perform Group BY in OBIEE 11g.......
    Thanks,
    Harry.........

  • How to call REST DELETE operation in HTTP binding adapter

    Hi
    I am using HTTP binding adapter to call rest service and have made GET/POST works. however I also need to call DELETE operation.
    anyone know how to call DELETE in HTTP binding adapter?
    thanks

    Create a uriTemplate like this
    /auth?uname={uname}&pass={pass}
    use GET method only.
    generate the personalization keys.

  • How to perform Set operations in ODI?

    Can anybody suggest me how to perform a set operations in ODI?

    Hi ,
    May be the below threads helpful for u....
    UNION operation in ODI
    How to use Union, Union all, MINIUS in ODI
    Thanks.

  • How do I permanently delete contacts from my text message log?

    How do I permanently delete contacts from my text message log?  It still shows old contacts once I've removed them from my phonebook

    i know that!! After you delete them and then compose a new text it is still there. Basically you know when you send an email to someone and do not store them it still auto populates their name. This is what happens with my phone. I Google this issue and learn some knowledge about data eraser tips.  Maybe most people still don’t know that actual contents of file are not really deleted when performing simple deletion operation on your iPhone or other devices. But they are just marked for deletion and not shown in the file system of your iOS device. The actual data are still physically present on your iPhone. For iOS system, the only way to completely erase the data is to overwrite the original contents by using iPhone data eraser app. this is the guide on how to permanently delete contacts on iPhone.
      The same thing happens to me, but it doesn't require deleting a contact. When I delete/replace a contact's number, the Messages.app still autocompletes the number with the contact's name and references it as "other". 

  • A destructor and a delete operator

    Hello,
    How to use the delete operator in JAVA?
    Also what is the syntax of writting destructor?
    class sample
    LinkedList Lists;
    sample()
    Lists = new LinkedList();
    ~sample()
    delete Lists;
    The above code doesn't work in JAVA.
    May I know the reason?

    You may want to null a reference in this case:
    class X {
        private BufferedImage image;
        public void setImage(URL url) throws IOException {
            image = null;
            image = ImageIO.read(url);
    }Without nulling the image reference, the JVM may find it's out of memory and gc while reading the new image.
    It may even find it has to expand memory to hold the new image.
    It may only realize the old image is eligable for collection after doing this and updating the image
    reference. (A smart JVM may realize that the last reference to the old image is about to disappear
    and hurry it along, but you can imagine situations where the detachment is more subtle.)
    Again there are a few instances where nulling a reference makes sense.

  • How to perform DML Operations on Spatial Table Using ADF

    Hi
    I have an urgent requirement. I have a table with Spatial column. I have generated Business components based on Spatial Table.
    Now I have to perform Create,Read,Update and Delete operations using ADF Business Components on Spatial Table.
    I have written custom create(),read(),update() and delete() methods in my Application Module and i have to implement those methods.
    Can any one help me out how to acheive above four functionalities using ADF Business Components.
    Thanks in Advance

    HI,
    see this example.
    u can do like this.
    DATA: BEGIN OF seats OCCURS 0,
            carrid   TYPE sflight-carrid,
            connid   TYPE sflight-connid,
            seatsocc TYPE sflight-seatsocc,
          END OF seats.
    DATA seats_tab LIKE HASHED TABLE OF seats
                   WITH UNIQUE KEY carrid connid with header line.
    SELECT carrid connid seatsocc
           FROM sflight
           INTO table seats.
    loop at seats.
      COLLECT seats INTO seats_tab.
    endloop.
    LOOP AT seats_tab.
    write:/ seats_tab-carrid,seats_tab-connid,seats_tab-seatsocc.
    ENDLOOP.
    rgds,
    bharat.

  • How to perform operations on table control

    hello experts,
                         will u plz tell me how to perform operations like delete and update on tablecontrol in module pool.
                                thanks in advance,

    Hey Aravind,
    In case you want to delete just from your table control and not from database table, then you can use the commands:
    clear <workarea_name>
    delete <workarea_name>
    for your selected rows.
    And for deleting from database tables also, use:
    Delete from <Database_table_name> where <where_clause>.
    clear <workarea_name>
    delete <workarea_name>
    This will delete both from the table control and database table also.
    Reward if it proved useful to you.
    Regards
    Natasha Garg

  • How to override the default delete operation

    Hi,
    I am new to Jheadstart, java coding for that matter.
    Here's my situation,
    I have a view which is based on a function (function returns a collection).
    I have created instead of triggers on this view to perform insert/update/delete operations.
    All these DML operations work as expected in Oracle database.
    Now, I created an Entity object and a view object on this view in my jheadstart project.
    When I run this Jheadstart application my insert and search operations run fine but update and delete operations fail with JBO-26080 error.
    The underlying oracle error is "ORA-02014: cannot select FOR UPDATE from view with DISTINCT, GROUP BY, etc."
    I know that delete and update operations work fine in Oracle and hence I would like to override the default Jheadstart operations. Can any body tell me how can I do it or point me in right direction?

    Hi,
    From the JHeadstart Developer's Guide, chapter TroubleShooting - Problem Assessment:
    If you are getting a JBO error (Business Components for Java error), try to perform the same data retrieval or data manipulation action using the BC4J Tester. You can
    invoke the tester through a right-mouse-click on the BC4J application module. If you get the same error using the BC4J tester, the problem is in the BC4J object definitions. If you added business rules, or other custom code to your BC4J objects that executes during your data retrieval or data manipulation action, you can debug this code line-by-line by running the tester in debug mode. You can also look up the JBO error in the JDeveloper online help, for each error possible causes and how to solve them are described.
    It sounds to me like you will also get this error in the BC4J Tester. This means that the problem is not related to JHeadstart. You can go to the JDeveloper discussion forum http://otn.oracle.com/discussionforums/jdev.html and ask your question there without mentioning JHeadstart. Maybe there is some switch you can set in the BC4J object to let BC4J not use SELECT FOR UPDATE.
    Hope this helps,
    Sandra Muller
    JHeadstart Team

  • HT1311 For some unknown reason I have two Apple ID/Accounts in operation which is causing an issue. How do I completely delete one of these Accounts?

    For some unknown reason I have two Apple ITunes/ID Accounts in operation.
    How do I completely delete one of these Accounts?

    I have a similar situation.. in my case, I started using an Apple ID a while back, then when MobileMe was introduced, I got an account there, and somehow that is the account that is mostly used when making updates or purchases.
    Sometimes when making updates, it prompts me for the PW for one account, and sometimes for the other.
    This is a real pain - is there anyway both these accounts can be consolidated into one?  When I asked an Apple rep, I was told 'no', but they have been known to make mistakes when giving advice.  So, is there a way?  Technically, I don't see this as a problem.. but Apple seems to be of the opinion that this would lead to having apps 'shared' amoung users. I think all that would be necessary if for me to provide the necessary proof that both accounts are indeed mine, and not belonging to someone else.
    If not, what about deleting the apps registered to one account, and then re-purchasing them with the other account?  To do this, I would need to identify which apps are registered to which accouts - is this possible? Most of my apps are free, but there are a few I paid for.. not many, so this possible solution might work and not cost too much.  Ideas?

  • How to perform insert, update and delete in a table component

    hi all,
    i am using a table component in my page. I want to retreive data from multiple tables as well as perform insertion, updation and deletion operation.The changes should be affected in the corresponding tables. can anyone provide a solution for my problem.
    Thanks in advance
    regards,
    prasant

    There is a great tutorial for insert, update and delete records in a table.
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/inserts_updates_deletes.html
    Hope it helps.
    Thanks,
    Moumita

  • How to perform CRUD operations on joined tables created with Fluent API on Azure Mobile Services?

    I've been following the
    Field Engineer example project from the Windows Development Center to guide into mapping many-to-many relationships on my model. What's been bothering me is how to insert entries into many-to-many relationships.
    Take my model as example:
    An Organization can have many Users.
    An User can belong to many Organizations.
    My model class for User looks like this:
    public class User
    public User()
    this.Organizations = new HashSet<Organization>();
    public int Id { get; set; }
    public string Email { get; set; }
    public string Password { get; set; }
    public string PasswordSalt { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public bool Active { get; set; }
    public string Picture { get; set; }
    public string PictureMimeType { get; set; }
    public bool Confirmed { get; set; }
    public string ConfirmationKey { get; set; }
    [JsonIgnore]
    public virtual ICollection<Organization> Organizations { get; set; }
    My UserDTO class is this:
    public class UserDTO : EntityData
    public string Email { get; set; }
    public string Password { get; set; }
    public string PasswordSalt { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public bool Active { get; set; }
    public string Picture { get; set; }
    public string PictureMimeType { get; set; }
    public bool Confirmed { get; set; }
    public string ConfirmationKey { get; set; }
    My Organization class:
    public class Organization
    public Organization()
    this.Users = new List<User>();
    public string Id { get; set; }
    public string Title { get; set; }
    public string LegalName { get; set; }
    public string TaxReference { get; set; }
    [JsonIgnore]
    public virtual ICollection<User> Users { get; set; }
    My OrganizationDTO class:
    public class OrganizationDTO : EntityData
    public string Title { get; set; }
    public string LegalName { get; set; }
    public string TaxReference { get; set; }
    public virtual ICollection<UserDTO> Users { get; set; }
    With those classes in mind I created the controller classes, I mapped the DTO and the Model classes using AutoMapper as follows:
    cfg.CreateMap<Organization, OrganizationDTO>()
    .ForMember(organizationDTO => organizationDTO.Id,
    map => map.MapFrom(organization => MySqlFuncs.LTRIM(MySqlFuncs.StringConvert(organization.Id))))
    .ForMember(organizationDTO => organizationDTO.Users,
    map => map.MapFrom(organization => organization.Users));
    cfg.CreateMap<OrganizationDTO, Organization>()
    .ForMember(organization => organization.Id,
    map => map.MapFrom(organizationDTO => MySqlFuncs.LongParse(organizationDTO.Id)))
    .ForMember(organization => organization.Users,
    map => map.Ignore());
    Using Fluent API, I defined the relationship between these two entities using an EntityTypeConfiguration class like this:
    public class UserEntityConfiguration : EntityTypeConfiguration<User>
    public UserEntityConfiguration()
    this.Property(u => u.Id).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
    this.HasMany<Organization>(u => u.Organizations).WithMany(o => o.Users).Map(uo =>
    uo.MapLeftKey("UserId");
    uo.MapRightKey("OrganizationId");
    uo.ToTable("OrganizationsUsers");
    I created a TableController class to handle UserDTO and OrganizationDTO, I have no problem inserting new Users or new Organizations, but the endpoints from each TableController class only allows me to add Users or Organizations individually as far as I understand.
    To create an entry into the OrganizationsUser table, how can I achieve this?
    I was thinking a PATCH request should be a way to do this, but is it the right way? Do I have to define a TableController for this? How can I expose the Insert, Update, Select and Delete operation for the elements in this relationship? What would be the JSON
    to be sent to the endpoints?

    Hi,
    if you accept lists to hold the LOV data, then here is an example : http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html#CodeCornerSamples --> sample 70
    Frank

Maybe you are looking for