A relational database that was created with MySQL Workbench for managing work of the call center
contact_info
: Contact information about personstaff
: Information about the company's staffcustomer
: Customer's infoagent
: Info about call center's agentsupervisor
: Agent's supervisorcall
: Information about the callservice
: Services provided by the companyissue
: Customer's issuecall_service
: associative tablecall_issue
: associative table
backup
: Folder that contains full backup of the databasedata-files
: Folder that contains all data from the tables which is stored in.csv
filesdiagrams
: Folder that contains images of database diagrams created in dbdiagrams and with MySQL Workbenchqueries
: Folder that contains all SQL queries that are designed to create and manage the databasedatabase-presentation
: A.pptx
presentation of the Call Center Database.gitattributes
: File that gives attributes to pathnames
-
Download and Install MySQL:
- Visit the MySQL Downloads page
- Download the MySQL Installer for Windows
- Run the installer and follow the installation instructions
-
Open MySQL Command Line Client:
Run the following command to connect to your MySQL server as the root user:
-h 127.0.0.1 -P 3306 -u root -p
-h 127.0.0.1
: Specifies the hostname (localhost)-P 3306
: Specifies the port number (default MySQL port)-u root
: Specifies the username (root user)-p
: Prompts for the root user's password
-
Run the Backup File
Use the
source
command to execute the SQL backup file and restore the database:source path-to-repository/call-center-db/backup/database-backup.sql;
Replace
path-to-repository
with the actual path to your repository
-
Download and Install MySQL:
- Visit the MySQL Downloads page
- Select the appropriate MySQL package for your Linux distribution
- Follow the installation instructions provided on the MySQL website for your specific Linux distribution
-
Open Terminal and Launch MySQL Client:
Run the following command to connect to your MySQL server as the root user:
mysql -h 127.0.0.1 -P 3306 -u root -p
-h 127.0.0.1
: Specifies the hostname (localhost)-P 3306
: Specifies the port number (default MySQL port)-u root
: Specifies the username (root user)-p
: Prompts for the root user's password
-
Run the Backup File
Use the
source
command to execute the SQL backup file and restore the database:source path-to-repository/call-center-db/backup/database-backup.sql;
Replace
path-to-repository
with the actual path to your repository