What is the equivalent oracle operators for following BO
Operators where we use in prompt:
a. Different from pattern b.Match pattern
c. Both and d.Except

Answer Posted / sunder

Except:
(
SELECT DEPT.DEPTNO, DEPT.DNAME, DEPT.LOC, EMP.ENAME
FROM DEPT, EMP
WHERE ( EMP.DEPTNO=DEPT.DEPTNO )
MINUS
SELECT DEPT.DEPTNO,DEPT.DNAME,DEPT.LOC,EMP.ENAME
FROM DEPT,EMP
WHERE ( EMP.DEPTNO=DEPT.DEPTNO )
AND EMP.ENAME = 'JONES')

Both:
(
SELECT DEPT.DEPTNO,DEPT.DNAME,DEPT.LOC,EMP.ENAME
FROM DEPT,EMP
WHERE ( EMP.DEPTNO=DEPT.DEPTNO )
AND EMP.ENAME = 'ADAMS'
INTERSECT
SELECT DEPT.DEPTNO,DEPT.DNAME,DEPT.LOC,EMP.ENAME
FROM DEPT,EMP
WHERE ( EMP.DEPTNO=DEPT.DEPTNO )
AND EMP.ENAME = 'ALLEN'
)

Match Pattern: LIKE “ABC%”
DFFERENT PATTERN: NOT LIKE “ABC%”

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which command using Query Analyzer will give you the version of SQL server and operating system ?

4174


can some body explain how migrate the BoXI r2 to BO 3.x and crystal reports XI r1 to Crystal report 2008 ?

925


Explain the data types present in bo and what happens if we implement view in the designer and report?

555


Explain about a tricky situation for which you found a very simple solution?

530


what is the difference between add link and include link in BO? Explain me with a scenario when to go for add link and when to go for include link?

9867






Its regarding Javascript coding for customization in BI4 reports. We need to have all the options disabled in the report except the option to Export(save the report in computer in Excel/pdf formats). I am able to hide TopBar,TabBar,Left Navigation etc but I need "Export" option to be displayed to the users in Read mode. Can this selective "hiding" be achieved?

1469


Hi friends, I am trying to create OLAP connection in IDT. I am getting error "error code:405 METHOD NOT ALLOWED" I am using "http:/olap/msmdpump.dll" I am using ms sql server 2012 -- cube

3274


is it possible to export the webi reports to crystal reports?with out using businessview?

1810


How can we do load testing for webi reports? (Example if I have have to test one webi report for concurrent users refreshing report at one time)?

568


Is there any other repository domains rather than universe, security, document?

589


What three things do you consider to be the most important factors for a manager?

587


Is there any tool that can compare two unvs / two rpts , built using bo 5.1 / bo 6.5?

499


any difficulitis have you phase while creating bo reports and how did u solve it

2982


Can more than 1 metric be applied on an analytic in business objects?

1647


what are the tables used in health care domain project and columns used in report?

4029