Sei sulla pagina 1di 2

what is exclusive mode in infa admin console for repo>

1.filter->if we dont give any condition to the filter then what will happen to t
he incoming data?
all records will go
2.sorter and aggregator->if we give srt before agg then wat will happen?
lookup, agg, sorter, rank, joiners - all these use memory/cache for calculations
.
Agg is an active transformation, This guy is supposed to wait till he reads all
records from source (or till boundary of transaction). But when you check sorted
input ( Hope grp by column in agg and sorted column are same) then it creates t
ransaction boundary and do its calculations, So its faster because you are not w
aiting till it process all source input.
3.if we r sorting data in srt transformation but not enabling the sorted input o
ption in agg,then wat will happen?
Agg is dumb, it waits for all records to process then it performs sorting before
agg calucations.
4.if sorting the data in sorter and giving order by clause and in agg we r not e
nabling sorted input the wat will happen?

5.if sorting the data insrt transformation and giving order by clause and in agg
we are enabling sorted input and giving group by clause but in different sequen
ce to sorter transformation then wat will happen?
***************************************************************
say fr example you are sorting data based on four columns col1,col2,col3,col4 ,
then in aggregator too, u should follow d grouping in the same order ..col3 shou
ld not grouped by before col1...the order of ports should be maintained in aggre
gator. It is fine if you use only col1,col2 or col2 ,col4 for group by. But you
cannot use non order by column in group by wid sorted input option enabled
***************************************************************
1. In filter by default condition is true it passes all the records 2.if you put
srt before agg and selected sorted input option agg t/n consider data as sorted
data for ex if you do group by on year in agg data is sorted so 2014 all the re
cords it create group when 2013 record comes it creates 2 nd group 3. if you don
't select sorted input option for every record that comes it checks for 2014 in
all the records and creates group incase of earlier it didn't check whole data w
hen valu changed to 2013 it created group likewise it improves performance. 4. i
t consider as unsorted it checks whole data. 5. your session gets failed
***************************************************************
views:it is introduced in oracle 8i.it hold s the data . no dml allowed. It is e
quivalent to snapshot.m views are used in data warehouse s.m views are used to i
ncrease the speed of the quries on very large database s
View:view provides the high security while sharing the data between the users.vi
ew can be used to make a simple querys to retrive the result from the complicate
d quries.view provide groups of users access to according to their particular cr
iteria

***************************************************************
1
2
1
2
3
4
4
3

a
x
b
y
d
p
q
e

1
2
3
4

ab
xy
de
pq

Potrebbero piacerti anche