Tables of ODI Master Rep that stores the details of work rep

Hi all

I want to know the details of all deposits present in an ODI installation. I think the table of the master repository will have the details of the rep of this work under him. Please let me know tables which holds the details of the work.

Thank you

Raja

Hello

The table on the ODI SNP_LOC_REPW describe the details of repositories of work that are used in the Master repository.

Thank you

Tags: Business Intelligence

Similar Questions

  • Table that stores the information of Transport server

    Hi gurus,
    What is the name of table in the b2b database that stores the transport Server details?

    I use Oracle 10g B2B.

    Concerning
    AYUSH

    Hi Mary,

    I do not have a facility of 10g here, but if I'm not mistaken not it is table TIP_TRANSPORTSERVER which holds the transport server details.

    Kind regards
    Anuj

  • Parsing xml and store the details in the hierarchical tables

    Hi all

    I'm trying to parse a xml code and store the details in the hierarchical tables, however, I am unable to analyze the child attributes of tags and store the details in relational format.

    Oracle - 11.2.0.4 version

    My XML looks like in below:

    <Root>
    <ParentTag name="JobName" attrib1="Text" attrib2="SomeOtherText">
      <ChildTag childAttrib1="SomeValue1" childAttrib2="SomeValue2" />
      <ChildTag childAttrib1="SomeValue3" childAttrib2="SomeValue4" />
      <ChildTag childAttrib1="SomeValue5" childAttrib2="SomeValue6" />
    
      <OtherChildTag childAttrib1="SomeValue1" childAttrib2="SomeValue2" />
    </ParentTag>
    </Root>
    
    

    The table structure is as follows:

    create the table parent_details
    (
    job_id number primary key,
    VARCHAR2 (100) job_name,.
    job_attrib1 varchar2 (100),
    job_attrib2 varchar2 (100)
    );

    create the table child_details
    (
    child_id number primary key,
    number of parent_job_id
    child_attrib1 varchar2 (100),
    child_attrib2 varchar2 (100),
    Constraint fk_child_details foreign key (parent_job_id) refers to parent_details (job_id)
    );

    After analysis, I would expect the data to be stored in the format below:

    Table Name:-
    parent_details
    ID Name     Attribute1  Attribute2
    1  JobName  Text        SomeOtherText
    
    
    ChildTable (Store Child Tag details)
    ID Parent ID Attribute1  Attribute2
    1  1         SomeValue1  SomeValue2
    2  1         SomeValue3  SomeValue4
    3  1         SomeValue5  SomeValue6
    
    

    I tried following SQL, but it does not work. Please suggest if the same SQL can be improved to get the details in the expected format or should I use another solution.

    select job_details.*
      from test_xml_table t,
           xmltable ('/Root/ParentTag'
                      passing t.col 
                      columns 
                        job_name varchar2(2000) path '@name',
                        attribute1 varchar2(2000) path '@attrib1',
                        attribute2 varchar2(2000) path '@attrib2',
                        childAttribute1 varchar2(2000) path '/ChildTag/@childAttrib1'
                    ) job_details;
    

    I'm not forced to have a SQL solution, but would if it can be in SQL.

    Kind regards

    Laureline.

    Post edited by: Jen K - added the SQL, I tried to build.

    Well, the XML contains hierarchical data, and SQL is a "dish" of data, so it's up to you to treat lines that are coming out of the flat style and determine how to get that in separate tables.

    Suppose that we have several nodes of ParentTag each containing several nodes of ChildTag...

    SQL > ed
    A written file afiedt.buf

    1 with t (xml) as (select xmltype ('))
    2
    3
    4
    5
    6
    7

    8
    9
    10
    11
    12

    13
    ') of double)
    14-
    15 end of test data
    16-
    17 select x.p
    18, x.name, x.attrib1, x.attrib2
    19, including
    20, y.childattrib1, y.childattrib2
    21 t
    22, xmltable ('/ Root/ParentTag ')
    23 passage t.xml
    p 24 columns for ordinalite
    25, path name varchar2 (10) '. / @name'
    26, path of varchar2 (10) of attrib1 '. / @attrib1 '


    27, way to varchar2 (10) of attrib2 '. / @attrib2 '
    28 children xmltype road '.'
    29                 ) x
    30, xmltable ('/ ParentTag/ChildTag ')
    passage 31 x.children
    c 32 columns for ordinalite
    33, path of varchar2 (10) of childattrib1 '. / @childAttrib1 '
    34 road of varchar2 (10) of childattrib2 '. / @childAttrib2 '
    35*                ) y
    SQL > /.

    P NAME ATTRIB1 ATTRIB2 C CHILDATTRI CHILDATTRI
    ---------- ---------- ---------- ---------- ---------- ---------- ----------
    1 text JobName SomeOtherT 1 SomeValue1 value2
    1 text JobName SomeOtherT 2 SomeValue3 SomeValue4
    1 text JobName SomeOtherT 3 SomeValue5 SomeValue6
    JobName2 TextX SomeOtherT 1 SomeValue6 SomeValue8 2
    JobName2 TextX SomeOtherT 2 SomeValue7 SomeValue9 2

    Using the 'ordinalite' gives us the line number for this node in the XML file, so that you can identify each parent as well as to say who is the first record of this parent (because it will have a child with the ordinalite 1).

    An INSERT ALL tuition assistance we can insert into two different tables at the same time to keep related data... for example

    SQL > create table tbl1 (pk number, name varchar2 (10), attrib1 varchar2 (10), attrib2 varchar2 (10))
    2.

    Table created.

    SQL > create table tbl2 (parent_pk number, attrib1 varchar2 (10), attrib2 varchar2 (10))
    2.

    Table created.

    SQL > insert all
    2 when c = 1 then
    3 in the tbl1 (pk, attrib1, attrib2)
    4 values (p, attrib1, attrib2)
    When 5 1 = 1 then
    6 in the tbl2 (parent_pk, attrib1, attrib2)
    7 values (p, childattrib1, childattrib2)
    8 with t (xml) as (select xmltype ('))
    9
    10
    11
    12
    13
    14

    15
    16
    17
    18
    19

    20
    ') of double)
    21 select x.p
    22, x.name, x.attrib1, x.attrib2
    23, including
    24, y.childattrib1, y.childattrib2
    25 t
    26, xmltable ('/ Root/ParentTag ')
    27 passage t.xml
    p 28 columns for ordinalite
    29, path name varchar2 (10) '. / @name'
    30, path of varchar2 (10) of attrib1 '. / @attrib1 '
    31, path of varchar2 (10) of attrib2 '. / @attrib2 '
    32 children xmltype road '.'
    33                 ) x
    34, xmltable ('/ ParentTag/ChildTag ')
    passage 35 x.children
    c 36 columns for ordinalite
    37, path of varchar2 (10) of childattrib1 '. / @childAttrib1 '
    38, path of varchar2 (10) of childattrib2 '. / @childAttrib2 '
    39                 ) y
    40.

    7 lines were created.

    SQL > select * from tbl1;

    PK ATTRIB1 ATTRIB2 NAME
    ---------- ---------- ---------- ----------
    1 text JobName SomeOtherT
    2 JobName2 TextX SomeOtherT

    SQL > select * from tbl2.

    PARENT_PK ATTRIB1 ATTRIB2
    ---------- ---------- ----------
    1 SomeValue1 value2
    1 SomeValue3 SomeValue4
    1 SomeValue5 SomeValue6
    SomeValue6 2 SomeValue8
    SomeValue7 2 SomeValue9

  • Detailed Master form - error in the detail record

    Hi all

    I fight with master detail form. I created the detailed form of the wizard master.

    After adding line in detail, click on the button "Apply Changes" and it gave me an error basically saying cannot insert NULL to a column.
    This column is FK that point to the PK of the master data. I thought should should be automatically taken care of.

    ---------------------------------------------------------------------
    for example:

    Master table: DEPT

    DEPT_NO
    DEPT_NAME

    Detail table: EMP

    DEPT_NO
    EMP_NO
    EMP_NAME

    --------------------------------------------------------------------

    When adding new Emp ('add row') I want the DEPT_NO (hidden) be defined with the value of the master record.

    How can I make the default main record PK value?
    I tried to put everything I think it's relevant, but without success: (.)

    Can someone tell me where I should put the value?

    Thank you very much.

    Hello Joel,

    It works now.
    I changed the Source Type of the primary key of the column (detail) CLASS_TEMPLATE_ID of a trigger in the Custom PL/SQL function, then assign the primary key Source:
    return: P3_CLASS_TEMPLATE_ID;

    (You can now disable/remove - or change the password - the user dev again)

    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this response in marking it as useful or Correct ;-)

  • Paid the required version for functions that eliminate the details and sensitive information?

    We have downloaded version 11 of Acrobat and we need to remove sensitive information such as the details of the property and anything else relating to the documents that we do not want the end user to see. I know that it is possible to right click the icon of the Office for the paper, but with the help of this process does not remove completely all the information that we want to. I just watch the tutorial on how to remove sensitive information by using the function 'protection' (writing), but I don't see the same list of options on my version of acrobat. My guess is that these features are available on the paid version. Is this the case? Also, is it possible to set up acrobat so that by default, all of the sensitive information in the document and icon properties are deleted? We find that if we create a Word document and remove the icon properties and any other sensitive information, to remove that info again on saving in PDF format. The PDF file displays the info we do not want to send and I have tried different methods to remove the icon properties, but he seems to have no effect. Thank you for your help.

    The writing tool is only available with the professional version of Acrobat.

  • What is the name of the table that stores the APEX User Group

    Hello

    -J' created 2 users (user1, user2) APEX [Developer = NO & admin = NO]
    -also created 2 user group, say Admin & General

    and then have assigned User1 to the Admin group
    and user2 in the general group.

    I am able to find the list of the users of APEX_WORKSPACE_APEX_USERS, but the groups aren't there.
    How to check for groups of users whose individual end-user belongs to... I mean the name of the TABLE...

    Thank you
    Deepak

    Hello

    I missed the post read first
    Point of view is WWV_FLOW_GROUP_USERS

    BR, jari

    Published by: jarola on January 14, 2010 12:47 AM

    Published by: jarola on January 14, 2010 12:48 AM

  • table that stores the data of reconciliation

    Hello

    I'm running on IOM 11gr2PS1.  How can I query data reconciliation for a given grateful event?

    Thank you

    Khanh

    Recon data in tables RA_XXXX.

    -Kevin

  • I want to create my logo. Can anyone recommend that either the app might work better and how to start?

    I'm late in the Department and the logo. I have been using temporary but I'm ready for a logo custom design and I need to know, a person more experienced that I am, what program would work better and how to start. If anyone, out there, can get me going in the right direction, I'll send them a gift certificate good for a nice discount on the purchase of my jewelry line. Just provide a contact method.


    Thank you all in advance for any help you can give.


    Sue

    I wouldn't say that anything in the creative clouds is suitable for a beginner. They are all professional tools with a steep learning curve. Education and training is highly recommended and can be essential if you do not have a background in graphic design. I looked at experienced artists, pull your hair to try to use Illustrator to do the simple things.

    However, the choice of professionals for a logo is certainly Illustrator.

    Start with a pencil and paper, however, until you have your idea. Then use your skill in Illustrator to make a polished design.

  • What is the best way to store the RCS for an insert/update in this rec

    Oracle on Win 64 non-conteneur 12.1.0.2

    When a record in one table is inserted or updated, what would be the best way to store the RCS for this record in this folder.

    I thought of a line after trigger, but did not know if this trigger to store the current_scn would still fire that trigger again (recursive trigger).

    Someone at - he a good idea of what the best way is to do?  The devs don't want to store the pk and the SNA in yet another table...

    Yes, row_dependencies would be the best way to go.  But mgmt doesn't recreate all tables for this.

    3rd party applications retrieve data from tables (all data).  We are looking for a way for them to just pull what is new or updated updated since their last sweater.

    I suggest that you try again and give all OF THE REQUIREMENTS.

    You have rejected ANY answer given and he justified using 'hidden' on what knowledge management or the devs want or do not want to. Stop making us guess what are the requirements and constraints. If you want a real answer then tell us ALL the news.

    When a record in one table is inserted or updated, what would be the best way to store the RCS for this record in this folder.

    Solomon answered repeatedly. If you want to add a column to a table to store the then "best" SNA is to let the Oracle to do this for you automatically by using the DEPENDENCY LINE.

    As he says also re-create the table to add this clause will be MUCH MORE EFFECTIVE that everything THAT you can do it manually. It will be also more accurate because Oracle will fill the value ORA_ROWSCN with the SNA at the time the line was committed. You, as long as user, can't fill a column in function when a line is engaged since real VALIDATION belongs to a transaction, not the line or the trigger that you use.

    Yes - there are two drawbacks to this method:

    1. you need to re-create the table

    2. you cannot add an index to this "hidden" column

    The devs don't want to store the pk and the SNA in yet another table...

    Then? Who cares what the devs want to do? You want the BEST solution? Next, you will need to put aside personal preferences and determine what is the 'best' solution. Why it is important that certain dev wants to do this or not?

    OK, the problem of biz is now, 3rd party external users are an all-wheel drive large number of tables in the database via the API that we wrote.  That was obviously interrupted OLTP during the day.  To reduce to the minimum, we want for them just to extract data that has been inserted/updated since their last sweater.

    It is the definition of a "replica" DB Then why don't you consider a real replicated DB? You can use DataGuard and have replicated DB which is read only that can be used to generate reports. Oracle does ALL the work to keep ALL the tables in sync. You and your developers do NOTHING!

    We thought that store the RCS higher their last sweater would allow the API to extract only data with YVERT higher than their last data pull CHN.

    OK - except you keep rejecting solutions actually do. Ask you questions about the SNA stored in the same table, but then reject the solution that does this. And then you add your "devs" don't want to store the info in a new table either.

    Then your solutions must ONLY use the replication or Log Miner. The REDO logs have all changes, if you want to extract yourself. Replication (e.g., DataGuard) will use these logs for you to maintain a replicated database.

    We thought about it, but recreate all tables in production with ROWDEPENDENCIES as well as dealing with CF and other dependencies idea this was shot.

    Well you NEVER mentioned you "thought that" and rejected it. And you NEVER mentioned anything about FKs and other dependencies. What is FKs and other dependencies which prevents this working solution? Tell us! Give us ALL the information.

    Wouldn't a trigger AFTER LINE capture the commit YVERT?  Or is after really not after validation?

    No - a trigger has NOT one commit. A trigger runs as a step in a transaction. Validation applies to the entire transaction. Until you, or Oracle, issues a commit, there is NO "committed SNA" to be stored as ORA_ROWSCN.

    You can easily see that for yourself. Create a simple table with dependencies of the line and then update two different sessions.

    create the table emp_scn rowdependencies in select * from emp where rownum<>

    Select empno, emp_scn ora_rowscn

    Update emp_scn set work = 'b' where empno = 7499

    commit;

    The first SELECT statement will show you that each row has the same SNA.

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,70622201

    7521,70622201

    Now, do the update (but no commit), then SELECT it

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,

    7521,70622201

    Where is the value of 7499? This session will NOT see a value for the changed lines in the current transaction. Other sessions will still see the old value.

    Now do the validation, then SELECT

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,70622301

    7521,70622201

    7499 now has a new and different value than the other lines. It will not be this new value until the validation occurs.

    Yes, row_dependencies would be the best way to go.  But mgmt doesn't recreate all tables for this.

    Well, you got the answer you want. You ask the best way. Now, you say that you were told the best way. But now you don't like the answer.

    How is it our fault? Your question has been answered wasn't she?

    Here are the facts:

    1 oracle creates a history of changes - the REDO log files

    2. you can use Log Miner to extract these changes

    3. you can create your own change log by adding a log file of MV to your table.

    4. you can then write a custom code to use this MV log file to determine which rows to "reproduce".

    So far reject you all THE POSSIBLE solutions.

    Accept it or change the requirements to allow one of the solutions proposed to be used.

    Personally, if I HAD to use a customized solution, I would use a MV journal to record the ROWID of the lines that have changed (for tables ROWID cannot be changed). I would then extract the appropriate lines by pulling on the lines corresponding to these row ID.

    Even that has problems since a line can be changed several times and children lines can also be amended several times - these questions FK you mentioned.

    I suggest you read this entire thread on AskTom a dozen years ago. It addresses ALL these issues.

    https://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:16998677475837

    Then in your next reply on this topic give us a summary of where some things with your question and what help you further expect.

  • Empty table of ODI SNP_EXP_TXT

    Hello

    I use 11.1.1.6.3_GENERIC_120508.0956 ODI, with Oracle DB, Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0.

    I try to get the error messages in my database, and from what I've read of the documentation and the Web, the best way is to use metadata that ODI SNP tables.

    Specifically, to get the error message, the table SNP_EXP_TXT.

    Now I'm running my package of the Production environment, and when it finishes, the SNP_EXP_TXT table is empty.

    However, the SNP_SESSION, SNP_STEP_LOG, SNP_SESS_TASK and others similar are all full.

    Also, I noticed that all of the tables containing the TXT in the name are empty, apart from SNP_EXP_TXT_HEADER.

    Anyone has an idea why the SNP_EXP_TXT table is empty? Is there a good documentation on these paintings, in that I can find answer?

    Thank you!

    Before ODI 11.1.1.5, error messages can be obtained in the SNP_EXP_TXT table. But rom ODI 11.1.1.5, the details are kept in SNP_EXP_TXT_HEADER.

  • Double click and get and store the value in the variable.

    Hello

    It is my intention when I double click on a particular record on a table, I want to enter or store the specific record value in a variable and call this variable in the print/preview PLSQL code button.

    Below, I show the screenshot that contains a preview in the form of table and print button. After filling in the data. user double click the code officer LC354 and click Print Preview/mode button, it should display the report for only the
    Code of the agent of LC354(it's what I want). But normally when I click Preview before printing it affects wil see the report of the code of the agent of LC354 and LC325(which I don't).

    http://ImageShack.us/photo/my-images/811/printpb.PNG/

    My problem is how to capture the value ((*LC354*)) particular registration after double click the code(*LC354*) agent?

    I tried to store the agent code in the variable AG_CNT in mouse double click trigger with after the plsql code. but it dosent work.
    declare
    AG_CNT varchar2(10);
    begin
    *AG_CNT* :=GET_ITEM_PROPERTY('RFQ_AGENT_DETAILS.AGENT_CODE',CURRENT_RECORD);
    end;
    After that pass this AG_CNT value in *: AG_CODE *. the code below is in the Print/Preview button.
         cursor c1 is select nvl(count(ENQUIRY_NO),0) from scott.EXP_QUOTE_STATUS 
         where ltrim(rtrim(upper(job_status))) like 'APPROVED%' and ENQUIRY_NO = :REQ_FOR_QUOT.ENQUIRY_NO
    AND AGENT_CODE=*:AG_CODE* ;
    How to do this?

    SKUD.

    Hello

    When you click a folder, the focus moves to that record. To get the values of each element, just use the standard:

    :value := block.item ;
    

    François

  • Store the value of the string column input color

    JDeveloper 11.1.1.2.0

    I have a table with a column for the labels of color that stores the value of string type. The goal of this column is to color code (tag/highlight) certain ranks with the data it holds, currently it stores literals string like 'RED', 'BLUE', etc.

    I try to use the component of inputColor af of the components of the adf, so far, I converted label inputText default af table gives me and converted into the inputcolor component. I also set the simple property to true.

    When running when I submit the color I picked up that don't throw me an error, just around the color of the red component (like what you get during an error), then it returns a null value.

    I tried searching forums and I guess that the color picker is not much of a topic, just need some guide on how to convert string to store in db so that I can reuse the value later.

    Thank you!

    Try to manually add the method in the class of the line. If does not, you may need to use a bean to indirection. This last method requires a backingBeanScope bean (or the scope of the request) whereby you inject the binding of string attribute (#{bindings.attribteName}). Bean then simply implements the conversion logic and get/set the value using get/setInputValue of the binding of the attribute.

    Kind regards

    ~ Simon

  • Is it a Variable exists that contains the title of the report?

    All,

    I'm trying to find out if there is a variable (I guess session) that stores the title of the current report? I looked through manuals widely enough and can't seem to find out if there is indeed. If there is not, any ideas on how to extract the title of the current report in a variable of session/Presentation? Basically, I'm trying to use writeback to write comments in a table on the current report and do not want to have a free shape for the report title field comments on. Any thoughts will be greatly appreciated!

    Thank you

    Josh

    For me no. You have it in the monitoring of the use, but not to write back.
    You must create a formula column to manually add the title of the report and use it in the sql code.

  • Firefox stores the IP address with bookmark?

    When I open a Web site and save a bookmark of it, is recorded in a bookmarked favorite site IP address?
    When I create a bookmark without having to open a Web site, IP address is recorded when I open the bookmark?

    Firefox only takes IP addresses cached for a short time, by default, 60 seconds. As far as I know, the IP address is not registered in the places.sqlite database that stores the history and bookmarks (it is not very effective for data of this short to have validity to go on the drive).

  • Firefox does not store the browing history

    Several weeks ago, I deleted my cache to solve a problem. Since that time, Firefox displays the last ten websites I went on the drop-down history menu, but when I click on view history, the window is empty and says 'no element' downstairs.

    I have studied this problem on other sites and those provided by other troubleshooting tips:
    1) ensured that the tools: Options: privacy is defined on do not forget history
    (2) ensure that private browsing is not enabled
    (3) typical subject: Config in my address and verified field as all the parameters: the browser history are by default (180 days; 40 000 objects)

    I'm sure that it is a simple value somewhere, but I'm out of ideas. Can someone give me a hint?

    If the menu history displays the elements of the story then that suggests that the story works correctly.

    This may be a problem with the places.sqlite file that stores the bookmarks and history.

Maybe you are looking for

  • It is a solution - how to install XP on Satellite L40

    NOTE: you will need a license for XP Pro SP2(it should work with Sp1 and Home, but runs better on Pro SP2)! First download and install nLite. http://www.nliteos.com/download.html (requires .NET Framework version 2.0, you can download .NET Framework f

  • drivers for windows 7 (64 bit) for HP pavilion g6-2230tx

    I need drivers for my pc of pavilion laptop g6-2230tx for windows 7 64 bit os. It was first available in the HP website, but now it's the display drivers only for windows 8 and 8.1. Please tell me where I can get these readers. ???

  • What is the sapi?

    What is the sapi? where I can get tutorials on sapi.

  • 9000 series - __doPostBack questions

    I am creating hyper dynamic links in an asp.net ListView in a web application I'm developing for use on Black Berry (and several other mobile devices). I tried to use the controls of the asp: LinkButton, but they do not seem to answer in the Black Be

  • Display the default value for POPUP LOV

    HelloHow to display the default value for the element whose type is LOV POPUP?Version 4.2 of the apexThank you.