Discussions
Categories
- 196.8K All Categories
- 2.2K Data
- 239 Big Data Appliance
- 1.9K Data Science
- 450.3K Databases
- 221.7K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 550 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 544 SQLcl
- 4K SQL Developer Data Modeler
- 187K SQL & PL/SQL
- 21.3K SQL Developer
- 295.9K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.5K Development Tools
- 107 DevOps
- 3.1K QA/Testing
- 646K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 155 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 18 Java Essentials
- 160 Java 8 Questions
- 86K Java Programming
- 80 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 204 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 439 LiveLabs
- 38 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 232 Portuguese
Shared Component - List of Values - slow to load on Oracle Cloud

We are getting really slow performance from an APEX environment on the Oracle Cloud when defining List of Values as shared components.
When we try to open a list of values that uses a SQL statement it is taking 30-40 seconds to open the page, if it's a static list then opens right away.
Is this a known issue?
Best Answer
-
You are correct. There seems to be an an issue on Oracle Cloud right now when editing a Dynamic List of Values via Shared Components. I have the same application in an onsite server and problem does not occur. It may not be Apex related, but probably performance related within the Oracle Cloud environment.
Answers
-
Please update your forum profile with a recognisable username instead of "User_HP5NA".
We are getting really slow performance from an APEX environment on the Oracle Cloud when defining List of Values as shared components.
When we try to open a list of values that uses a SQL statement it is taking 30-40 seconds to open the page, if it's a static list then opens right away.
Is this a known issue?
-
Is this a known issue?
Web and application developers being totally and dangerously ignorant of fundamental Oracle concepts, and designing and writing shoddy applications using shoddy code?
Yes. A known issue. For many year now.
But ignorance is bliss. Making the problems someone else's problem.
"Oh no, the fault is not with me being ignorant. It is with that darn software product or technology!!" <sigh>
-
This is part of the APEX Development environment. On a hosted environment this seems to be fine but on the Cloud just takes ages to open. Just wondering whether SQL is doing a parse before it opens the window which runs slower on the cloud and whether this is known about by the APEX Development team.
-
This is part of the APEX Development environment. On a hosted environment this seems to be fine but on the Cloud just takes ages to open. Just wondering whether SQL is doing a parse before it opens the window which runs slower on the cloud and whether this is known about by the APEX Development team.
What the APEX development team knows about this is probably summed up in the blog post by Joel Kallman linked to above.
If the same query exhibits different performance across two environments then the most likely explanations are that the optimizer is choosing a different execution plan, or that there is significantly more data in one database than the other.
Check that the LOV code is actually the same.
Compare everything relevant across the environments:
- tables
- views
- indexes
- partitions
- data volumes
- data distributions
- statistics
- database parameters
-
The VERY SAME SQL can have DIFFERENT performance on the SAME DATA AND DATABASE.
SQL> set timing on SQL> select count(*) from dba_objects; COUNT(*) ---------------- 766,205 1 row selected. Elapsed: 00:00:01.52 SQL> select count(*) from dba_objects; COUNT(*) ---------------- 766,205 1 row selected. Elapsed: 00:00:00.73
Second execution is 50% faster.
You are now talking about different databases, different servers - and blaming a difference in performance on something the APEX team did - or are unaware of.
Unacceptable.
First learn and understand HOW the architecture and technology works before starting to throw blame around.
I've been around h/w and s/w technologies for some years. When something goes wrong, there are performance issues, or stability issues and the like - my first response is that I got something wrong. Only after doing a RCA and determining I did not muck it up, I'll look for the error or bug in the product. Which is almost never the case.
Yet in your view, with seemingly no understanding of the Oracle products used, your problem is due to the product and the lack of knowledge from the product team.
Unacceptable.
-
Unfortunately, you haven't understood what I am asking.
From within APEX Developer. Go to Shared Components and then List of Values.
Click to open one of the defined LOVs:
A static LOV (definition) will open immediately
An LOV that has a simple SQL query takes 30-40 seconds to open to be able to edit the LOV. This is internal to the APEX development environment, NOT a defined application.
If it was my coding then I would have performance tested it in isolation first and gather appropriate statistics. I understand Oracle architecture! All I wanted to know is if this is a known issue within the APEX Developer environment!
-
It is YOUR problem. Not APEX's problem.
Here is the performance measured from a client browser perspective, looking at client-server calls. The 1st call is to the APEX flow engine - which runs the SQL and PL/SQL code for rendering that page and returns the HTML of the page via HTTP to the browser to process (load additional resources like CSS and JS files), and render:
So the APEX flow engine constructed a 1.4MB page, that includes a page item (select list) containing 16,926 items. And this was done, and HTML page returned across the network, in 3.76 seconds.
The P1_OBJECT item definition:
Provide your evidence that APEX is at fault, or the cause is due to the APEX team's ignorance.... or accept that your ignorance is the cause of your APEX performance issue.
-
I have previously always found the APEX Community to be really friendly and helpful. Unfortunately, you are NOT!
-
Your expectation about a friendly community seems to be as realistic as my expectation that s/w and the APEX team not be blamed without reason or a single shred of evidence.
-
I was definitely NOT blaming the APEX team. I wanted to understand if there was an issue with running this on the Cloud environment due to the performance issues and whether it had been logged already as it doesn't happen on a hosted instance.
I didn't expect to be abused.