Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luckyforce/dbi-plsql-project-winter-22-23
DBI PLSQL Project for school
https://github.com/luckyforce/dbi-plsql-project-winter-22-23
Last synced: 10 days ago
JSON representation
DBI PLSQL Project for school
- Host: GitHub
- URL: https://github.com/luckyforce/dbi-plsql-project-winter-22-23
- Owner: LuckyForce
- Created: 2023-01-03T00:34:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T08:24:22.000Z (almost 2 years ago)
- Last Synced: 2023-10-09T10:49:43.817Z (about 1 year ago)
- Size: 638 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DBI-PLSQL-Project-Winter-22-23
DBI PLSQL Project for school
## Plan
- [x] create tables at least 4
- [x] insert data
- [x] create procedures at least 2
- [x] create functions at least 2
- [x] test business logic## Install
### Create User
```sql
-- After IDENTIFIED BY comes the password, in our case oracle.
CREATE USER Schauer_Project_WS IDENTIFIED BY oracle;
-- give the user all privileges
GRANT CONNECT, RESOURCE, DBA TO Schauer_Project_WS;
```### Create Tables
Using create.sql
### Insert Data
Using insert.sql
### Load Functions
Using functions.sql
### Load Procedures
Using procedures.sql