Which has the higher priority in your organization: Deploying a new database or securing the ones you already have?
Looking for a website, and resources, dedicated solely to securing Oracle databases? Check out DBSecWorx.
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);