Search notes:

DBMS_SCHEDULER.SET_ATTRIBUTE

dbms_scheduler.set_attribute sets/modifies the attribute of a scheduler object.
dbms_scheduler.set_attribute is overloaded so that the value of the attribute can be set with different data types:
dbms_scheduler.set_attribute (
   NAME           => '…',
   ATTRIBUTE      => '…',
   VALUE          => '…'      -- Boolean, date, timestamp, timestamp with time zone, timestamp with local time zone or interval day to second.
);
Some attributes can be set to two (varchar2) values:
dbms_scheduler.set_attribute (
   name           => '…',
   attribute      => '…',
   value          => '…',
   value2         => '…'
);
In order to set an attribute to null, dbms_scheduler.set_attribute_null must be used:
dbms_scheduler.set_attribute_null(
   name            => '…'
   attribute       => '…'
);

See also

dbms_scheduler

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758206667, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/packages/dbms/scheduler/api/attribute/set/index(60): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78