you have two tables table 1 contains emp id,name and deptno
and tble 2 contains only depatment number some of the
depatment no of 1st table are not present in table 2 how
will you create a report only to get the departments of
which excess in table 1
Answers were Sorted based on User's Feedback
Answer / taruna
The question is 'how to create a report' and not database query!!! We may apply MINUS operator between the two queries in query panel. This will give the difference.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / vishal
select a.empid, a.name, a.deptno from table1 a, table2 b where a.deptno != b.deptno
| Is This Answer Correct ? | 8 Yes | 6 No |
Answer / rajesh kumar
select empid,name,depno from table1,table2 where
table1.deptno not in table2.deptno
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / amutha
select empid,name,depno from table1,table2 where table1.deptno=table2.deptno(+)
| Is This Answer Correct ? | 3 Yes | 10 No |
while migrate bo 5.1 report into boxir2 ,what are the problems faced
There is one report running and a user wants to know whether data is from detail table or summary table. what is your approach?
explain about Prompt with example?
Tell me a business scenario where I can achieve the data through MINUS only not through subquery.
What is diff between InfoView and Zero BOAdmin (ZABO)?
What task is 98% of the required work of a business analyst?
how we improve the performance of report and universe?
When N reports are scheduled for N users, How does the BCA process /know to which user the report needs to be sent?
when I am trying to schedule the report its running faster then I tried to run it manually?? why is it so that there is difference of time between scheduling and manual run for report
Say, the query gets executed and we got the results. In case if we have a large number of rows, how can we know the exact no of rows returned?
please anyone explain the equi join,outer joi(right outer join and left outer join),theta join and self join with database tables.
Then how to select the source by using webi or deski reports into crystal reports? i think main source is Businessview. where u import the datasource ?