Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle asynchronous procedure

-- 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 :: oracle asynchronous query 
Sql :: access mysql command mac xampp 
Sql :: reset identity column values in sql server 
Sql :: oracle show execution plan 
Sql :: wsl centos 8 mysql 
Sql :: SELECT NUMBER OF rows for all tables oracle 
Sql :: python escape string for sql 
Sql :: cmd to rename a collumn name in sql 
Sql :: possgress drop if exists view 
Sql :: mysql db size 
Sql :: How to reset forgotten postgresql password 
Sql :: How to Add a Default Value to a Column in MS SQL Server 
Sql :: mysql error incompatible with sql_mode=only_full_group_by 
Sql :: array out of range mql4 
Sql :: sql problems 
Sql :: To change the database owner in SQL server 
Sql :: psql connect 
Sql :: clone table structure mysql 
Sql :: how to know the username of postgresql 
Sql :: postgresql left join distinct on 
Sql :: can you update NULL in sql 
Sql :: what is the default password for sql server sa 
Sql :: mysql date time string format python 
Sql :: get name of day in sql 
Sql :: mysql CAST(amount as float) 
Sql :: postgres copy table from one schema to another 
Sql :: SHOW COLUMNS Statement 
Sql :: postgresql get difference between two dates 
Sql :: sql drop default 
Sql :: postgresql export database 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =