oracle-apex

Oracle 12c Apex 4.2 ORA-24247 network access denied by access control list (ACL)

烈酒焚心 提交于 2020-06-13 00:08:38
问题 hope you can help me too. I'm developing an APEX-Application. Oracle 12c APEX 4.2. I'm using the workspace wrk_projects in pdborcl. I need some information about the client. The client will act in the same domain. So I'm building a report: select utl_inaddr.get_host_name(sys_context('userenv','ip_address')) as hostname from dual; When I run it: report error: ORA-24247 network access denied by access control list (ACL) My question is: I have to define the ACL in the container or in pdb? How to

Oracle 12c Apex 4.2 ORA-24247 network access denied by access control list (ACL)

匆匆过客 提交于 2020-06-13 00:06:34
问题 hope you can help me too. I'm developing an APEX-Application. Oracle 12c APEX 4.2. I'm using the workspace wrk_projects in pdborcl. I need some information about the client. The client will act in the same domain. So I'm building a report: select utl_inaddr.get_host_name(sys_context('userenv','ip_address')) as hostname from dual; When I run it: report error: ORA-24247 network access denied by access control list (ACL) My question is: I have to define the ACL in the container or in pdb? How to

Oracle 12c Apex 4.2 ORA-24247 network access denied by access control list (ACL)

半城伤御伤魂 提交于 2020-06-13 00:05:22
问题 hope you can help me too. I'm developing an APEX-Application. Oracle 12c APEX 4.2. I'm using the workspace wrk_projects in pdborcl. I need some information about the client. The client will act in the same domain. So I'm building a report: select utl_inaddr.get_host_name(sys_context('userenv','ip_address')) as hostname from dual; When I run it: report error: ORA-24247 network access denied by access control list (ACL) My question is: I have to define the ACL in the container or in pdb? How to

Oracle 12c Apex 4.2 ORA-24247 network access denied by access control list (ACL)

对着背影说爱祢 提交于 2020-06-13 00:05:14
问题 hope you can help me too. I'm developing an APEX-Application. Oracle 12c APEX 4.2. I'm using the workspace wrk_projects in pdborcl. I need some information about the client. The client will act in the same domain. So I'm building a report: select utl_inaddr.get_host_name(sys_context('userenv','ip_address')) as hostname from dual; When I run it: report error: ORA-24247 network access denied by access control list (ACL) My question is: I have to define the ACL in the container or in pdb? How to

Oracle APEX apex_data_parser execution time explodes for big files

核能气质少年 提交于 2020-06-01 06:53:05
问题 (Sorry don't have enough rep-point to comment on the similar asked question) When the apex_data_parser processes file of more than 50MB, execution time explodes. As in the question asked here: apex_data_parser file > 50MB, I must agree with oCoXa, there must be a bug in the parser. I find exactly the same issue on ATP + APEX 19.2.0.00.18. I also see the spike in IO and CPU when parsing files >~50mb, no spike at all when below 50mb. I have loaded two files to a table (A41_temp_files), one

Oracle Apex column value conditional display

时光毁灭记忆、已成空白 提交于 2020-05-17 06:33:19
问题 I used the query below in interactive report and turned escape special characters off. This is just coloring text whereas requirement is to highlight entire row. Any suggestions? Ex: SELECT "P_IT_ISSUES"."ISSUE_SUMMARY" as "ISSUE_SUMMARY", decode("P_IT_PEOPLE_1"."PERSON_NAME",NULL,'Unassigned', "P_IT_PEOPLE_1"."PERSON_NAME") as "ASSIGNED_TO", case when "P_IT_ISSUES"."STATUS" ='Open' then '<aaab style= " color: green; " >' ||"P_IT_ISSUES"."STATUS"||'</aaab>' when "P_IT_ISSUES"."STATUS" ='On

Oracle Apex column value conditional display

[亡魂溺海] 提交于 2020-05-17 06:32:27
问题 I used the query below in interactive report and turned escape special characters off. This is just coloring text whereas requirement is to highlight entire row. Any suggestions? Ex: SELECT "P_IT_ISSUES"."ISSUE_SUMMARY" as "ISSUE_SUMMARY", decode("P_IT_PEOPLE_1"."PERSON_NAME",NULL,'Unassigned', "P_IT_PEOPLE_1"."PERSON_NAME") as "ASSIGNED_TO", case when "P_IT_ISSUES"."STATUS" ='Open' then '<aaab style= " color: green; " >' ||"P_IT_ISSUES"."STATUS"||'</aaab>' when "P_IT_ISSUES"."STATUS" ='On

Oracle Apex column value conditional display

允我心安 提交于 2020-05-17 06:32:27
问题 I used the query below in interactive report and turned escape special characters off. This is just coloring text whereas requirement is to highlight entire row. Any suggestions? Ex: SELECT "P_IT_ISSUES"."ISSUE_SUMMARY" as "ISSUE_SUMMARY", decode("P_IT_PEOPLE_1"."PERSON_NAME",NULL,'Unassigned', "P_IT_PEOPLE_1"."PERSON_NAME") as "ASSIGNED_TO", case when "P_IT_ISSUES"."STATUS" ='Open' then '<aaab style= " color: green; " >' ||"P_IT_ISSUES"."STATUS"||'</aaab>' when "P_IT_ISSUES"."STATUS" ='On

How to create and use a multi-select list in APEX ORACLE?

自闭症网瘾萝莉.ら 提交于 2020-05-13 08:13:28
问题 I have a table called Employees with Employee_id and Employee_Name columns. Now i want to create a page with Checkbox in-front of every Employee Name, select the ones that are needed, store them into a temporary table and use them for further operations. The problem i am facing is to how to create that multi select list and store the select values in thee table. Is there an Item for multi select? If not, how should i do it? 回答1: There's the Shuttle item . On the left side, you'd display list

Problem in firefox when calling window.open

南笙酒味 提交于 2020-05-12 11:30:11
问题 When i'm calling this code in the link of a chart in apex javascript:window.open('http://google.pt','mywindow','width=400,height=200', 'bReplace=true'); it opens a new window with google page but puts the chart page with a blank page with [object Window] wrote on it How can i maintain the chart page? 回答1: You need to force the expresion to not return a value: javascript:void(window.open(...)) 来源: https://stackoverflow.com/questions/5820180/problem-in-firefox-when-calling-window-open