Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle asynchronous update

-- To call a procedure asynchronously, create a auto_drop job:
BEGIN
    DBMS_SCHEDULER.create_job(
            job_name => 'My_JOB_NAME',
            job_type => 'PLSQL_BLOCK',
            job_action => 'BEGIN my_procedure(); END;',
            start_date => systimestamp,
            auto_drop => TRUE,
            enabled => TRUE
        );
END;
Comment

PREVIOUS NEXT
Code Example
Sql :: SQLite order random 
Sql :: postgres in operator with comma separated values 
Sql :: upper and lower in oracle sql 
Sql :: oracle add datafile to tablespace 
Sql :: turn off safe mode mysql 
Sql :: getting next sequence value jpa postgress 
Sql :: t sql check column exists 
Sql :: sql string starts with 
Sql :: fetch first 5 characters of the string in sql 
Sql :: mysql parse int 
Sql :: sql random number between 1000 and 9999 
Sql :: docker export psql sql 
Sql :: make a field auto_increment mysql 
Sql :: connecting to mysql database using python 
Sql :: postgres create type 
Sql :: alter database name script 
Sql :: sqlserver docker 
Sql :: add column not null with default value postgres 
Sql :: mysql workbench requires visual c++ 2019 redistributable package 
Sql :: mysql find missing values 
Sql :: null column to 0 in mysql 
Sql :: mysql between date range 
Sql :: add column with foreign key constraint sql server 
Sql :: column get from sql table 
Sql :: select rows with same value in a column 
Sql :: copy postgres table from one schema into another 
Sql :: permission denied postgres copy csv command line 
Sql :: psql fatal database does not exist 
Sql :: postgresql find duplicates 
Sql :: sql manhattan distance 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =