How many interfaces required?

Hi
I am relatively new to ODI. I have 2 different sources for Vendor, need to go in the single Target table. Say Source A and B. After first full load the source files are going to be increamental
1. I have created staging interface INT_STG_A to load source file A into staging table A
2. created staging interface INT_STG_B to load source file B into staging table B
Questions:
1.
Should I create staging interface INT_STG_AB to load table A and B into staging table C and then create a Target Interface to load Table C into Target Table D?
or
Should I create target interface INT_TARGET_A to load staging table A into Target table D and create target interface INT_TARGET_B to load staging table B into Target table D
2. Any other approach? and Pros and Cons
3. What are two pass and 3 pass approach?
4. Do I require atleast 4 interfaces to achieve the above?
Thanks

Hi ,
You can do that using two interfaces.
In first interface - > join table A and B target will be table staging C
if its just insert ( appending the table ) use Control Append KM . ( other wise you can use Incremental update KM )
Now in second step ( interface )
just move the things form table C to target table ( final table )
in Brief using 2 interfaces u can achive this.
Regards,
Rathish A M

Similar Messages

  • Minimum How many dimension required for FDM integration Script

    Hi Gurus
    I have only 2 dimensions in my SQL Table name dbo.ABC (Example: 1.Entity 2.Account and amount(data value)
    Example:
    USA, SALES, 50000
    (Including value its total 3 dimensions)
    How to export this data to Target HFM Application.
    Integration Script got success when i click on validation it is shows only 2 dimension 1.Account 2.Entity. i have mapped correctly. but validation screen not showing anything. i got gold fish for validation button and Export is also showing success and got goldfish. but no data is exported to HFM application.
    in FDM outbox its created a file which is containing only *!data* text. There is no record in this file.
    I want to load the data with rest of the dimensions with [None] member combination as i don't have the additional dimensions in my source file.
    Minimum how many dimension required to export the data from FDM to HFM?
    regards
    Taruni

    Hi,
    I came to know, at least one member from the source file should be there in the integration script then only we can assign at least [None] member or any member for the target dimensions.
    My source file having only 3 dimensions ( USA,Sales,Amount)
    1.USA,2.Sales,3.$50000
    Import Screen Dimensions:
    1.Source-FM-Entity
    2.Source-FDM-Account
    3.Account Description
    4.SourceICP
    5.SourceCustom1
    6.SourceCustom2
    7.SourceCustom3
    8.SourceCustom4
    9.Amount
    In the integration script its taking the values as
    Source-FM-Entity(0)
    Source-FDM-Account(1)
    Account Description
    SourceICP
    SourceCustom1
    SourceCustom2
    SourceCustom3
    SourceCustom4
    Amount(2)
    above it shows only 0,1,2 numbers are assigned to source dimensions.
    As my source file having only 3 Dimension so it is taking only 3 dimensions shown below. rest of the dimensions it is not showing in the import screen.
    *0.Source-FM-Entity,1.Source-FDM-Account,2.Amount*
    If i assign any values(3-9) to next dimensions or if I left blank rs.fields("txtAcctDes") with its showing below error messages:
    Error: An error occurred importing the file.
    Detail: Item cannot be found in the collection corresponding to the requested name or ordinal.
    At line: (39 and 42-46)
    So i have assigned Source-FDM-Account Number<font color="Blue">(rs.fields(1) </font>Value to rest of the dimensions in my integration script.
    <font color="Blue">rsAppend.Fields("Account") = rs.fields(1).Value</font>
    rsAppend.Fields("Desc1") = rs.fields(1).Value
    rsAppend.Fields("ICP") = rs.fields(1).Value
    rsAppend.Fields("UD1") = rs.fields(1).Value
    rsAppend.Fields("UD2") = rs.fields(1).Value
    rsAppend.Fields("UD3") = rs.fields(1).Value
    rsAppend.Fields("UD4") = rs.fields(1).Value
    Now am able to import the data into import screen, And i found all the above member names as Sales as i assigned Account dimension number(1) to these members temporarily to succeed the import process . Then i have mapped to Target dimensions with [None] member combination as these members are not in original source file. Then rest of the process Export and Check is done perfectly.
    *<font color="red">1.Am i right?? Please suggest me the correct process?</font>*
    *<font color="red">2.Can we use blank values in Integration Script as mentioned below??</font>*
    rsAppend.Fields("Desc1") = rs.fields("txtAcctDes").Value
    rsAppend.Fields("Account") = rs.fields("txtAcct").Value
    rsAppend.Fields("Entity") = rs.fields("txtCenter").Value
    *1.Added value*
    Example: rsAppend.Fields("Desc1") = rs.fields("1").Value
    *2.Blank Value*
    rsAppend.Fields("Desc1") = rs.fields("txtAcctDes").Value
    *<font color="red">3.As per my observation system is not accepting blank values in integration script. Please correct me??</font>*
    Here is my Integration Script
    1     Function Integration(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    2     '------------------------------------------------------------------
    3     'Oracle Hyperion FDM IMPORT Integration Script:
    4     Created By: admin
    5     Date Created: 2012-11-20-07:55:20
    6     'Purpose:
    7     '------------------------------------------------------------------
    8     Dim objSS 'ADODB.Connection
    9     Dim strSQL 'SQL String
    10     Dim rs 'Recordset
    11     Dim rsAppend 'tTB table append rs Object
    12     'Initialize objects
    13     Set cnSS = CreateObject("ADODB.Connection")
    14     Set rs = CreateObject("ADODB.Recordset")
    15     Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)
    16     'Connect To SQL Server database
    17     cnss.open "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=TEST;Data Source=localhost;"
    18     strSQL = "Select * "
    19     strSQL = strSQL & "FROM ABC"
    20     'Get data
    21     rs.Open strSQL, cnSS
    22     'Check For data
    23     If rs.bof And rs.eof Then
    24     RES.PlngActionType = 2
    25     RES.PstrActionValue = "No Records To load!"
    26     FirstImportVB = False ' Assign return value of function
    27     Exit Function
    28     End If
    29     'Loop through records And append To tTB table In location’s DB
    30     If Not rs.bof And Not rs.eof Then
    31     Do While Not rs.eof
    32     rsAppend.AddNew
    33     rsAppend.Fields("PartitionKey") = RES.PlngLocKey
    34     rsAppend.Fields("catKey") = lngCatKey
    35     rsAppend.Fields("PeriodKey") =dblPerKey
    36     rsAppend.Fields("DataView") = "YTD"
    37     rsAppend.Fields("CalcAcctType") = 9
    38     rsAppend.Fields("Amount") = rs.fields(2).Value
    39     rsAppend.Fields("Desc1") = rs.fields(1).Value
    40     rsAppend.Fields("Account") = rs.fields(1).Value
    41     rsAppend.Fields("Entity") = rs.fields(0).Value
    42     rsAppend.Fields("ICP") = rs.fields(1).Value
    43     rsAppend.Fields("UD1") = rs.fields(1).Value
    44     rsAppend.Fields("UD2") = rs.fields(1).Value
    45     rsAppend.Fields("UD3") = rs.fields(1).Value
    46     rsAppend.Fields("UD4") = rs.fields(1).Value
    47     rsAppend.Update
    48     rs.movenext
    49     Loop
    50     End If
    51     'Records loaded
    52     RES.PlngActionType = 2
    53     RES.PstrActionValue = "SQL Import successful!"
    54     'Assign Return value
    55     Integration = True
    56     End Function
    Regards
    Taruni

  • How many Interfaces can i implement?

    How many interfaces can i implement in one class??
    I have 2 different events and i want the same class to be a listener for both events generated from one class.

    Around 32,000 (although the class file has a 16 bit
    unsigned int for the number of interfaces, each
    needs a class info and the string in the constant
    pool, which is limited to 65,535 entries).So what's the runtime overhead of adding an interface?

  • How many servers required to deploy RD Gateway to physical desktop PCs

    We want to setup RD Gateway for users to reach their desktop PCs from the Internet.  There are connecting to physical computers, not VMs or VDI.
    While the RD Gateway server itself could be a Hyper-V VM, we are not hosting VMs or VDI for the users to log into.  Everyone will be using the RD Gateway to log into their physical desktop PC.
    How many Windows servers are required just to get it running for an initial small number of users to pilot?
    We can add more servers if there is such a heavy traffic load in the future than the server cannot handle it, but for now I would like to know what is the minimum amount of separate Windows servers required just to make it function to securely pass RDP connections
    through from the Internet to an internal desktop PC.
    Do we need just one server to be a RD Gateway or do we need the Gateway plus a second server to be Connection Broker and third Windows server to be a licensing server?
    Do we need a separate Connection Broker server at all to allow users to connect to physical computers?

    Hi,
    You can setup RD gateway with a single Windows Server.
    Overview of Remote Desktop Gateway
    http://technet.microsoft.com/en-us/library/cc731150.aspx
    Checklist: Configure Remote Desktop Gateway
    http://technet.microsoft.com/en-us/library/cc732654.aspx
    Remote Desktop Gateway Installation Prerequisites
    http://technet.microsoft.com/en-us/library/cc731933.aspx
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • How many ogg required if i have both database on same machine.

    Hi!
    I have sqlserver 2005 and oracle 11g express on windows 2003
    please tel me how many instances of ogg112101_ggs_Windows_x86_ora11g_32bit is required for migraton and replication.
    yours sincerely.

    944768 wrote:
    i forgot to mention one thing.
    1)i have installed both the above mentioned database on one machine ,
    so do i need two ogg ?Yes.
    2) if yes then do i need one ogg for oracle and one ogg for sqlserver or two ogg for oracel will suffice.For any database "X", you need to use GoldenGate for Database "X". So for Oracle DB, you need to install GG for Oracle DB, and for SQL Server you need GG for SQL Server.
    Once the data is "captured" to a GG trail, the data from any version of GG for database "X" on operating system "A" can be sent to any other version of GG for database "Y" on operating system "B" (Hence the term: heterogeneous replication.)

  • SP500 tape library - how many server/SAN FC interfaces do I need?

    How many server or FC switch interfaces do I need to connect SL500 FC tape library? Let's say we have two FC tape drives installed. Does it mean I need to reserve 3 FC interfaces (one for robot and one for each drive)? Or there is some kind of internal hub/switch which permits to use one FC port to connect them all in a way which is implemented in SL48 library?

    Hello,
    if one VMWare host should run more then 2 VMs you need a Windows Server 2012 R2 Datacenter edition (unlimited versions from Windows VMs on the host) from Windows or 7 Windows Standard licenses (max. 14 VMs).
    Keep in mind that processors count into the license requirements.
    "...using VMware for high availability..."
    This means that you should have at least 2 VMWare hosts which have the RAM and processors to run in caseof hardware problem from the other host ALL VMs.
    So you are now need at least 2 Windows Server 2012 R2 Datacenter licenses or 14 Standard editions.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • How many minimum VLANS required for wireless

    Can management, ap-manager, dynamic interface(user defined) and LWAP are in the samesubnet.if not how many required.
    Just correct me if am not wrong, 1.management, ap-manager and LWAP can be in a single subnet
    user defined interfaces can be in a different subnet, so totally two subnets.
    2.management, ap-manager can be in one subnet, LWAP in another subnet and dynamic interfaces in different subnet so tatally three subnets.

    if you mean with lawpp the ap's then your statements are correct

  • How many Job_queue_processes are required?

    Hi all,
    I want to know how many Job_queue_processes are required to drive 50 schedulers.
    According to AQ manual. it says "at least 2 for message propagation" and "set higher values if there are many queues", however, there is no sizing guidelines.
    If you have an experience to create many schedulers which has multiple destination queue, please let me know what number you set to job_queue_parameters.
    NOTE: In our environment, we have 50 schedulers, and each one of it has 3 destination queues.
    Thanks in advance.

    Hi ennisb,
    Now we have 50 schedulers, and we need to propagate 100 messages per second in total. Required throughput is not so high, but we want to set latency=0.
    I think it is better to set job_queue_processes at least 50. However, I wander whether I need extra jobs to realize better performance and/or stability...

  • How many revolution​s of data are required for order analysis?

    Hello,
    I have a requirement to collect, process, and save data for several hours at a user specified sampling interval.  I suspect that I will need to use the speed of the motor to determine how many revolutions of data I am collecting.
    Is there a minimum number of revolutions of data required for order analysis?
    Thanks,
    Chris

    HI Chris,
    Thank you for posting on the National Instruments forum.  To determine how many revolutions of data that you are collecting, you will need to use the tachometer signal that is coming off of your motor and is defined as pulses per revolutions.  With this, the absolute minimum that you need is two pulses to figure out how fast your motor is spinning.  With only two pulses, however, it will be very hard to determine the order information. 
    I think this KB will help you in figuring out what Window Length you need when doing order analysis.
    How to Select the Window Length When Extracting Orders with Order Analysis
    Please let me know if the knowledge base article does not contain the information that you are looking for.
    Thank You,
    Nick F.
    Applications Engineer

  • How many track inputs can interface with garage band.

    Im going to buy and interface for recording multiple microphones. How many will garage band accept?

    Ben, do the letters RTFM ring any bells? There are hundreds of pages of tutorials at www.line6.com - check them first and then come back here if you
    are still stuck.

  • How many XI servers should require?

    Hi Experts,
    In real time scenario..how many XI servers should require? and How many SLD's?
    Shall we maintain the same XI system for Dev and QA or else separate systems.
    And also once done QA then how to send this to Production?
    My mail id:[email protected]
    Thanks in Advance.

    Hi,
    You Can Maintain One SLD . this is Preffered
    You Can Maintain Separate Servers For DEV QTY PRD
    Transporting ---
        /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi --Overview of Transition from Dev to QA
    Reward Points If Helpful
    Regards
    Sesh

  • How many SLD's require for 2 solman system requirements?

    Scenario1:
    One solman system for entire landscape->One SLD is required.
    Is this SLD should be a seperate system or can be within solman?
    Scenario2:
    One solman system for DEV/QAS and other solman system for PRD.
    How many SLDs are required? Can we manage with single SLD?
    If two SLDs, Then both should be seperate systems. i.e, One SLD -> DEV/QAS Solman, Another SLD ->PRD Solman.
    If only one SLD, Then it should be seperate system or can be within solman?
    We do have EP in client enviroinment. Can we use SLD of EP?

    Hi,
    you can use one SLD for all your systems if you want. You can either use an existing one or the one which comes with Sol Man. That's up to you.
    Any scenario is possible.
    /cheers

  • How many physical Network Adapter required for to implement NVGRE Gateway ?

    Hello Guys,
    Would like to know how many physical Network Adapter required to implement network virtualization including the technologies such as Windows Azure Pack| system center 2012 R2 & Hyper-V 2012 R2.
    Thanks 
    NM-BG

    A quick search of TechNet will turn up all sorts of step-by-step and overviews and blogs with lots of information about how to configure and setup.  Minimum of two.  Actual configurations may vary according to business needs and requirements.
    . : | : . : | : . tim

  • How many softMotion references can you create on an Interface Object

    I'm wondering how many softmotion references I can create on an interface object.  For example can I create a straight line move on an axis, keep that reference open then at the same time create another line move referece on a coordinate space that using that same axis?
    Can I have multiple line move references open at the same time on the same axis?
    Thanks,
    SteveA
    SteveA
    CLD
    FPGA/RT/PDA/TP/DSC

    Thanks Paul,
    I have noticed that the SoftMotion express vis open a reference on first call, but they never close the reference.  On my machine I will be doing regular coordinate moves and from time to time I will need to perform an Axis move.  Would it be better practice to close each reference after I perform the move?  How much overhead does it take to create a new reference?  The thought I had on keeping multiple reference open was to minimize the overhead in opening a reference.  Once my system gives a trigger to perform a move, I need it to be very responsive.
    Thanks,
    Steve
    SteveA
    CLD
    FPGA/RT/PDA/TP/DSC

  • HT201328 If IMEI No. is submitted for the unlocking process.. How many days is required for unlocking.?

    Guys Can u plz.. Help me to knw about this..
    If IMEI No. is submitted for the unlocking process.. How many days is required for unlocking.?

    It varies from carrier to carrier.
    The best person who would be able to answer this question is the customer services representative of your carrier.

Maybe you are looking for