country, state 2 tables r there. in table 1 have cid,cname
table2 have sid,sname,cid. i want based on cid which country's
having more than 25 states i want to display?
Answers were Sorted based on User's Feedback
Answer / joe
join these two tables on cid and get all the columns to
output. Then in aggregator stage, count rows with key
collumn cid..Then use filter or transformer to get records
with count> 25
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / manikanta.srinu
select state.cid,country.cname from country inner join
state on country.cid=state.cid group by
state.cid,country.cname having count(state.sname)>25
| Is This Answer Correct ? | 7 Yes | 3 No |
how do u catch bad rows from OCI stage? And what CLI stands for?
1)Source file contains one record, I want 100 records in target file.
can a fact table contains textual information
6 Answers HCL, HCL BSERV, IBM,
Star Schema vs. Snow Flake Schema. What is the best model for DW? Give example for both the models performance wise?
What are the difference types of stages?
What are the unit test cases you used in your project?
CAN WE DO HALF PROJECT IN PARALLEL JOBS AND HALF PROJECT IN SERVER JOBS?
What is the purpose of pivot stage?
what is the use of DSattchJob?DetachJob? where can we find it?
Difference between the Sequence and Sequencer in DS?
by using dsjob..we can run only one job at a time?how can u run multiple jobs at a time in unix?
How to work with XML out put stage? Please explain step by step? i need to generate XML file using Table data. Given is the .XSD file. Please help?