Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle show trigger code

SELECT DBMS_METADATA.get_ddl('TRIGGER', TRIGGER_NAME, OWNER)
FROM ALL_TRIGGERS		-- or DBA_TRIGGERS, USER_TRIGGERS
WHERE OWNER = 'swhema_name'
  AND TRIGGER_NAME = 'trigger_name';
Comment

PREVIOUS NEXT
Code Example
Sql :: copy all values of a column to another column in sql in same table 
Sql :: wordpress change user password sql 
Sql :: oracle scan source ddl 
Sql :: check constraint to check if date greater than todays date 
Sql :: table infromation in sql server 
Sql :: grant all privileges mysql 8.0.21 
Sql :: sql server alter table add column datetime default current_timestamp 
Sql :: mysql column start with string 
Sql :: convert int to varchar sql 
Sql :: Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. 
Sql :: describe sql server 
Sql :: xampp mysql database server is not starting mac m1 
Sql :: operadores en postgresql 
Sql :: how to truncate a table in databse 
Sql :: convert series number to date in sql 
Sql :: default password of mysql 
Sql :: date_add mysql 
Sql :: sql server check table exists 
Sql :: if then else sqlite 
Sql :: sql fillna 
Sql :: Configure MYSQL to run on another port number, other than the default port 3306 ubuntu linux 
Sql :: sql cast to integer 
Sql :: sql replace character in string in all records 
Sql :: oracle list user grants 
Sql :: oracle show execution plan 
Sql :: mysql select last 10 rows 
Sql :: sql server date format dd/mm/yyyy 
Sql :: sysdate in oracle sql 
Sql :: how to pass password mysql command line 
Sql :: convert date to datetime sql 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =