You are on page 1of 5

What is a range lookup?

With range lookup , lookup can be performed such that column from reference field lies within a set values(columns) in the stream link rather than just joining on a exact match

Hi am sundar, i have datas like 00023-1010 00086-1010 00184F2-1010 . . . . SCH-AS-1010 200-0196-039 . . . Now i want the result as values before the delimiter should come under the column ITEM_CODE and values after the delimiter should come under the column LOC_CODE.. But some datas like "SCH-AS-1010", for this, "SCHAS" should come under the column ITEM_CODE and 1010 should come under the column LOC_CODE.. Pls help me.. u can do manipulate in transformer stage.in tranformer

stage some functions is ther like FIELD('sring',delimeter,occurence.....) like that A=Field('SCH-AS-1010','-',1) B=Field('SCH-AS-1010','-',2) C=Field('SCH-AS-1010','-',3) then concatenate A and B in ITEM_CODE C in LOC_CODE.

Re: i have a some records eno ename acono amount 1001 suresh sbi101 12000 1001 suresh sbi101 14000 1001 is dublicata how can i remove duplicate? we can remove the duplicate record i.e. 1001 by 1)using remove duplicate stage by giving as key = eno 2) using sort stage enter key column=eno allow duplicates =false. 3) by giving partition alogarithms = hash pariion key =eno that shoud dfine in properties tab.

JUNK DIMENSION A Dimension which cannot be used to describe the facts is known as junk dimension(junk dimension provides additional information to the main dimension) ex:-customer add Confirmed Dimension A dimension table which can be shared by multiple fact tables is known as Confirmed dimension Ex:- Time dimension

what is the main differences between Lookup, Join and Merge stages?

Lookup is used for less amount of data becausu it will takes the data from source and store in buffer so every time it process from buffer. Join is used for huge amount of data because it directly takes the data from disk so it process faster than lookup. Joiner is used to join with different join conditions. Merge is also used for huge amount of data. Merge has the same number of reject links as there are updated updated input links.

how can we send even and odd records from a sequential file to two different targets In transformer specify constraints Mod(@INROWNUM,2) =1 for Odd records and Mod(@INROWNUM,2) = 0 for even records

1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only? How to write the sql query? 3)i have 40 rows,i want to display last row? write sql query?

_for 2nd question answer is: select * from table where rowid<8 minus select * from table where rowid<5 __for 3rd quesion answer is: select * from emp where rowid in(select max(rowid) from emp)

Wat is isolation level and when do u use them?

http://www.allinterview.com/showanswers/36358.html

how can i abort the job if i get more than 100 errors in job log?

by default it will set if job has more than 50 warningd,then job will abort. U can use UtilityAbortToLog() function in transformer to abort the job. Data stage architecture Data stage architecture is client/server architecture. in Clint/server arch we have two types of components 1)client components data stage designer data stage administrator data stage director data stage manager 2)server component data stage server repository data stage package installer

http://www.allinterview.com/showanswers/66661.html

You might also like