This repository contains a PL/SQL script for a company.
- PL/SQL Script: Creating and managing database objects, users and roles.
- Data Manipulation: Demonstrates INSERT, UPDATE and DELETE operations on various tables.
- Trigger Implementation: Shows how to create and use database triggers for logging and auditing.
- Bash Script: Contains shell script for automating database task methods.
- Supporting Documentation: Provides screenshots and configuration files for reference.
-
Clone the repository:
git clone https://github.com/panoschron97/Company_Project_PLSQL.git cd Company_Project_PLSQL -
Set up your Oracle database environment. Ensure you have Oracle Database installed and configured.
-
Place the SQL script in a location accessible to your database client.
-
Connect to your Oracle database as a privileged user (e.g.,
SYS). -
Execute the main SQL script (
Company_Project_PLSQL.sql) to set up the database:sqlplus sys/password@your_database @Company_Project_PLSQL.sql
Replace
passwordwith the actual SYS password andyour_databasewith your database connection string.
- Oracle Database: Required for running the PL/SQL script.
- SQL*Plus: Oracle's command-line interface for executing SQL and PL/SQL.