i Have created the universe in which i have one table and
different derived tables from the same table i am supposed
to create report from the same universe which should
dispalay the duplicates rows, but all the time i run the
report i am not getting the duplicate rows i have checkd
the duplicate report option too in report.. is there
problem with universe or report,.. can any body help?
plz giv ans . user1 developed some repot ,user2 modify the
same report and user 3 also some updates in that same
report ? how to indentify that report will be modified r
not ?
In general, how many Fact & Dimension tables are present in
a Banking Data warehouse project ?
108
which r the connectors used in san?
134
Theare is a Database In analysis services,How we will
specify the fact table.(i.e whether we will create the
measure objects for the fact tbl.) or it will reside insde
the database.
data data1;
input dt account;
format dt date9.;
cards;
1745 1230
1756 1120
1788 1130
1767 1240
;
data data2;
input startdt enddt total;
format startdt date9. enddt date9.;
cards;
1657 1834 12300
1557 1758 16800
1789 1789 12300
1788 1345 12383
1899 1899 13250
;
proc sql;
create table data3 as
select * from data1 as x left join data2 as y
on x.dt>=y.startdt and x.dt<=y.enddt;
quit;
Here, we are getting cartision product. But,I want left
join report consisting of this program. It should not get
duplicate values. you can modify the program also.
220
Identifying the bottlenecks in various components of
Informatica and resolving them.
88
can anybody tell me about complicated object you have created
127
for data loading in oracle, what are conventional loading ,
what are conventional loading and direct-path loading?