| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Mailing Lists -> Oracle-L -> Slow database....
Hi all...
I am stumped with this one and its driving me mad!!!
One of our developers is running a script that is slowing the database down
drastically. It actually even hangs it.
I have tried to change database parameters etc and with no luck.
Here are my database parameters and the script he is running (its java), what am I doing wrong?
The archive logs also seem to be switching over every 15 seconds when this scripts is running...
import java.sql.DriverManager; import java.sql.Connection; import java.sql.PreparedStatement; import java.util.ArrayList; import java.util.Date;
public class Tatanka {
public static void main(String args[]) {
Connection con=null;
PreparedStatement st=null;
long tollerance = (long)1000;
int number = 20000;
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
con =
ArrayList drop = new ArrayList();
ArrayList create = new ArrayList();
ArrayList alter = new ArrayList();
ArrayList insert = new ArrayList();
ArrayList delete = new ArrayList();
create.add(new String("create table csemployee" +
" (username varchar2(40)," +
" password varchar2(40)," +
" firstname varchar2(40)," +
" surname varchar2(40)," +
" id varchar2(13))"));
alter.add(new String("alter table csemployee " +
" add constraint csemployee_pk primary key" +
" (username)"));
drop.add(new String("drop table csemployee"));
for (int i =0 ; i < number ;i += 1)
{
String todo = new String("insert into csemployee " +
"values("
+ "'" + new String("pietieGets" + i)+ "'" + ","
+ "'" + new String(new StringBuffer("pietieGets"
+ i).reverse().toString())+ "'"+","
+ "'" + new String("Piet" + i)+ "'"+ ","
+ "'" + new String("Pompies"+ i)+ "'"+ ","
+ "'" + i+ "'"
+ ")");
insert.add(todo);
delete.add(new String("pietieGets" + i));
if ((i % 1000) == 0 )
System.out.println("Created number: " + i + " ---- " + todo);
}
System.out.println("dropping table... ");
// drop the tables
for (int i = 0 ; i < drop.size() ; i += 1 )
{
try
{
st = con.prepareStatement((String)drop.get(i));
st.executeUpdate();
System.out.println((String)drop.get(i) + " succeeded!");
}
catch (Exception e)
{
System.out.println("Could not drop table: "+e);
}
}
System.out.println("droped table: ");
// create the tables
for (int i = 0 ; i < create.size() ; i += 1 )
{
try
{
st = con.prepareStatement((String)create.get(i));
st.executeUpdate();
System.out.println((String)create.get(i) + " succeeded!");
}
catch (Exception e)
{
System.out.println("Could not create table: "+e);
}
}
System.out.println("created table: ");
// alter the tables
for (int i = 0 ; i < alter.size() ; i += 1 )
{
try
{
st = con.prepareStatement((String)alter.get(i));
st.executeUpdate();
System.out.println((String)alter.get(i) + " succeeded!");
}
catch (Exception e)
{
System.out.println("Could not alter table: "+e);
}
}
System.out.println("altered table: ");
// insert into the tables
System.out.println("Going to do the insert...");
for (int i = 0 ; i < insert.size() ; i += 1 )
{
Date date_start;
Date date_end;
try
{
st = con.prepareStatement((String)insert.get(i));
date_start = new Date();
st.executeUpdate();
st.close();
date_end = new Date();
if ((i % 1000) == 0)
{
System.out.println("Insert nr:" + i);
//con.commit();
}
double diff =
(double)date_end.getTime()-(double)date_start.getTime();
System.out.println("time pause (insert): time ms - " + diff +
"--- item - " +i);
}
catch (Exception e)
{
System.out.println("Could not insert into table: "+e);
}
}
System.out.println("insert complete.");
System.out.println("Going to do the delete...");
// delete from the tables
for (int i = 0 ; i < delete.size() ; i += 1 )
{
Date date_start;
Date date_end;
try
{
st = con.prepareStatement("delete from csemployee where username =
'" +(String)delete.get(i) + "'");
date_start = new Date();
st.executeUpdate();
st.close();
date_end = new Date();
if ((i % 1000) == 0)
System.out.println("delete nr:" + i);
long diff = date_end.getTime()-date_start.getTime();
if ( (diff) > (double)tollerance)
System.out.println("time pause (delete): time ms - " + diff +
"--- item - " +i);
}
catch (Exception e)
{
System.out.println("Could not delete from table: "+e);
}
}
System.out.println("Delete complete.");
}
{
try
{
st.close();
con.close();
}
catch (Exception e)
{
e.printStackTrace();
}
Here are my parameters:
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
9 processes
3
FALSE FALSE FALSE FALSE FALSE user processes
10 sessions
3
TRUE FALSE FALSE FALSE FALSE user and system sessions
11 timed_statistics
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
12 timed_os_statistics
3
TRUE FALSE IMMEDIATE FALSE FALSE internal os statistic gathering interval in seconds
13 resource_limit
1
14 license_max_sessions
3
TRUE FALSE IMMEDIATE FALSE FALSE maximum number of non-system user sessions allowed
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
15 license_sessions_warning
3
TRUE FALSE IMMEDIATE FALSE FALSE warning level for number of non-system user sessions
18 cpu_count
3
TRUE FALSE FALSE FALSE FALSE number of cpu's for this instance
20 instance_groups
2
TRUE FALSE FALSE FALSE FALSE
list of instance group names
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
21 event
2
TRUE FALSE FALSE FALSE FALSE
debug event control - default null string
22 shared_pool_size
2
FALSE FALSE FALSE FALSE FALSE size in bytes of shared pool
25 shared_pool_reserved_size
2
TRUE FALSE FALSE FALSE FALSE size in bytes of reserved area of shared pool
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
27 large_pool_size
2
FALSE FALSE FALSE FALSE FALSE size in bytes of the large allocation pool
29 java_pool_size
2
FALSE FALSE FALSE FALSE FALSE size in bytes of the Java pool
30 java_soft_sessionspace_limit
3
TRUE FALSE FALSE FALSE FALSE warning limit on size in bytes of a Java sessionspace
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
31 java_max_sessionspace_size
3
TRUE FALSE FALSE FALSE FALSE max allowed size in bytes of a Java sessionspace
32 pre_page_sga
1
33 shared_memory_address
3
TRUE FALSE FALSE FALSE FALSE SGA starting address (low order 32-bits on 64-bit platforms)
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
34 hi_shared_memory_address
3
TRUE FALSE FALSE FALSE FALSE SGA starting address (high order 32-bits on 64-bit platforms)
35 use_indirect_data_buffers
1
37 lock_sga
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
44 lock_name_space
2
TRUE FALSE FALSE FALSE FALSE
lock name space used for generating lock names for standby/clone
46 enqueue_resources
3
TRUE FALSE FALSE FALSE FALSE resources for enqueues
59 nls_language
2
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
60 nls_territory
2
61 nls_sort
2
TRUE TRUE FALSE FALSE FALSE
NLS linguistic definition name
62 nls_date_language
2
TRUE TRUE FALSE FALSE FALSE
NLS date language name
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
63 nls_date_format
2
TRUE TRUE FALSE FALSE FALSE
NLS Oracle date format
64 nls_currency
2
TRUE TRUE FALSE FALSE FALSE
NLS local currency symbol
65 nls_numeric_characters
2
TRUE TRUE FALSE FALSE FALSE
NLS numeric characters
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
66 nls_iso_currency
2
TRUE TRUE FALSE FALSE FALSE
NLS ISO currency territory name
67 nls_calendar
2
TRUE TRUE FALSE FALSE FALSE
NLS calendar system name
68 nls_time_format
2
TRUE TRUE FALSE FALSE FALSE
time format
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
69 nls_timestamp_format
2
TRUE TRUE FALSE FALSE FALSE
time stamp format
70 nls_time_tz_format
2
TRUE TRUE FALSE FALSE FALSE
time with timezone format
71 nls_timestamp_tz_format
2
TRUE TRUE FALSE FALSE FALSE
timestampe with timezone format
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
72 nls_dual_currency
2
TRUE TRUE FALSE FALSE FALSE
Dual currency symbol
73 nls_comp
2
TRUE TRUE FALSE FALSE FALSE
NLS comparison
74 disk_asynch_io
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
75 tape_asynch_io
1
77 dbwr_io_slaves
3
TRUE FALSE FALSE FALSE FALSE DBWR I/O slaves
81 backup_tape_io_slaves
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
85 db_file_direct_io_count
3
TRUE FALSE DEFERRED FALSE FALSE Sequential I/O block count
90 resource_manager_plan
2
TRUE FALSE IMMEDIATE FALSE FALSE
resource mgr top plan
98 lm_procs
3
TRUE FALSE FALSE FALSE FALSE number of client processes configured for the lock manager
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
99 lm_ress
3
TRUE FALSE FALSE FALSE FALSE number of resources configured for the lock manager
100 lm_locks
3
TRUE FALSE FALSE FALSE FALSE number of locks configured for the lock manager
113 control_files
2
FALSE FALSE FALSE FALSE FALSE control file names list
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
115 db_file_name_convert
2
TRUE FALSE FALSE FALSE FALSE
datafile name convert pattern and string for standby/clone datab
116 log_file_name_convert
2
TRUE FALSE FALSE FALSE FALSE
logfile name convert pattern and string for standby/clone databa
119 db_block_buffers
3
FALSE FALSE FALSE FALSE FALSE Number of database blocks cached in memory
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
120 buffer_pool_keep
2
TRUE FALSE FALSE FALSE FALSE
Number of database blocks/latches in keep buffer pool
121 buffer_pool_recycle
2
TRUE FALSE FALSE FALSE FALSE
Number of database blocks/latches in recycle buffer pool
131 db_block_checksum
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
134 db_block_size
3
FALSE FALSE FALSE FALSE FALSE Size of database block in bytes
145 db_block_lru_latches
3
TRUE FALSE FALSE FALSE FALSE number of lru latches
146 db_writer_processes
3
TRUE FALSE FALSE FALSE FALSE number of background database writer processes to start
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
158 db_block_max_dirty_target
3
TRUE FALSE IMMEDIATE FALSE FALSE Upper bound on modified buffers/recovery reads
159 max_commit_propagation_delay
3
TRUE FALSE FALSE FALSE FALSE Max age of new snapshot in .01 seconds
161 compatible
2
FALSE FALSE FALSE FALSE FALSE Database will be completely compatible with this software versio
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
164 log_archive_start
1
167 log_archive_dest
2
TRUE FALSE IMMEDIATE FALSE FALSE
archival destination text string
168 log_archive_duplex_dest
2
TRUE FALSE IMMEDIATE FALSE FALSE
duplex archival destination text string
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
169 log_archive_dest_1
2
FALSE TRUE IMMEDIATE FALSE FALSE archival destination #1 text string
170 log_archive_dest_2
2
TRUE TRUE IMMEDIATE FALSE FALSE
archival destination #2 text string
171 log_archive_dest_3
2
TRUE TRUE IMMEDIATE FALSE FALSE
archival destination #3 text string
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
172 log_archive_dest_4
2
TRUE TRUE IMMEDIATE FALSE FALSE
archival destination #4 text string
173 log_archive_dest_5
2
TRUE TRUE IMMEDIATE FALSE FALSE
archival destination #5 text string
174 log_archive_dest_state_1
2
TRUE TRUE IMMEDIATE FALSE FALSE archival destination #1 state text string
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
175 log_archive_dest_state_2
2
TRUE TRUE IMMEDIATE FALSE FALSE archival destination #2 state text string
176 log_archive_dest_state_3
2
TRUE TRUE IMMEDIATE FALSE FALSE archival destination #3 state text string
177 log_archive_dest_state_4
2
TRUE TRUE IMMEDIATE FALSE FALSE archival destination #4 state text string
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
178 log_archive_dest_state_5
2
TRUE TRUE IMMEDIATE FALSE FALSE archival destination #5 state text string
179 log_archive_max_processes
3
TRUE FALSE IMMEDIATE FALSE FALSE maximum number of active ARCH processes
180 log_archive_min_succeed_dest
3
TRUE TRUE IMMEDIATE FALSE FALSE minimum number of archive destinations that must succeed
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
181 standby_archive_dest
2
TRUE FALSE IMMEDIATE FALSE FALSE standby database archivelog destination text string
182 log_archive_format
2
FALSE FALSE FALSE FALSE FALSE archival destination format
184 log_buffer
3
FALSE FALSE FALSE FALSE FALSE redo circular buffer size
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
186 log_checkpoint_interval
3
FALSE FALSE IMMEDIATE FALSE FALSE # redo blocks checkpoint threshold
187 log_checkpoint_timeout
3
FALSE FALSE IMMEDIATE FALSE FALSE Maximum time interval between checkpoints in seconds
193 db_files
3
TRUE FALSE FALSE FALSE FALSE max allowable # db files
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
194 db_file_multiblock_read_count
3
TRUE TRUE IMMEDIATE FALSE FALSE db block to be read each IO
197 read_only_open_delayed
1
198 parallel_server
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
199 parallel_server_instances
3
TRUE FALSE FALSE FALSE FALSE number of instances to use for sizing OPS SGA structures
202 gc_releasable_locks
3
TRUE FALSE FALSE FALSE FALSE number of releasable locks (DFS)
203 gc_rollback_locks
2
TRUE FALSE FALSE FALSE FALSE
locks for the rollback segments (DFS)
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
204 gc_files_to_locks
2
TRUE FALSE FALSE FALSE FALSE
mapping between file numbers and lock buckets (DFS)
205 gc_defer_time
3
TRUE FALSE IMMEDIATE FALSE FALSE how long to defer down converts for hot buffers (DFS)
217 thread
3
TRUE FALSE FALSE FALSE FALSE Redo thread to mount
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
220 fast_start_io_target
3
TRUE TRUE IMMEDIATE FALSE FALSE Upper bound on recovery reads
225 log_checkpoints_to_alert
1
226 recovery_parallelism
3
TRUE FALSE FALSE FALSE FALSE number of server processes to use for parallel recovery
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
228 control_file_record_keep_time
3
TRUE FALSE IMMEDIATE FALSE FALSE control file record keep time in days
229 dml_locks
3
TRUE FALSE FALSE FALSE FALSE dml locks - one for each table modified in a transaction
230 row_locking
2
TRUE FALSE FALSE FALSE FALSE row-locking
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
231 serializable
1
232 replication_dependency_tracking
1
233 instance_number
3
TRUE FALSE FALSE FALSE FALSE instance number
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
237 transactions
3
TRUE FALSE FALSE FALSE FALSE max. number of concurrent active transactions
238 transactions_per_rollback_segment
3
TRUE FALSE FALSE FALSE FALSE number of active transactions per rollback segment
239 max_rollback_segments
3
TRUE FALSE FALSE FALSE FALSE max. number of rollback segments in SGA cache
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
240 rollback_segments
2
TRUE FALSE FALSE FALSE FALSE
undo segment list
245 transaction_auditing
1
250 fast_start_parallel_rollback
2
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
252 db_block_checking
1
265 ent_domain_name
2
TRUE FALSE FALSE FALSE FALSE
Enterprise Domain Name
266 os_roles
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
267 rdbms_server_dn
2
TRUE FALSE FALSE FALSE FALSE
RDBMS's Distinguished Name
268 max_enabled_roles
3
TRUE FALSE FALSE FALSE FALSE max number of roles a user can have enabled
269 remote_os_authent
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
270 remote_os_roles
1
271 O7_DICTIONARY_ACCESSIBILITY
1
273 remote_login_passwordfile
2
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
274 dblink_encrypt_login
1
275 license_max_users
3
TRUE FALSE IMMEDIATE FALSE FALSE maximum number of named users that can be created in the databas
276 db_domain
2
TRUE FALSE FALSE FALSE FALSE
directory part of global database name stored with CREATE DATABA
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
277 global_names
1
279 distributed_transactions
3
FALSE FALSE FALSE FALSE FALSE max. number of concurrent distributed transactions
282 commit_point_strength
3
TRUE FALSE FALSE FALSE FALSE Bias this node has toward not preparing in a two-phase commit
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
283 service_names
2
FALSE FALSE FALSE FALSE FALSE service names supported by the instance
284 instance_name
2
FALSE FALSE FALSE FALSE FALSE instance name supported by the instance
285 mts_dispatchers
2
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
L=TCP))(DIS=1)(SES=254)(CON=254)(TIC=15)(POO=NO)(MUL=NO)(LIS=(ADDRESS_LIST=(
ADDRESS=(PROTOCOL=IPC)(K
EY=PNPKEY))(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521))(ADDRESS=(PROT
OCOL=IPC)(KEY=online))))
FALSE FALSE IMMEDIATE FALSE FALSE
specifications of dispatchers
286 mts_servers
3
FALSE FALSE IMMEDIATE FALSE FALSE number of servers to start up
287 mts_max_servers
3
FALSE FALSE FALSE FALSE FALSE max number of servers
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
288 mts_max_dispatchers
3
FALSE FALSE FALSE FALSE FALSE max number of dispatchers
289 local_listener
2
TRUE FALSE FALSE FALSE FALSE
local listener
293 mts_service
2
TRUE FALSE FALSE FALSE FALSE service supported by dispatchers
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
294 mts_listener_address
2
TRUE FALSE FALSE FALSE FALSE
address(es) of network listener
295 mts_multiple_listeners
1
296 open_links
3
FALSE FALSE FALSE FALSE FALSE max # open links per session
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
297 open_links_per_instance
3
TRUE FALSE FALSE FALSE FALSE max # open links per instance
301 optimizer_features_enable
2
TRUE FALSE FALSE FALSE FALSE optimizer plan compatibility parameter
302 fixed_date
2
TRUE FALSE IMMEDIATE FALSE FALSE
fixed SYSDATE value
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
303 audit_trail
2
304 sort_area_size
3
TRUE TRUE DEFERRED FALSE FALSE size of in-memory sort work area
305 sort_area_retained_size
3
TRUE TRUE DEFERRED FALSE FALSE size of in-memory sort work area retained between fetch calls
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
306 sort_multiblock_read_count
3
TRUE TRUE DEFERRED FALSE FALSE multi-block read count for sort
308 db_name
2
FALSE FALSE FALSE FALSE FALSE database name specified in CREATE DATABASE
309 open_cursors
3
TRUE FALSE FALSE FALSE FALSE max # cursors per process
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
310 ifile
4
TRUE FALSE FALSE FALSE FALSE
include file in init.ora
311 sql_trace
1
313 os_authent_prefix
2
FALSE FALSE FALSE FALSE FALSE
prefix for auto-logon accounts
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
315 optimizer_mode
2
317 sql92_security
1
319 blank_trimming
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
320 always_anti_join
2
321 partition_view_enabled
1
324 star_transformation_enabled
2
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
333 parallel_broadcast_enabled
1
341 parallel_adaptive_multi_user
1
342 parallel_threads_per_cpu
3
TRUE FALSE IMMEDIATE FALSE FALSE number of parallel execution threads per CPU
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
343 parallel_automatic_tuning
1
357 always_semi_join
2
TRUE FALSE FALSE FALSE FALSE always use this semi-join when possible
362 optimizer_max_permutations
3
TRUE TRUE FALSE FALSE FALSE optimizer maximum join permutations per query block
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
363 optimizer_index_cost_adj
3
TRUE TRUE FALSE FALSE FALSE optimizer index cost adjustment
364 optimizer_index_caching
3
TRUE TRUE FALSE FALSE FALSE optimizer percent index caching
370 query_rewrite_enabled
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
371 query_rewrite_integrity
2
TRUE TRUE IMMEDIATE FALSE FALSE perform rewrite using materialized views with desired integrity
385 serial_reuse
2
386 cursor_space_for_time
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
387 session_cached_cursors
3
TRUE TRUE FALSE FALSE FALSE number of cursors to save in the session cursor cache
388 text_enable
1
389 remote_dependencies_mode
2
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
390 utl_file_dir
2
TRUE FALSE FALSE FALSE FALSE
utl_file accessible directories list
392 plsql_v2_compatibility
1
393 plsql_load_without_compile
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
394 job_queue_processes
3
FALSE FALSE IMMEDIATE FALSE FALSE number of job queue processes to start
395 job_queue_interval
3
FALSE FALSE FALSE FALSE FALSE Wakeup interval in seconds for job queue processes
396 optimizer_percent_parallel
3
TRUE TRUE FALSE FALSE FALSE optimizer percent parallel
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
397 optimizer_search_limit
3
TRUE TRUE FALSE FALSE FALSE optimizer search limit
398 parallel_min_percent
3
TRUE TRUE FALSE FALSE FALSE minimum percent of threads required for parallel query
401 create_bitmap_area_size
3
TRUE FALSE FALSE FALSE FALSE size of create bitmap buffer for bitmap index
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
402 bitmap_merge_area_size
3
TRUE FALSE FALSE FALSE FALSE maximum memory allow for BITMAP MERGE
404 parallel_min_servers
3
TRUE FALSE FALSE FALSE FALSE minimum parallel query servers per instance
405 parallel_max_servers
3
TRUE FALSE FALSE FALSE FALSE maximum parallel query servers per instance
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
409 parallel_instance_group
2
TRUE TRUE IMMEDIATE FALSE FALSE
instance group to use for all parallel operations
412 parallel_execution_message_size
3
TRUE FALSE FALSE FALSE FALSE message buffer size for parallel execution
420 hash_join_enabled
1
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
421 hash_area_size
3
TRUE TRUE FALSE FALSE FALSE size of in-memory hash work area
422 hash_multiblock_io_count
3
TRUE TRUE IMMEDIATE FALSE FALSE number of blocks hash join will read/write at once
424 shadow_core_dump
2
TRUE FALSE FALSE FALSE FALSE Core Size for Shadow Processes
NUM NAME
TYPE
--------- ----------------------------------------------------------------
---------
DESCRIPTION
425 background_core_dump
2
TRUE FALSE FALSE FALSE FALSE Core Size for Background Processes
426 background_dump_dest
2
FALSE FALSE IMMEDIATE FALSE FALSE Received on Wed Sep 20 2000 - 07:41:51 CDT
![]() |
![]() |