ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
Application Resilience API PL/SQL interface for disrupting sessions and services.
dbms_disrupt.disrupt_services(
job_name IN VARCHAR2,
service_names IN VARCHAR2 := '*',
instance_names IN VARCHAR2 := NULL,
percentage IN NUMBER,
sleep_interval IN NUMBER,
stop_interval IN NUMBER := 0,
duration IN NUMBER := 0,
output_file IN VARCHAR2 := NULL);
dbms_disrupt.disrupt_services_immediate(
job_name IN VARCHAR2,
service_names IN VARCHAR2 := '*',
instance_names IN VARCHAR2 := NULL,
percentage IN NUMBER,
stop_interval IN NUMBER,
output_file IN VARCHAR2 := NULL);
dbms_disrupt.disrupt_sessions(
job_name IN VARCHAR2,
user_names IN VARCHAR2 := '?',
service_names IN VARCHAR2 := '*',
instance_names IN VARCHAR2 := '?',
module_names IN VARCHAR2 := '*',
percentage IN NUMBER,
sleep_interval IN NUMBER,
duration IN NUMBER := 0,
output_file IN VARCHAR2 := NULL);
dbms_disrupt.disrupt_sessions_immediate(
user_names IN VARCHAR2 := '*',
service_names IN VARCHAR2 := '*',
instance_names IN VARCHAR2 := '?',
module_names IN VARCHAR2 := '*',
percentage IN NUMBER,
output_file IN VARCHAR2 := NULL);