https://github.com/al-ghaly/trigger-sequence-pairs
A simple PL/SQL Code to create a sequence/trigger pair for all the tables of an oracle database.
https://github.com/al-ghaly/trigger-sequence-pairs
oracle-database plsql sequence triggers
Last synced: about 1 month ago
JSON representation
A simple PL/SQL Code to create a sequence/trigger pair for all the tables of an oracle database.
- Host: GitHub
- URL: https://github.com/al-ghaly/trigger-sequence-pairs
- Owner: al-ghaly
- License: mit
- Created: 2023-05-28T15:08:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-10T09:36:33.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T06:48:06.644Z (3 months ago)
- Topics: oracle-database, plsql, sequence, triggers
- Language: PLSQL
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Trigger Sequence Pairs
## A simple PL/SQL Code to create a sequence/trigger pair for all the tables of an oracle database.
### This code generates a trigger/sequence pair for all the database's tables to simulate the identity behavior which does not exist in Oracle DB.
instead of having to specify a Primary key for each insert statement, this code will just auto fill the primary key value for you.