문제

how do I import oracle table function as physical table in Oracle BI EE ? Let's say it is

select * from scheme.table_function1(adate)

What is correct syntaxis for setting it as BI physical table? How do I specify input parameter (adate)?

도움이 되었습니까?

해결책

Create a new physical table manually in the repository, set the table type to "Select" and include your sql query.

Are you using a repository variable as input parameter? Assuming ADATE is a repository string variable, the syntax would be

select * from scheme.table_function1(  'valueof(ADATE)'  )

You will have to manually add the columns to the new physical table and make sure they match with the sql results.

Links:
Opaque views
Variable Syntax

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top