To Find out Source datastore in ODI interfaces using SNP tables

Hi,
Could you please let me know how to find out Source datastore(s) in ODI interfaces using SNP tables ?
Regards,
Rashmik

Please use below query...Just pass the interface name..
SELECT C.TABLE_NAME AS "Target Table Name",
     A.COL_NAME AS "Target Field Name",
     Wm_Concat(G.SOURCE_DT) AS "Target Data Type",
     Wm_Concat(G.LONGC) AS "Target Data Length",
     Wm_Concat(TXT) AS "Transformation Rule",
     Wm_Concat(DISTINCT F.TABLE_NAME) AS "Source Table Name",
     Wm_Concat(D.COL_NAME) AS "Source Field Name",
     Wm_Concat(D.SOURCE_DT) AS "Source Data Type",
     Wm_Concat(D.LONGC) AS "Source Data Length"
FROM
     SNP_POP_COL A JOIN SNP_TXT_CROSSR B ON A.I_TXT_MAP=B.I_TXT
     JOIN SNP_POP C ON A.I_POP=C.I_POP
     JOIN SNP_TXT E ON A.I_TXT_MAP=E.I_TXT AND B.I_TXT=E.I_TXT
     LEFT OUTER JOIN SNP_COL D ON B.I_COL=D.I_COL
     LEFT OUTER JOIN SNP_TABLE F ON F.I_TABLE= D.I_TABLE
     LEFT JOIN SNP_COL G ON A.I_COL=G.I_COL
WHERE POP_NAME = 'XXXXXXX'
GROUP BY C.TABLE_NAME,A.COL_NAME ORDER BY 1
Edited by: KaushikPatel on Apr 18, 2013 6:52 AM

