Table changed

Hi gurus,

I need to know how to check when the defination of table has changed. Someone has disabled a constraint and I need to know when it has been changed.

I'm using oracle 11.2.0.3

Thank you

DBApps

The change is to the constraint, not at the table. So:

Select last_change in the dba_constraints where owner = '... "and constraint_name = «...» » ;

--

John Watson

Oracle Certified Master s/n

http://skillbuilders.com

Tags: Database

Similar Questions

  • How to add data to the table changed in sql developer at Apex and vice versa

    Hello

    I had tables of database with sql developer. But now, I have modified the database (new tables added + changed the data in the tables). However, in the Apex, I the old database. Is it possible to get the new Apex database with the data of the table changed so this database in both places (sql and apex developer) is exactly the same... Also the other way around.

    Thank you

    The database schema that contains the tables, is it associated with the workspace even you are searching through the APEX product t development?  Why I'm asking is, if they are the same schema, the tables that you MODIFIED should be appear in the sql for APEX workshop part.  Now reports and forms will NOT see the changes (unless you have actually added or updated definitions for column).

    Can you explain what exactly you were doing the SQL Developer to the tables in your schema?

    Thank you

    Tony Miller
    Los Alamos, NM

  • ALTER table add constraint vs alter table change

    Hello

    could someone explain why we have two different statements when you add a constraint on an existing table?

    If I need to add a primary key constraint to a column from an existing table that I use:

    ALTER table tab1 add the key primary constraint tab1_id_cst (id)

    But if I want to add a NOT NULL constraint, the same syntax does not work, I need to use alter table change instead

    Why?

    Thank you!

    Hello

    The constraint not null is a constraint inline, average, it applies to the column level. So in order to change anything at the column level you must use "ALTER TABLE CHANGE" only.

    Remaining constraint is forced to outline, which are part of the table definition. The table definition can be modified by "ALTER TABLE... ADD '.

    In the framework of the above mentioned constraints, those are the two columns level constraints and table except constraint NOT NULL value. Change column level, you must use the syntax

    and for the level of the table, you need to use the respective syntax.

    Kind regards

    Bigot

  • How insert/DML data in the table when the data in the related table changes

    Hello guys!

    I came across a problem that I need to get fixed. Because I don't know how to start and get it resolved I wanted to ask you for your expertise.

    The scenario is as follows:

    I have a table 'a' in my 10g database and a view "ab" which combined table 'a' with 'b' table in a view. However, the 'b' table is a table in another schema Manager database. and accessible (read only right) via a database link.

    Now here it is: whenever the data changes in table "b", for example 2 new sets of data is inserted, I need to insert automatically the 2 values of these 2 sets of data in my table "a". Same procedure for update and delete in table "b".

    The action that inserts data into the table 'a' must be initialized in my database, I have limited access to the other. Can I somehow use a trigger my reviews of "ab" to insert data into the table "a"? Or is it possible to use the "change notification procedure database" using the view as the reference?

    Desperately need help and example of all suspicion/code greatly appreciated. I am very new to Oracle and not very fond of PL/SQL routines. So please be so kind as to give me more details.

    Thanks in advance - I hope you have any ideas how I can get this problem resolved.

    Sebastian

    >

    ... it does not, since the DDL operations are not permitted on the remote databases (ORA-02021). I can't create the trigger on a view either. :-(
    So what ways are left to insert data into the table 'a' when the related table changes?

    Please, help if you have an idea!

    Yes,
    You can't perform the DDL (create the trigger...) on remote databases as you can see...
    Try to create this trigger in the local database that will make DML (insert into...) on the remote database.

        CREATE OR REPLACE TRIGGER local_forward_pt_after_insert
         AFTER INSERT
             ON N2K_INV_PT
             FOR EACH ROW
    
         BEGIN
             -- Insert records into table "a"
             INSERT INTO TBL_PUNKTDATEN@remote_database_sid
              ( INT_NUMMER,
                STR_GEBIET
                 )
             VALUES
              ( :new.INT_INV_PT_NR,
                :new.GEBIET );
         END;
    

    Thank you

    Good luck

  • Front table, changing size on another computer.

    I have a strange question here. I use indicators table on a front to transmit information to an operator. Everything is the same size and aligned on my system, but when I take it to another system some of the paintings change size. See photos. I tried to adjust the height of the indicator using a property node, but I can't write. All tables use the same font and size. Any help would be appreciated. Thank you.

    Hi guys,.

    set the police exactly the same for all the tables and tags. I usually use Tahoma 13 (instead of generic "Application font").

    Then set this font in the app INI file using the keys of FONTS:

    FPFont="Tahoma" 13
    BDFont="Tahoma" 13
    appFont="Tahoma" 13
    dialogFont="Tahoma" 13
    systemFont="Tahoma" 13
    
  • ADF table change the value of a column rest after executeQuery

    Referring to the instance, which is to correct the cause and especially implemented to solve this problem-

    Re: Table ADF with iterator without cache not updated; bug or feature?

    I'll have a search form and the basis of the table of results based on entity vo. The table of results is in mode editall. If I change the value in the inputtext for a line and I click on search again, I expect the value modified to reset. The text component is not autosubmit.

    If I put resetactionlistener in the search button, it works, but it resets then some other components which I don't want.  This makes me think under analysis is tris -.

    'But chooses to render using the value sent instead of the value of the database '.

    What is the correct implementation to handle this?

    Stamped UI components (such as af:table) have resetStampState() method.

    Then you can try something like:

    table.resetStampState ();

    AdfFacesContext.getCurrentInstance () .addPartialTarget (table);

    Dario

  • AF:table - change disabled property of input text according to the value of the attribute line

    Hello

    I use Jdev 12.1.2.

    I have a table with the number of lines.  Each line has a FutureCode attribute and other attribute FutureComments.  I want to make sure FutureComments is disabled unless the FutureCode of this line is is 'OTHER '.

    I tried to go to the text of the FutureComments component in the table and setting the property to the expression for disabled:

    #{row.bindings.FutureCode.inputValue == 'OTHER'? false: true}

    But it does not work.  I messed around with the parameters in the table (distribution of content, immediate change), but I did not get a configuration so that it can work.

    A little more information, the text input component are always disabled.  I also tried using the expression evaluator in the debugger to check the value of my #{row.bindings.FutureCode.inputValue}, but it is null, no doubt because he does not know what line I'm talking about.

    Any idea on this?  Thank you.

    Hello

    There the lov on future code?

    will not have operator you used? Try

    #{row.bindings.FutureCode.inputValue! = 'OTHER'}

    If this does not work

    Try

    #{row.bindings.FutureCode. attributeValue ! = 'OTHER'}


    Thank you

  • Perform an advanced iteration Table, change Bean attributes line-by-line

    EBS 12.0.4

    DB 11g

    Hi all

    I need help, to try something more:

    I want to browse an advanced array.

    While doing this, based on a condition in the PageContext level and a condition on the attribute see the level I want to change the property of MessageStyledText made of the Table in advance.

    Tried of the follwing Code, but it effects the entire column every time. How to put the bean "Renditions" of property (or other property) rank-by-rank based on the particular situation of each line? :

           VOImpl myVO = am.getmyVO();
           int fetchedRowCount = myVO.getFetchedRowCount();   
           RowSetIterator myIter = myVO.createRowSetIterator("Link");
           
           if (fetchedRowCount > 0 ){
             myIter.setRangeStart(0);   
             myIter.setRangeSize(fetchedRowCount);         
             
             for (int i = 0; i < fetchedRowCount; i++)   {   
              
               myVORowImpl row = (myVORowImpl)myIter.getRowAtRangeIndex(i);   
               OAMessageStyledTextBean oBean = (OAMessageStyledTextBean)webBean.findIndexedChildRecursive("myMessageStyledTextinAdvancedTable");  
             
               if (row.getColumn1().equals("Cond1")){
                 oBean.setRendered(false);   
               }else if (row.getColumn1().equals("Con2") && pageContext.getParameter("anything") == "1" ){
                   oBean.setRendered(true);  
               }else if (row.getColumn1().equals("Con2") && pageContext.getParameter("anything") == "2" ){
                   oBean.setRendered(false);  
               } else
                   oBean.setRendered(false);
             }
           }  
    

    Thank you for advice!

    Thanks for the suggestion.

    In the end, I solved it as follows:

    1. I placed a transitional column in the VO

    2. in the line of sight Impl, did the calculation of the value

    3. in the controller being used following code:

    The value of the value of line of sight objekt of demarcation to the value of column in table advanced bean. (Via OADataBoundValueViewObject)
    With setAttribute using oracle.cabo.ui.UIConstants, we can define a set of properties. Here you can see setting the Destination URI

    Table OAAdvancedTableBean = (OAAdvancedTableBean) webBean.findIndexedChildRecursive ("myTable");

    OAMessageStyledTextBean bTableCol = (OAMessageStyledTextBean) table.findIndexedChildRecursive ("AdvTableColumn");

    OADataBoundValueViewObject attr_key = new OADataBoundValueViewObject (bTableCol, "VOColumn");

    bTableCol.setAttributeValue (oracle.cabo.ui.UIConstants.DESTINATION_ATTR, attr_key);

    Thank you!

  • Synchronize the table changes

    Hello

    OWB 11 g R2, oracle DB 11 g

    For some reason... I changed my table at the DB level definitions, added a few columns and load the data using some scripts in this table. I have this table in OWB (old version without these additional columns), is any way to synchronize table of DB to OWB definitions? or I have to redo all changes in OWB? If I deploy by changing the table in OWB manually and then deploy, I guess that it does not allow to upgrade, but if I do not replace, there is a risk of losing data.

    Is it possible to do that without losing data?


    Thank you
    HESH

    Hi Hesh,

    Yes, this applies if you have created the table through OWB or DB, if you have made changes to the DB level table you can reimport the table on OWB and synchronize, you must modify the object in OWB manually, it is a tedious process if the changes are enormous.

    Thank you and best regards,
    Pnreddy

  • table changes not recorded

    Select table_name, followed by dba_tables where table_name = 'ABC ';

    TABLE_NAME LUN
    ------------------------------ ---
    ABC YES


    There is no record in dba_tab_modifications for this table, but for the other tables there. There are many inserts on this table.

    Is there something I m missing? the table contains a clob column. This could be the cause?

    Kind regards

    Peter

    These views are filled only for tables with the attribute of SURVEILLANCE. They are intended for the collection of statistics over a long period of time. For performance reasons, the Oracle database does not fill these views immediately during the actual changes. Run the FLUSH_DATABASE_MONITORING_INFO procedure in the DIMS_STATS PL/SQL package to fill these views with the latest information. The ANALYZE_ANY system privilege is required to perform this procedure.

    at the bottom of the doc
    http://docs.Oracle.com/CD/B19306_01/server.102/b14237/statviews_2097.htm

  • Differentiate the tables changes and no changes do not

    Hello

    I am relatively new on (I've always been a sort of paper/felt for Whiteboard guy) formal data modeling tools.

    On my question/Scenario:

    I have a warehouse of data with a few hundred tables inside. When changes are made to the data warehouse, we're supposed to present an ER diagram preferably with tables in one color, tables be changed to a different color and the tables does not change does not to another more neutral color.

    Here is my current process

    (1) import of relevant existing tables in the data dictionary
    (2) create tables or change existing tables
    (3) change the type of array for the modified tables and dimension for new tables. The existing tables, I leave it as what.

    Success with this process generates a diagram that fits my purposes, but I have a hunch that I'm not using better methodology. What is a better way to do this using the oracle sql data model (version 3)

    What you certainly works, but a better approach would be to define new types of classification rather than use the Dimension or fact.

    Then go here:
    Tools-> preferences-> data-> diagram maker-> Types of Classification.

    Press the Green plus sign to add a new type.
    Add two new types: new and changed and assign each a unique color.
    Press 'OK' to save.

    Now, when you go back to the diagram, you will have two new types from.

  • tables changed in R12

    Hi all
    Please can anyone guide me where to find all the tables that have been changed by 11.5.7 version R12

    for example.

    table of gl_set_of_books has been chnged to gl_ledgers like wise, I want to know all the tables that have been changed in R12.


    Thanks in advance

    Hello

    See the following documents.

    Note: 404152.1 - E-Business Suite Release 12: release the contents of Documents
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=404152.1

    Note: 561580.1 - E-Business Suite Release 12.1.1: release the contents of Documents
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=561580.1

    Kind regards
    Hussein

  • IOM - how migrate you USR table changes?

    If I made a change in the user attributes to IOM (11g 11.1.1.5.0) and you want to migrate this change to dev, qa, prod. What is the best way to solve this problem?

    You do:

    -Import the metadata User.xml file
    -Import the file metadata user deployment manager
    -the two
    -either, maybe make the same change manually instead?

    Thank you, Ewan

    If you all use two Manager deployment as second option. First use Users.xml. Check. If it does not work, use the deployment so Manager to import the exported metadata.

    Kind regards
    GP

  • Table table changes to the procedure

    I have defined an object Type and an array Type, use it in the package as a parameter and use it in a FORALL statement. It compiles, but I can't really pass the data to the procedure.
    CREATE OR REPLACE TYPE TYPE_RD AS OBJECT   
         (rd_id     INTEGER,
          child_id  INTEGER,
          start_date DATE,
          end_date  DATE);
    /
    
    CREATE OR REPLACE TYPE TABLE_RD AS TABLE OF TYPE_RD;   
    /
    
    PROCEDURE save_rd_test
       (  p_rec_data    TABLE_RD ) IS
    BEGIN
         forall i in 1 .. p_rec_data.count
          -- the insert statement here
    EXCEPTION
       WHEN OTHERS THEN
      -- log the error
    END;
    /
    I tried to call the procedure as follows:
    exec save_rd_test(p_rec_data=>TABLE_RD((1000,100,to_date('01/01/2010','mm/dd/yyyy'),to_date('12/31/2010','mm/dd/yyyy')) ) )
    
    PLS-00306: wrong number or types of arguments in call to 'TABLE_RD'
    What I'm trying to actually possible, and if so what am I doing wrong?

    Maybe this?

    exec save_rd_test(p_rec_data=>TABLE_RD(TYPE_RD(1000,100,to_date('01/01/2010','mm/dd/yyyy'),to_date('12/31/2010','mm/dd/yyyy')) ) )
    
  • Synchronize the database of ODI table changes

    Hi all

    which is the best approach to synchronize the changes of database in ODI.

    Is it possible to automate?

    For example, if we have a store of data such as target and some types of data are changes in the database, the re - reverse will not apply these changes...

    Thank you

    Hello

    Try this...

    http://oracledwbi.WordPress.com/2010/03/12/synchronising-ODI-datastore-with-database-changes/

    Kind regards
    Its

Maybe you are looking for