Relations reapper after adding another table

Hello

I have a problem that after using the option to hide some of the stranger, they keys reapper after making a few changes on the diagram (addition of a new table). More specific: on the schema relationship, there are many references to the table T1, I don't want to not show them in the because there are too many lines and it is not necessary to indicate all the. But when I hide them (objects-> show/hide foreign keys) and add another table to the diagram, all relationships are back. Can this be prevented somehow? DM, Version 4.1.0.881

Hello

Thanks for reporting the problem. I logged a bug.

Can this be prevented somehow?

You can add new tables to the diagram using drag & drop from the browser - then only FKs associated that tables appear on the diagram.

Philippe

Tags: Database

Similar Questions

  • How to keep English as a default value in the spell checker after adding another dictionary?

    I added a Spanish dictionary for firefox that I sometimes email Spanish-speaking. Since then, the spell checker has stuck to Spanish language by default whenever I restart the browser.
    As soon as I select English, it remains until I close the browser. But goes back to Spanish when I open a new window.
    I tried every setting I could find, and I also tried to remove and reinstall both languages via add dictionary.
    I am at a loss. Can anyone offer some advice?
    Thank you

    You can check the spellchecker.dictionary pref setting on the topic: config page and if the pref tells the user the value (in bold) and then try to reset via the context menu to the default value.

    You can open the topic: config page via the address bar.
    You can accept the warning and click on "I'll be careful" to continue.

    If you do not keep the changes after a reboot or have problems with preferences, see:

  • Re: Satellite L30 does not start after adding another stick of 1 GB memory

    I bought 1 GB PC4200 533 MHZ DDR2 SODIMM memory module for my Toshiba Satellite L30 - 10v (PSL33E) to make it 2 GB. After you have added the 1 GB modules Satellite L30 wouldn't start. With only 1 GB, that it starts ok, with the other 1 GB origianal only boots ok. (The two modules are ZCE6 430 - K4T1G163QB Samsung 1 GB PC4200 533 MHZ DDR2)

    The two modules of 1 GB boot not together. I noticed that many others have had this problem. (please see
    This [t-22984]. post)
    On this forum, someone bought the CT12864AC53E memory module which works, however I can't find this on the site of Crucial.
    I've heard other purchase the sticks of memory CT572238 and CT572234 and have the same problems.

    Memory Advisor says determinative buy the CT572234 memory sticks.

    I have also updated the bios to V3.10, still does not start with the two modules.

    I'm ready to buy 2 new modules, but what 2x1GB memory works?
    Any help would be greatly appreciated...

    Post edited by: quigs1969

    > 1 GB strips boot not together. I noticed that many others have had this problem.

    For me it s case;
    The two modules don't work together
    Seems the modules are not compatible there is only one solution. Replacement of RAM!

    Try other RAM modules.
    I bought a few modules from Kingston and made good experience

  • delete records that are related to another table

    I want to delete records from a table (A), these recordings has a relationship with another table (B)

    using a query to set these records is that I want to delete

    with B as
    (
    f select '2', '3' l double
    Union of all the
    f select '2', '3' l double
    Union of all the
    f select '4', '4' l double
    )


    Select * from A, B
    where B.f() > 3 and b. > 3
    and A.f. = B.f()
    and A.l = b.

    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production


    Thanks in advance!

    Hello

    Here's one way:

    DELETE     a
    WHERE     f     > 3
    AND     l     > 3
    AND     (f, l)     IN (
                   SELECT  f, l
                   FROM     b
                     )
    ;
    
  • Impossible to perform a search using a VO after adding a line in OT

    HI guys,.

    I am new to OAF and need your help to solve the current problem that I face.

    We still use JDeveloper 9i (9.0.3.5) and the construction of a custom page for the establishment of a trust hierarchy.

    Background:

    Page has 2 fields of research in region 1, name and organization with of the LOV attached to it. At the same time a region has button to search and clear.

    Below, another region is present which shows the data retrieved via above criteria of search as a table and we also gave a button to add a new line (say add new line).

    We have defined an EO and later a VO based on the same, which is used for this page (from the base of single table).

    Problem:

    When I open a page and search (providing criteria search or search criteria) it returns the correct results. Once I click on the button Add NEW RANK I am able to add a line, and I check back-end. Problem starts after that, I can't make a research post that he keeps on his return / showing same result set that was present on the page after adding a line. I also found that the parameters set by setWhereClauseParam are correct in adding debugging instructions. But once the vo.executeQuery () executed and number of lines returned by vo.getFetchedRowCount is the same as the lines already present on the page (after adding a new line/operation). I've tried passing NULL values to setWhereClauseParam after you perform a commit on the assumption that the VO is not resetting correctly but it did not help.

    Any suggestion for me, experts?

    Code:

    Example of code written for the search button, click,

    public void Manualsearch (pageContext OAPageContext)

    {

    String S2 = pageContext.getParameter ("OrganizationCode");

    String S3 = pageContext.getParameter ("Employee");

    System.out.println ("test2" + S2);         System.out.println ("test3" + S3);

    OAViewObject vo = (OAViewObject) getFrBlogApproversVO1 ();

    If (S3! = null & &!) S3. Equals(""))

    {System.out.println ("employee" + S3);

    vo.setWhereClauseParam(0,S3);

    }

    on the other

    {vo.setWhereClauseParam(0,null);  }

    If (S2! = null & &!) S2. Equals(""))

    {System.out.println ("Org" + S2);

    vo.setWhereClauseParam(1,S2);

    }

    else {vo.setWhereClauseParam(1,null);  }

    vo.executeQuery ();

    If (VO.getFetchedRowCount () == 0)

    {System.out.println ("no line") ;}}

    else {System.out.println ("Rows") ;}

    }

    Example of code written for the click on the button Add NEW RANK.

    Public Sub frCreateRow()

    {OAViewObject vo1 = (OAViewObject) getFrBlogApproversVO1 ();}

    If (VO1.getFetchedRowCount () == 0)

    {vo1.setMaxFetchSize (0);}

    Line r = vo1.createRow ();

    VO1. InsertRow (r);

    r.setNewRowState (Row.STATUS_INITIALIZED);

    VO1. Last();

    }

    on the other

    {vo1.last ();

    VO1.setMaxFetchSize (0);

    Line r = vo1.createRow ();

    VO1. InsertRow (r);

    r.setNewRowState (Row.STATUS_INITIALIZED);

    }

    }

    Example of code written to record the click of a button,

    public void save (pageContext OAPageContext)

    {getTransaction () .commit ();}

    throw new OAException ("Lines recorded with success.", OAException.CONFIRMATION);

    }

    Thank you and best regards,

    Mihir Nahar

    I think I found the answer,

    Reason for this behavior of VO is due to below statement highlighted. I just commented the same and it behaves perfectly.

    Hope this helps others in the future.

    Public Sub frCreateRow()

    {OAViewObject vo1 = (OAViewObject) getFrBlogApproversVO1 ();}

    If (VO1.getFetchedRowCount () == 0)

    {vo1.setMaxFetchSize (0);}

    Line r = vo1.createRow ();

    VO1. InsertRow (r);

    r.setNewRowState (Row.STATUS_INITIALIZED);

    VO1. Last();

    }

    on the other

    {vo1.last ();

    VO1.setMaxFetchSize (0);

    Line r = vo1.createRow ();

    VO1. InsertRow (r);

    r.setNewRowState (Row.STATUS_INITIALIZED);

    }

    }

  • The default value based on the field from another table to a custom object

    I'm trying to set the default value to a field in the custom object to the value of a field of account. I tried the syntax 50 ways different and just don't get the case. The label for the account field displays the form of s/n, the integration of the tag is ltDBA_ACCT and it appears in the fx reports area as Account.Text_22.

    The field of custom object that I am triying update is also called s/n, which was originally the required field 'NAME '. The name of the table, account, should it be included? Do I need a function to the field?

    I've updated the external ID using the line with syntex < ID > ID (at least higher ID) so I know that it is possible to define a default value, but s / < n >, < ltDBA_ACCT >, 'account '. "" S/n "and so on are simply not working.

    If anyone knows how to get into what I would be really grateful for the help.

    OK, so if you default a field to the value of another object, you must use the JoinFieldValue function. I think you understand that, based on your original post, but I want to be sure you do.

    Then this won't work by default if the folder is created from the object that you want to join the because a default works in record creation and the ID must be available so that it works correctly. It will not work if you choose the record of the related object after that registration of the custom object is created. You can set the default after, but that does not meet your requirements.

    The syntax of the default are the following: JoinFieldValue (ref_record_type, foreign_key, field_name).

    In your case, ref_record_type is '', foreign_key is [] and field_name is ''. The best way is to determine what is the name of the field to create a new workflow for the account and use the Workflow Rule Condition expression builder to choose your field ("DBA") in the list. The value returned by the expression builder must be placed in the field_name variable in the function JoinFieldValue (minus the parentheses and quotes).

    Give it a shot and let me know how you do.
    Thom

  • LaserJet2300dn: "disk not initialized" on HP4240N after adding RAM

    Hello

    After adding RAM 48 MB on my HP2300DN, on the control panel appear 'uninitialized disk '.  I tried to do a cold reset and replace DIMM Slot2 and Slot3, but without success.  Any help would be really appreciated.

    Specifications:

    Printer: HP LaserJet 2300DN

    1 DIMM Slot:

    Side 1: 8 MB Flash

    Side 02:48 MB of SDRAM

    DIMM location 2:

    Side 1: 1 MB of ROM memory

    Side 2: empty

    DIMM location 3:

    Side 1: 8 MB Flash

    Side 02:48 MB of SDRAM

    EIO 1: HP JetDirect J4169A

    RAM DISK storage: 45Mo

    FLASH storage capacity: 3 MB capacity

    Total memory 96 MB

    Hard drive: No.

    Model number: Q2475A

    Dmitry

    You probably confuse the printer. You seem to be using 2 DIMMS that are 48Mo and each also 8 mb flash. These chips contain the firmware in the flash section and the memory in the other. Since you're probably using a chip LJ2300 another dimm, you confuse the printer with 2 firmwares. You must use a barrette of memory 32, 64 or 128 in the 3rd slot. Only 1 chip 8/48 MB can be used in this printer.

  • UPDATE to update trigger another table

    I am trying to write a trigger to the table (AFTER UPDATE) in which I want to update the same table in a different pattern. Notice that both tables has no unique or primary key constraint, so I am forced to compare the values in the column all the to the place where the condition.

    Update OTHERSCHEMA. T1

    the value =:NEW.c1 c1, c2 is:NEW.c2...

    where c1 =:OLD.c1

    AND c2 =:OLD.c2

    Problem is when a column is null, it would seem that it is not comparable. I even tried

    Update OTHERSCHEMA. T1

    the value =:NEW.c1 c1, c2 is:NEW.c2...

    where NVL (c1, NULL) = NVL (:OLD.c1, NULL)

    AND NVL (c2, NULL = NVL (:OLD.c2, NULL)

    Nothing helps. Can someone help me to write the correct statement?

    Hello

    eyap wrote:

    I am trying to write a trigger to the table (AFTER UPDATE) in which I want to update the same table in a different pattern. Notice that both tables has no unique or primary key constraint, so I am forced to compare the values in the column all the to the place where the condition.

    Update OTHERSCHEMA. T1

    the value =:NEW.c1 c1, c2 is:NEW.c2...

    where c1 =:OLD.c1

    AND c2 =:OLD.c2

    Problem is when a column is null, it would seem that it is not comparable. I even tried

    Update OTHERSCHEMA. T1

    the value =:NEW.c1 c1, c2 is:NEW.c2...

    where NVL (c1, NULL) = NVL (:OLD.c1, NULL)

    AND NVL (c2, NULL = NVL (:OLD.c2, NULL)

    Nothing helps.

    Naturally.  NVL (x, NULL) is always x, no matter what x is.

    Can someone help me to write the correct statement?

    x = is returns TRUE if (and only if) x and have the same value, and it returns FALSE if (and only if) x and have 2 different values.

    NULL is not a value; in fact, it's quite the opposite.  NULL means that there is no value.  If x or is NULL, then x = y returns UNKNOWN.

    DECODE allows to compare values or NULL values, so you can do something like

    Update OTHERSCHEMA. T1

    the value of c1 =: NEW.c1

    , c2 =: NEW.c2

    ,       ...

    where LESS (DECODE (c1,:OLD.c1, 1, 0)

    , DECODE (c2,:OLD.c2, 1, 0)

    )

    ;

    If you would care to a full test script so that I can reproduce the problem, then I could test this.

    Triggers often indicate a bad table design.  Why do you need to replicate the data in another table?

    As you do, why not add a primary key?

  • Drag N Drop table lines do not move a table to another Table

    Hello

    I use 11.1.7 to develop the drag N drop rows in one table to another

    1. I create a table in the schema hr as a student (sName, brands, sId, grade) & inserting values.

    2. I create EO & three your based on Student table... only three your from wise rank as (GroupAVO, GroupBVO, GroupCVO)

    3. I create page & panelgridLayout (3 columns, 1 row), I drop these three instances of VO tabular...

    4 drag the component Source and Drop target in these 3 tables...

    Run the page... page contains perfectly with the wise group of 3 tables...

    but when I drag a line a table to another table, lines do not move...

    I check my DB too... changes there too...

    No error and exceptions in my journal...

    What is the problem? Can someone help me?

    See also - Ashish Awasthi (Jdev/ADF) Blog: adding Drag and Drop functionality for collections in the fragments of the page to create insert

    Thank you

  • Cannot add another Table of Interface

    Hi all

    Recently, we had to restructure our e planning application to create another application.

    After creating my planning application, we now want to configure a data source in EPM System Configurator to add another table of Interface.

    After searching for some subjects like:

    - http://John-Goodwin.blogspot.PT/2011/10/loading-to-EPMA-planning-applications_8223.html or

    - http://docs.Oracle.com/CD/E12825_01/EPM.111/epm_architect/frameset.htm?ch03s02s01.html

    We cannot option Foundation-> Performance Management architect-> Interface of Configuration of data source that you can not see the next image.

    We have no Integrator ODI.

    Is it possible to add our table of interface in another way?

    Untitled.png

    11.1.2.2 it is set from the workspace - Configuration of Interface Data Sources

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • trigger for insertion of a table to another table

    Hello again,

    I tried to write a trigger after insert or update will happen in table 1, it will move some values in another table, as shown below:

    Create or replace trigger Insert_Amount_Credit after insert or update on Reciept_Voucher

    Referencing NEW AS NEW OLD OLD FOR EACH LINE AS
    Start

    Insert into customer_Details (Transaction_Date, client_name, Description, credit) values (new. Rec_Date, new. Client_name, CONCAT (' receipt number:', again.) Rec_ID), new. Amount);

    End;

    /

    The trigger was created but with compilation error... and my question is:

    1. How do I write the code above in the best way?

    2. How can I enough the other table with a table concatenated as what I was trying to make above?

    any idea?

    Something like that?

    CREATE OR REPLACE TRIGGER trig_ins_testtrg2

    BEFORE INSERT OR UPDATE ON test_trg1

    FOR EACH LINE

    BEGIN

    INSERT INTO test_trg2 (curr_date,

    job_id,

    reason,

    credit)

    VALUES (SYSDATE,

    : NEW.id,.

    : NEW.receipt_no |:NEW.description,.

    (: NEW.amount);

    END;

  • I get an error message after importing a table through Dreamweaver in a page developed by Muse.

    I get a few messages after importing a table through Dreamweaver in a page developed by Muse. I compared the code of the page with the table on page until I inserted table and cannot find anything missing. the web address is http://gourmetdreams.com/weekly-menu.html

    How can I erase this upward?

    I also noticed that when I downloaded the file there was a mistake: "- error - access denied."  The file exists may not be not on-site, can be opened in another program, or there might be a problem of local authorization. »

    Screen Shot 2014-10-30 at 1.53.15 PM.pngScreen Shot 2014-10-31 at 4.39.09 PM.png

    I'm working on a project were I am importing to Dreamweaver html code. I just do all of my changes in Dreamweaver and then re-import the file.

    You can make changes in the file inside Muse. Just right click on your imported html file and select "edit HTML" in the menu list.

    It will bring to the top of the dialog box where you can change the text/code

  • vSphere is reporting that the iSCSI disk is empty after adding it

    First, when, after boot iSCSI service on Win7, then vSphere host, the iSCSI (form VMFS) drive often may not appear on the storage. After adding it, it's Ok.

    But yesterday, he deleted an NTFS partition on the physical disk where the image iSCSI file is on another partition NTFS, which totally has 3 primary partitions before, today, after you add the iSCSI drive, vSphere displays an error message:

    Configuring the host error: could not get disk partition information

    After clicking the Ok button, he said: the disc is empty.

    In my view, the virtual disk partition (image file) would not be affected by any change in the physical disk partition. I can't lose my data on this drive. How can I solve this problem?

    Thank you!

    George

    It is a good guide: http://www.vladan.fr/mounting-your-vmdk-disks-directly-to-your-windows-box-how-to/

  • Inserting data from one table to another table

    Hello

    I have the following SQL where I am updating a table by adding new data from another table, but without success.

    INSERT INTO
    () TOP_PROSPECTS
    COMMON_ID
    DATE_ADDED
    REVIEW_RANK
    EVAL_DATE
    PM_ASSIGN
    WHY_NOTES)
    SELECT
    t.COMMON_ID
    t.DATE_ADDED
    t.REVIEW_RANK
    t.EVAL_DATE
    t.PM_ASSIGN
    t.WHY_NOTES
    Of
    TEMP_IVAN_MARY t
    WHERE
    COMMON_ID <>t.COMMON_ID

    Any suggestions?

    Thank you.

    Published by: user13822709 on August 14, 2012 09:14

    Published by: user13822709 on August 14, 2012 09:15

    Is that what you're trying to do with the insert. I think there may be a sign {noformat}<{noformat}{noformat}>{noformat} missing in the where clause. This site eat those, so you need to use the equivalent! = post here.

    If I'm wrong about the missing trader, then it looks like you want to insert rows in temp_ivan_mary that are not already in top_prospects. If Yes, then you need something like:

    insert into top_prospects
       (common_id, date_added, review_rank, eval_date, pm_assign,
        why_notes)
    select t.common_id, t.date_added, t.review_rank, t.eval_date,
           t.pm_assign, t.why_notes
    from temp_ivan_mary t
    where t.common_id not in (select common_id from top_prospects
                              where common_id is not null)
    

    Function index and data available volumnes etc. then a mergr can be more effective. Something like:

    merge into top_prospects p
       using (select common_id, date_added, review_rank, eval_date,
                     pm_assign, why_notes
              from temp_ivan_mary) t
       on (p.common_id = t.common_id)
       when not matched then
          insert (common_id, date_added, review_rank, eval_date, pm_assign,
                  why_notes)
          values (t.common_id, t.date_added, t.review_rank, t.eval_date,
                  t.pm_assign, t.why_notes)
    from temp_ivan_mary t
    

    John

  • message tapped after release of tables that merge + bad notes

    Hello
    I'm using Oracle SQL Developer Data Modeler 3.1 Early Adopter.

    1.
    in a relational model after using the Merge Tables (with FK) in second (and following) dialog box is displayed the message:
    "You sure you want to delete the generated FK column '{0}' in the table"{1} '?"
    < a href = "http://imageshack.us/photo/my-images/821/clipboard01ff.png/" > < / a >

    I think that there should be the name of table/column instead of '{0}' / '{1} '.

    2.
    in the Release Notes page, displayed by Help - menu - release notes this is the first text line: Oracle SQL Developer Data Modeling 3.0.0 (665)

    Thank you

    Hello

    Thank you for pointing out these problems.

    We have already solved the problem with FK message delete a column, so it should be fine in the next version.

    I connected an incorrect bug on the release notes posted.

    David

Maybe you are looking for