Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle chain rules

SELECT OWNER,
       CHAIN_NAME,
       RULE_OWNER,
       RULE_NAME,
       CONDITION,
       ACTION,
       COMMENTS
FROM DBA_SCHEDULER_CHAIN_RULES
ORDER BY OWNER, CHAIN_NAME, RULE_OWNER, RULE_NAME;
Comment

oracle create chain rule

BEGIN
    DBMS_SCHEDULER.DEFINE_CHAIN_RULE(
            CHAIN_NAME => 'chain1',
            CONDITION => 'TRUE', -- starting step
            ACTION => 'START step1',
            RULE_NAME => 'chain1_rule1',
            COMMENTS => 'Starting chain');
END;
Comment

PREVIOUS NEXT
Code Example
Sql :: SQL print multiple variable 
Sql :: replace tab in sql 
Sql :: generate random & unique mysql string 
Sql :: update value sql 
Sql :: mysql GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 
Sql :: sqlite 3 mac 
Sql :: move files from one folder to another in sql server 
Sql :: sql unique constraint 
Sql :: convert rows into columns in oracle 
Sql :: sql script to remove default from column 
Sql :: substring sql 
Sql :: sqlite get date only 
Sql :: php get closest location by latitude longitude 
Sql :: delete table cassandra 
Sql :: remove root password mysql 
Sql :: using distinct and count together in sql 
Sql :: oracle alter table add column 
Sql :: what is non relational database 
Sql :: psql shell 
Sql :: postgress if 
Sql :: how to use query in nosql 
Sql :: SELECT everything from a sql table 
Sql :: creating sql table 
Sql :: pl sql auto increment 
Sql :: mysql string split to array 
Sql :: demmarrer un service mysql teminal cmd 
Sql :: how to check which table has data in mysql 
Sql :: show database not empty tables postgres 
Sql :: how to set all the time serveroutput on in oracle sql developer 
Sql :: create table kusto 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =