Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Use the mysqldump.exe command line tool to backup the data in your volunteer database. To access the mysqldump.exe tool, start the MySQL command line tool.
Use the mysqldump.exe command line tool to backup the data in your volunteer database.
To access the mysqldump.exe tool, start the MySQL command line tool.
Use the quit command to exit to the system command prompt.
Run mysqldump.exe and direct the output of the backup to an appropriately named file.
Create a new database and restore the database from the backup to the new database. Submit a screenshot to document the restoration of the data to a new database.
Write SQL CREATE TABLE statements and run them to create three new tables ADDRESS PHONE, AND EMAIL to split out the contact information for your volunteers that is currently contained in the PERSON table.
Each table should have a unique primary key and foreign key constraint reference to the PERSON table.
Save your SQL statements to a text file using the MySQL tee command and document the process with screenshots.
After creating the new tables in Step write and run SQL to insert the relevant data for the volunteers in the new tables.
Save your SQL statements to a text file using the MySQL tee command and document the process with screenshots.
Modify the PERSON table using the ALTER TABLE statement to remove the columns for the data moved to the new tables.
Save your SQL statements to a text file using the MySQL tee command and document the process with screenshots.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started