Similar Messages

  • How to find out where a variable has been used?

    How can I find out where a variable has been used within a package/interface/procedure?
    Should I check it using repository's internal tables?
    Thanks

    Hi,
    you have to make some queries to find variable used in which ODI object.
    like, it fetch the variable with scenario name and scenarion can serve your need.
    select v.i_var,v.var_name,s.scen_name from
    ODEV91119_ODI_WORK.snp_var v,ODEV91119_ODI_WORK.snp_scen s
    where
    s.i_var=v.i_var
    and s.scen_NAME='V_BTCH_NAME'
    and agree with SH answer
    Thanks

  • How to find out what text encoding has been used in mp3 tag

    Hello
    I have some foreign songs that I am importing into itunes. When a song called "04.公路 塵埃 北合起." gets imported, it comes up in itunes as "04.§Ω∏Ù π–ÆJ •¶X∞"
    Now I don't know a lot about different text encodings, but from what I've read on the forums is that the problem is that the tags that are encoded on the srcfiles are not unicode. I have tried the java application "UnicodeRewriter" recommended elsewhere in the forums, but both the commone Chinese ecodings, viz Big5 GBK etc.
    Is there a way to cut a world from (eg a chinese glyph) and somehow find out what text encouding has been used?

    Sorry, that question wasn't very well phrased. I'll try it again.
    I have some foreign songs that I am importing into itunes. When a song called "公路 塵埃 北合起" gets imported, it comes up in itunes as "§Ω∏Ù π–ÆJ •¶X∞"
    Now I don't know a lot about different text encodings, but from what I've read on the forums is that the problem is that the tags on the srcfiles are not unicode. I have tried the java application "UnicodeRewriter" recommended elsewhere in the forums, but whatever I sent the source encoding to, eg Big5, GBK, or one of about 9 others, I just get different types of garbage coming through.
    Is there a way I could take the original glyph in the file name (which shows up correctly on my desktop) and paste it into some sort of table. That table will then show me how that glyph will look in all different encodings without the correct conversion. So if I can match my "公" to my "§" I'll be able to see what the src encoding is.
    I know this is a longshot, but any help appreciated.
    Sorry for the rather rubbish explanation earlier.

  • How to find out which sequence a certain column used?

    you konw column C in table T is created by a sequence.
    How to find out which sequence column C is using?

    In the meantime I think it ought to becompulsory to
    only assign sequence values in triggers.
    Why? I can see no good reason for this. I think it's a good idea to have stuff like this
    coded in only one placeI don't like your argument for compulsory using triggers for sequences for exactly the same reason as you, ie that I like to keep my code in one place. If I'm reading some pl/sql code which uses a sequence I like to see the fact that the sequence is used in the pl/sql code, rather than to check to see if theres a trigger on the table and then see which sequence that uses.
    "naming conventions can work, provided they're enforced. Alas, like other standards, they can only be enforced by active policing".
    Thats what code reviews are.
    " there is also the special case of one sequence populating more than one table...."
    This is My Pet hate. I don't think there's ever a case where this is absolutely necessary. Again code reviews
    Unfortunately I have to live with a system which does this.
    and I appreciate we can't all have code reviews, etc.

  • HT1338 HOW CAN I FIND OUT WHICH SERVER MY MAC IS USING?

    HOW CAN I FIND OUT WHICH SERVER MY MAC IS USING, KEEP GETTING MICROSOFT SQL SERVER ERRORS
    WHEN TYPING IN ADDRESS'S?

    If your computer is tied to a network, then there is a way to check. Go to System Preferences, and click Accounts. unlock Admin
    then you can click Login Options.
    under that, Network Account Server. This should show you what server your computer is tied to. If you aren't in the tech department, you could try asking them.

  • Find out particular printers that are being used by background jobs.

    Find out particular printers that are being used by background jobs..
    Hi Gurus,
    I have to remove some printers from SPAD, but before removing those printers I have to make sure that those are not being used by any background jobs.   The table TBTCP can be used to identify which jobs are still using those printers, but this is a tedious process. 
    Any input would be highly appreciated.
    Thank you
    Adil

    Hi Adil,
    I'm lazy so I'd just run this SQL
    select distinct(jobname), pdest from SAPSR3.TBTCP where PDEST in ('LP01', 'LOCL') ;
    Just put the printers you want as shown above and just perform a little manual cross check by checking the job in SM37.
    And that's it .....
    Cheers,
    Amerjit

  • Is there a way to find out which CSS rules are being used by the different html files?

    Is there a way in Dreamweaver CS3 to find out which CSS rules are being used by the different html files, sitewide?
    Thanks - Dave

    Firefox add-on "Web Developer Toolbar" is a must have.  Information > Display Div & Class details.
    https://addons.mozilla.org/en-US/firefox/addon/60
    Another  handy Firefox Add-on  to add to your tool chest is called "Dust-Me Selectors."
    http://www.sitepoint.com/dustmeselectors/
    "It extracts all the selectors from all the stylesheets on the page you're viewing, then analyzes that page to see which of those selectors are not used. The data is then stored so that when testing subsequent pages, selectors can be crossed off the list as they're encountered.
    You can test pages individually, or spider an entire site, and you'll end up with a profile of which selectors are not used anywhere."
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Is there any way to find out where a standard text is used?

    Is there any way to find out where a standard text is used?
    We can see the text from SO10, but i want to find out where it is used.

    HI
    juct check out this thread
    How to find Standard Text
    a similar query is answered here
    hope this helps
    regards
    Aakash Banga

  • Finding out what time an application was used

    I know that you can find out when an application was "Last Used/Opened", but is there a way to see all the recent times its been open? So say if I wanted to see if an application was opened in a certain period of time (like a certain hour), is that possible?

    In addition to the standard creation and modification times, Mac OS X does record the last accessed time for a file. I don't know of any way to show this information in the Finder, but in the terminal you can run the ls command with the -u flag to show the last accessed time instead of the modified time. Running "ls -ul /Applications" will show you when the applications were last launched. You can pipe the results through grep to just show when Mail was last launched "ls -ul /Applications | grep Mail".
    Michael
    Mac Pro   Mac OS X (10.4.8)  

  • In CS5 can I find out which brush is currently in use so that I can slect it again later?

    in CS5 can I find out which brush is currently in use so that I can slect it again later? I can't figure this out

    Chris, I just ckecked and realized that the problem is only with CS5 64bit, I'm on windows 7. CS5 32bit works as you described.
    However even if it worked this doesn't help me anyway. I constantly change the size of the brush because I mostly paint but still need to know which brush preset I selected last. Please make  a feature that highlights the last brush  preset used - may be in a different way (color) if it doesn't match the current brush. It is real pain to find the needed brush. I have hundreds of brushes showing on my 30 inch monitor and I need them all. I spend a lot of times looking for recently used brushes. You can also implement recently used sorting order. I hope this is not very difficult to implement. Im sure that a lot of artists use many brushes like me, just look at all Photoshop painting  instructions videos, even the tutorials are boring when watching how long it takes to find and select the needed brush.

  • How do I find out what computers are authorized to use my Store Account.

    How do I find out what computers are authorized to use my Store Account? Do my iPhones count towards the 5?

    "How do I find out what computers are authorized to use my Store Account? "
    The ones that you authorized.  There is no list.
    "Do my iPhones count towards the 5?"
    No.
    ONLY computers count.

  • Find out which charateristics that are in use

    Hi
    We use classes linked to our document types.
    And the classes has a lot of characteristics.
    Is there an easy way to find out which characteristics that are in use (documentens where values are given), and on how many documents they have been used on?
    Best regards
    Tom Saga

    See if table AUSP serves your purpose.
    Regards,
    Pradeepkumar Haragoldavar

  • How to find out how much internet i have used on my iphone4

    how to find out how much internet i have used on my iphone4

    Settings > General > Usage > Mobile usage.
    But you have to reset it every month, but it works fine on the iPhone.

  • HT3986 how to find out serial no. of imac while using windows 7

    how to find out serial no. of imac while using windows 7

    In Windows open up the Command Prompt and type the following:
    c:> wmic bios get serialnumber

  • Synchronize RDBMS source view with ODI Interface

    Hello ODI expert(s),
    I'm new to ODI & hence experimenting.
    I'm trying to load metadata from a SQL Server view to Oracle's Hyperion Planning.
    My question is w.r.t source.
    I've 6 columns in my source view. All 6 were mapped to the appropriate target fields. Suppose a column is removed from Source view. Is there any option in ODI to synchronize i.e. exclude the (now)unwanted column(& hence mapping) from the ODI Interface, I initially created?
    Awaiting one of your responses.
    - Natesh

    I can relate to your issue.
    ODI does this to me all the time.
    The Operator logs show all greens and show no error, but no data makes its way to the Target.
    I usually remove one mapping at a time and re-run the Interface. That helps me pin-point what might be the issue. Very frustrating.

Maybe you are looking for

  • Ledger report

    Dear all, I have to develop a ledger report item wise and Organization wise: Item wise: Transaction date: reciept_num/ issue_number: reciept_from, reciept_to, BF Balance, Receipt Qty, Issued Qty, CF Balance, Which column in mtl_material_transactions

  • Could not open ... could not unlink ...  /var/db/BootCache.playlist

    In 10.5.7, on my QS 2002 Dual 1GHz, I keep getting this message. Awhile ago, someone suggested I Trash this file /var/db/BootCache.playlist, thinking it would be regenerated next Startup. Is there a Terminal command that I can use to accomplish this?

  • Acrobat Reader online

    I can't open pdf files online when using Safari 6.1.2. A black page occurs. What to do?

  • W3C/WCAG Accessibility

    is there any extension available for Adobe Dreamweaver CS5.5 - W3C/WCAG2.0 Accessibility?

  • Pricing Formula

    Hi all, I have a requirement where I need to create pricing formula (VOFM -> Formulas -> Condition Value). I have done some coding as per the requirement in RV64A600 and activated it also. I kept a break-point in the program but if I go to VA02 -> It