Top ETL Interview Questions :: ALLInterview.com http://www.allinterview.com Top ETL Interview Questions en-us Where can i get informatica certification Exam dumps and details? pl http://www.allinterview.com/showanswers/68530.html pls cc to my id also Which type or t/s is used to convert rows into column & column i http://www.allinterview.com/showanswers/67575.html You can achieve through Normalizer t/f When you have 2 servers in two different time zone and if you need t http://www.allinterview.com/showanswers/28105.html use Time stamp on the server. such that we can worked on the time zone & set as per time & have data. In the SEQ generator which property has to be set to generate seq No http://www.allinterview.com/showanswers/67577.html Cycle what is SMP AND MPP? http://www.allinterview.com/showanswers/65429.html SMP - Symmetric Multi-Processing MMP - Massively Parallel Processing How can write SQL Overwrite to get Daynamic rows from the source in http://www.allinterview.com/showanswers/66627.html by using the sql override option in the edit properties in s.q transformation, Eliminating of duplicate records without using dynamic lookups http://www.allinterview.com/showanswers/65341.html duplicate records can be eliminated the following ways: 1) by using select distinct option 2) by over riding sql with group by port on the column which gets duplicate values ( P_key column) 3) by connecting the source to an expression transfor without using ETL tool can u prepare a Data warehousing and maintaini http://www.allinterview.com/showanswers/65427.html Yes , it is possible to create a datawarehouse without using ETL tool. but it will be very very complicated and time consuming and if the needs change you need to re-work on it again.but when you use etl tools you can adapt you can make the c if u can't find what you are looking for in lookup table, how do http://www.allinterview.com/showanswers/65437.html This Depend on the situation, To Check the value is there or not there two ways 1. Use notfound function (if possible) 2. Check the Key value from lkp as NULL Than based on the requirement generate error/Put default value what are the different forms of normalization? http://www.allinterview.com/showanswers/65422.html 1st normal form 2nd "" 3rd "" 4th "" CAN ANY ONE SEND ME THE CODE FOR THE BELOW 1).REMOVE '_' FR http://www.allinterview.com/showanswers/83142.html Use trim(columnname,'_','a') to remove the '-' values from the columns 2) use field function: field(columnname,'@'2) to get the company.com Thanks Kumar Hello all, Source Table(Flat File):- Target Table(Flat File) http://www.allinterview.com/showanswers/71928.html The simplest thing U can do is while importing the source flatfile using "Flat File Import Wizard" In Step1 choose-> FixedWidth in the step2 -> click and create a column or tab on the field then U can import them as 2 fields how to join two tables without using joiner transformation .advantage http://www.allinterview.com/showanswers/65418.html using sql over ride in s.qualfier how do u implement unconn.stored proc. in a mapping? http://www.allinterview.com/showanswers/65436.html unconn.stored procedure is implemented by the exprression transformation as :sp.proc2(sal,proc_result),here proc2 is the procedure name we have 1 source table containing 100 records. now we have to transf http://www.allinterview.com/showanswers/82683.html we can use the sql below to indicate the rownum. then router the data according to the rownum from upstream. select t.*,rownum rn from test t where mod(floor(t.rn/10),2) =0 --get the rows whose rownum between 1~9,20~29,etc.