Synchronize table changes from Database to ODI

HI all,
which is the best approach to synchronize database changes into ODI.
Is there any way of automate it?
FOr instance, if we have a datastore as target and some data types are changes in the database, re-reverse will not apply these changes ...
Thanks

Hi ,
Try this ...
http://oracledwbi.wordpress.com/2010/03/12/synchronising-odi-datastore-with-database-changes/
Regards,
Rathish

Similar Messages

  • Table changes in database are not captured in ODI model level

    Hi All,
    Can any one help me how to fix the bug in ODI.
    Table changes in database are not captured in ODI model level.
    Thanks in advance

    I created the interface which is running successfully.
    Now i did some changes in target table(data base level).
    I reversed the updated table in model section. Till here its ok
    The table which is updated in the model section is not automatically updated in the interface.
    I have to drop the existed datastore in the interface and and re do the entire process of bringing the updated datastore, mapping,etc..
    Please tell the any alternate way.
    Regards
    suresh

  • Bank Key field change from database table

    Dear All,
    At our client, 4 house banks are maintained. The bank keys entered for these are not BSR Codes but something like 100,200,300,400.
    This is not correct as we need to maintain BSR Code in Bank Key field as it is required on Form 16 A (TDS Cetificate)
    The Bank Key field is in display mode. I am thinking of changing wrong value from database table T012 & BNKA .
    Has anybody done this before? Will it affect my past or future transactions?
    Thanks & regards,
    Gov

    Dear Gulshan,
    What you are saying is correct & I subscribe to your view also.
    Creation of House Bank all over again seems to be one of the better options.
    We tried doing one more thing & which is working fine on Development.
    Our primary requiremnt is to have BSR Code on the From 16 A. System picks up the Bank key for this.
    We copied the standard Form 16A & created a Z. Then abaper created a subroutine. It is like when Bank key 100 comes to Form16A, replace it with say 0098500 (Correct BSR Code of the Bank)
    This helped to get the correct BSR Code in Form 16A & saved us from recreation of House Bank data.
    Your comments are welcome.
    Regards,
    Gov

  • Synchronize table changes

    Hi,
    OWB 11g R2, oracle DB 11g
    For some reasons.... I have changed my table definitions in the DB level, added few columns and loaded the data using some scripts into this table. I have this table in OWB (old version without these extra columns), is there anyway to synchronize the table definitions from DB to OWB? or I have to do all the changes in OWB again? If I deploy by changing the table in OWB manually then deploy, I guess it does not allow to upgrade, but if I do replace, there is a risk of loosing the data.
    Is there any way to do this without loosing the data?
    Thanks
    Hesh

    Hi Hesh,
    Yes, this is applicable whether you have created the table through OWB or DB, if you have made the changes for the table at DB level you can reimport the table into OWB and synchronize, Otherwise you need modify the object in OWB manually which will be a cumbersome process if the changes are huge.
    Thanks and Regards,
    Pnreddy

  • How get all table name from database

    hi master
    sir
    how get all table name from database

    The big question is 'why'.
    Selecting from view 'dba_tables' will indeed give the list of all tables in the database, but that includes the dictionary tables and the internal tables, and many others that are probably not of interet to a person who needs to ask this question. Besides, the dba_tables view requires access to a DBA account.
    There are several other views: "user_tables" will list all the tables in this user's schema; and "all_tables" will list all the tables this user can access in some way.
    The above do not, of course, include any information about synonyms, sequences, views, indexes and so on.
    The correct answer and the meaningful answer may be two different things.

  • Data format changing from database to datagridview

    hi I am trying to display data from database sqlite  to datagridview the data format changed automatically
    the date in database is
    2012-02-20 16:42:10.00 but on datagrid view it appears like  20/02/2012 16:42:10,
    swOut.Write(",");
    swOut.Write(dataGridView1.Columns[i].HeaderText);
    swOut.WriteLine();
    //write DataGridView rows to csv
    for (int j = 0; j <= dataGridView1.Rows.Count - 1; j++)
    if (j > 0)
    swOut.WriteLine();
    dr = dataGridView1.Rows[j];
    for (int i = 0; i <= dataGridView1.Columns.Count - 1; i++)
    if (i > 0)
    swOut.Write(",");
    value = dr.Cells[i].Value.ToString();
    //replace comma's with spaces
    value = value.Replace(',', ' ');
    //replace embedded newlines with spaces
    value = value.Replace(Environment.NewLine, " ");
    swOut.Write(value);

    This forum is for Microsoft products, they have already and endless quantity of databases, many even freeware. 
    Try therefore for your question the forums for SQLite.
    SQLite has very special own way of datatypes.
    Success
    Cor

  • Keep GUI, change from database-call to web-services-call. Possible??

    Hi.
    I have an APEX-application with several pages. Every page have code for getting/inserting data from/to an Oracle database, using PL/SQL.
    We now want to look at the possibilities of keeping the userinterface (GUI) of the pages, but change the underlaying code to call web-services to retrieve data/insert data, instead of calling the database directly (so the users won't see any changes).
    So here is my questions:
    - Is this possible?
    - Is this quite "straight forward" ?
    Hope anyone can help me out on this issue :-)
    P.S. The APEX-version is 3.0 or 3.1 (not the newest one)
    Best regards
    Sverre, Norway

    Hi Sverre,
    I have the same task. What did you finally decide, to keep the Apex UI and migrate from database to web-services or to develop a new UI?
    If you chose to keep Apex, do you have any progress in migration?
    Thanks,
    Anton.

  • Access table directly from database in BO 4.0 WebI Report without using Universe

    Can i use the table avilable in database directly to make BO 4.0 WebI Report without create any universe. 
    I realy appeiciate your help.
    Thank you in advance.

    You need to create a universe for Relational SQL databases. Universe is a must. The reason you create universe is for the end users. WebI is designed for end users to create their own reports. It is a self service reporting tool. In order to do that, you need universe which allows users to query database using SQL without knowing SQL language.
    If you don't want to create a universe for reporting then you can use Crystal Reports instead of WebI

  • Dynamic table  selection from database

    Hi ;
    I want to create  variable field that I will use at database selection.I tried to do it with   select *  from ( tabname )..... but I couldn't do it how you any offer fot this issue.

    Hi,
    DATA FCAT1 TYPE LVC_T_FCAT."fieldcat of type internal table
    DATA:DYN_ITAB TYPE REF TO DATA,"holding the dynamic internal table
    WA TYPE REF TO DATA."holding the wa for dynamic internal table
    FIELD-SYMBOLS: <DISP_TABLE> TYPE TABLE,
    <WA> TYPE ANY.
    SELECT SINGLE tab_name FROM table INTO DB_TABLE.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
            EXPORTING
              I_STRUCTURE_NAME = DB_TABLE
            CHANGING
              CT_FIELDCAT      = FCAT1[].
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE"creating dynamic internal table using fieldcat
        EXPORTING
        IT_FIELDCATALOG = FCAT1[]
        IMPORTING
        EP_TABLE = DYN_ITAB.
        ASSIGN DYN_ITAB->* TO <DISP_TABLE>."creating internal table by refering the dynamically generated internal table structure
        CREATE DATA WA LIKE LINE OF <DISP_TABLE>."creating work area for the internal table
        ASSIGN WA->* TO <WA>.
        SELECT * FROM (DB_TABLE) INTO <WA> UP TO MAX_HITS ROWS."filling the internal table
        APPEND <WA> TO <DISP_table>.
        ENDSELECT.
    <b>REWARD ALL HELPFUL ANSWERS.</b>
    rgds,
    bharat.
    Message was edited by:
            Bharat Kalagara

  • Table changes in database.

    Hi,
    I created few Subject Areas. One of the table was modified in the database. They added an additional column to the table and doing some index changes. Do I have to delete the existing table and re-import the modifed table into the rpd and again join the table with other tables as required? What is the most efficient way to do this?

    If its just one extra column, id add it manually in the table properties, check the changes in, do a 'show data' from right click to check everything is OK.
    There is also 'update physical layer' option in the menu items in the Admin tool if there are many.
    I wouldnt delete the table as you will lose the links through to the Logical table sources and any columns mapped, a right pain when thats the only option so try not to !.
    Always a good idea to use Aliases, as you can swap the source table for the alias over to a temp table in this situation and refresh the 'real' table, then swap the alias back, thus keeping all your hard work mapping the BMM intact.
    Hope this helps,
    Rgrds
    Alastair

  • Table Browser does not 'fetch' any tables back from Database.

    Post Author: StevenL
    CA Forum: Semantic Layer and Data Connectivity
    When I click on 'table browser', after waiting overnight (not me, physically..), the list of modules are shown but with no tables in. If I click on a module's contents it says 'Fetching tables' for a split secind before returning nothing. If I do a refresh the modules list goes blank. I have been able to do this until very recently, my Connection, user Account (Supervisor-Designer), BO version (6.5.1, ORACLE Database 10g) etc have all not changed. The problem we have is because there is more than 20 000 tables to return when 'table browser' is clicked and this takes overnight. Other users here with same resp. can all come in next morning to a full list to choose from - except me. We're all confused. Can anyone offer suggestions to what this could be?u201D A trace file setup via sqlnet.ora revealed nothing.
    Has anybody got any suggestions here or methods of finding out more information?
    Many thanks in Advance..
    StevenL

    Post Author: StevenL
    CA Forum: Semantic Layer and Data Connectivity
    Well well. The good old remove and re-install has worked! Can't understand it. After simply getting the product re-installed, I opened up Designer, imported 2 differing Universes that used the LIVE Finance Database that was causing me the problems, clicked on table browser, waited approximately 60 seconds, hit escape, all tables were visible, I dragged and dropped no problem. I didnt need to reconfigure and create new BO Database Connections, replace the BoMain Key, in fact, anything. Totally mystery yet it works so Im happy!" Many thanks for all who read, helped or assisted.
    Steven

  • How to find tables changed from one table authorization group to other.

    Hi Experts,
    We have a issue where certain tables have been moved from one Authorizaiton group to the othe table authorization group.
    We want to find all tables previous authorization group.
    Is there any wayt we could find the old authorization group.
    (for example)
    Consider a scenario where a table agr_1251 was moved to the new auth group ZAUTH.
    I wanted to find which auth group was holding the table agr_1251 previously.
    Can you please help me on this request?
    Thanks.

    One more way is to check TR (Table E070, E071). But you need to find the details for table (Like for role it is R3TR, ACGR).
    Regards,
    Arpan Paik

  • Getting table column header names from database

    Hi,
    We are trying to get table headers from database. So when we query the database it returns multiple rows at the same time. How can we display specific table column headers from the returned result set at respective places.
    We tried using record selection expert but that only works for one selection and not for others.
    How can we do this?

    Thank you Josh and Abhilash for helping us.
    We are using PostgreSql.
    "command_headers" has query which looks like following-
    SELECT id, header  FROM labels
    WHERE id='header.header_1'
    OR id='header.header_2'
    OR id='header.header_3'
    ORDER BY id;
    which will return following result set-
    id                              header
    header.header_1        Header1
    header.header_2        Header2
    header.header_3        Header3
    Our Table structure is something like this-
    Page Header: Header1                        |  Header2                       | Header3                    
    Details:           {command_data.value1} | {command_data.value2} | {command_data.value3}
    command_data is another command which generates data for the table.
    All values in details section coming from command_data is in format string.
    We don't need to apply grouping or sub totals. This is a simple table, showing string values for all columns.
    Preview:
    Header1     |     Header2     |     Header3
    car              |     yello           |     abc
    bike            |     black          |     xyz
    plane          |     white           |     pqr
    Currently, all headers are static labels. How do we use "command_headers" to display all table Headers dynamically? Can we achieve this format using cross tab?

  • Table Changes 11.5.10 to 12.1

    I am looking for technical documentation that tells me the EBS table changes from 11.5.10 to 12.1. Don't tell me I have to read every trm and compare!! Thanks

    Hi again;
    Please also check Hussein Sawwan greatest pervious post about similar topic
    Table Chnages in R12
    Regard
    Helios

  • Table transformation from two different database

    Hi all,
    I am trying to load table from one database table to another database table in ODI 10g.I have created two physical and logical topology.
    But when in interface design i have drag the source and target tables in the diagram window, but here it doesnot shows the auto mapping options, when i try it manually by dragging a field, i have failed. when i execute the operation the following error occured:
    create or replace view db1."C$_0 W_INT_ORG_D"
    as select     
    from     db1.W_INT_ORG_DS W_INT_ORG_DS
    where     (1=1)
    here both the source and target db are same..
    How can i resolve it

    Hi,
    Thanks it worked.
    I am getting another error on Insert flow into I$ table step.
    I am connecting two database from two different hosts, both are in oracle.
    I have two logical schema prepared for both database.
    should i have to mentioned these schema in one physical topology? what should be placed in schema and work schema option.
    I have used LKM Oracle to Oracle(DBLINK) as KM.
    Please help
    Best regards,
    manish

Maybe you are looking for