Bimalaggarwal
Programmer
I have a pl/sql table defined on a global level (in a package definition) as :
type table1 is table of pls_integer index by binary_integer;
g_table table1;
where many users go over this table, through the following code in a procedure:
<package_name>.g_table.delete;
.. call to populate this table
.. call to process this populated table
My problem is that when several users start the task at the same time, there is a
very low performance. I do not understand the cause of this.
I need help.
type table1 is table of pls_integer index by binary_integer;
g_table table1;
where many users go over this table, through the following code in a procedure:
<package_name>.g_table.delete;
.. call to populate this table
.. call to process this populated table
My problem is that when several users start the task at the same time, there is a
very low performance. I do not understand the cause of this.
I need help.