Hello
Was trying your product. Installed the Personal Ed. delivered at EDUC2008. Tried to define a Dynamic View and using that in a Dynamic Join.
Here is the problem. Based on the standard Oracle SCOTT Schema:
1. Define a Dynamic View on EMP using all attributes (it does not depend whether using "*" in the select statement or using only the needed fields)
2. Define a Dynamic join with the created View as main Table that joins to Parent DEPT
3. Try to run/display the Dynamic Join => Oracle Error 00907
The Select Statement for the Dynamic Join is:
SELECT *
FROM ((SELECT E.EMPNO, E.ENAME, E.JOB, E.MGR, E.HIREDATE, E.SAL, E.COMM, E.DEPTNO
FROM EMP E) DAI_
LEFT JOIN DEPT J2 ON DAI_.DEPTNO = J2.DEPTNO)
which cannot be run in SQLPlus either.
Configuration:
- Dynamic AI Personal Running in Win2K Virtual Machine
- Connecting to a Oracle 9 Server with Oracle 10 client
- Using the Oracle Database connection (not the OleDB Provider)
- Using the delivered WebServer
Paolo