Just got Toad for Oracle 12.12.0.39,and it is changing the function/procedure parameter alignment of my previously formatted code from BEGIN DBMS_SCHEDULER.create_job ( job_name => v_job_name, job_type => 'STORED_PROCEDURE', job_action => 'app_disa_ca.process_cas', start_date => v_start_date, repeat_interval => NULL, -- run once enabled => TRUE, comments => 'Retry session for scheduler job ' || app_disa_ca.pk_database_job_name); END; to BEGIN DBMS_SCHEDULER.create_job ( job_name => v_job_name, job_type => 'STORED_PROCEDURE', job_action => 'app_disa_ca.process_cas', start_date => v_start_date, repeat_interval => NULL, -- run once enabled => TRUE, comments => 'Retry session for scheduler job ' || app_disa_ca.pk_database_job_name); END; In formatter, Right Margin is 95, Parameter Alignment is Dynamic with 3 spaces
↧