Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 43 Oracle Analytics and AI Sharing Center
- 19 Oracle Analytics and AI Lounge
- 281 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.2K Oracle Analytics and AI Forums
- 6.4K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 105 Oracle Analytics and AI Trainings
- 20 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
In Bursting query parameter3 will be auto generated automatically based on instance how can we fetch
In Bursting query parameter3 will be auto generated automatically based on instance how can we fetch, could you please help me.
Answers
-
hi Swetha,
Good to meet you here :)
You will have to get the instance from this query :
(
select external_virtual_host instance_url
from fusion.ask_deployed_domains
where deployed_domain_name='FADomain'
)
and then based on instance_url, construct your fusion instance.
,case
when instance.instance_url = 'aa-bbb-test-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-test.bi.sender@workflow.mail.em2.cloud.oracle.com'
when instance.instance_url = 'aa-bbb-dev1-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-dev1.bi.sender@workflow.mail.em2.cloud.oracle.com'
when instance.instance_url = 'aa-bbb-dev2-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-dev2.bi.sender@workflow.mail.em2.cloud.oracle.com'
when instance.instance_url = 'aa-bbb-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-bi.sender@workflow.mail.em2.cloud.oracle.com'
else 'no.sender@workflow.mail.em2.cloud.oracle.com'
end PARAMETER3
2