For Online Class Help or Private Tutoring Service email us at [email protected] or WhatsApp us at +1 (781) 656-7669

Homework Provider

 
  • Take My Class
  • Take My Exam
  • How It Works
  • Solutions
    • Questions
  • Testimonials
  • Blog
  • Who Are We
  • Contact Us
  • Take My Class
  • Take My Exam
  • How It Works
  • Solutions
    • Questions
  • Testimonials
  • Blog
  • Who Are We
  • Contact Us
  1. Home
  2. Questions
  3. DeVry MIS 561 iLab 2 Work with Dictionary and Create Relational Database

Contents

  • 1 DeVry MIS 561 iLab 2 Work with Dictionary and Create Relational Database
    • 1.1 Deliverables
    • 1.2 iLAB STEPS
  • 2 STATUS
  • 3 STATUS

DeVry MIS 561 iLab 2 Work with Dictionary and Create Relational Database

In this lab, you will prepare a Data Dictionary based on the list of elements. Also, your task will be determined by the tables, their relationships, primary and foreign keys. Based on this analysis, you will create Database Schema, relational tables, Entity –Relational Diagram (ERD), establish a connection to your local MySQL server, create the physical database and insert data to the tables.

MySQL provides two primary types of file management: dictionary-managed files and MySQL Workbench-managed files. As part of this iLab, you will need to supply some information as to how you would use both of these approaches, and you will have to discuss some of the advantages of each.

For step 3, you need access to your database instance. If you have any difficulties connecting your database instance, let’s take error messages, screenshots, descriptions of the situation to the graded threads and work as a team to resolve issues.
Now you are ready to proceed.

Deliverables

Your assignment will be graded based on the following.

Assignment Step Description Points

Step 1 Create Data Dictionary for provided elements (Word document) 15
Step 2 Create SCHEMA and database tables in MySQL Workbench 15
Step 3 Establish a connection to the MySQL Server (screenshots) 15
Step 4 Insert data to tables using MySQL Workbench 15

Total Lab Points 60

For Steps 1, 2, 3 and 4 create a single Word document and include the answers or solutions to all problems. Be sure to label your document and include your name and course number in the heading. Save your document as “yourname_Lab_2.docx.”

Submit both “yourname_Lab_2.docx” to the Dropbox for this week.

iLAB STEPS

STEP 1: Create Data Dictionary for provided elements

As the DBA for your company, you have decided to install a new version of the MySQL database to replace the current database version being used. The old database has become a constant headache and seems to be causing an overload on the disk drive’s I/O channels. Further analysis has also shown that two primary large tables are the main points of access. The new tables will be DEPT, EMPLOYEE, and BONUS.

Describe how you plan to compile the Data Dictionary and decide on the table’s structure with the new MySQL database.
Given a list of elements:

NN Attribute Name Column name Data Type

  1. Employee number (PK) EMPNO NUMBER(4)
  2. Employee first name EFNAME VARCHAR2(10)
  3. Employee last name ELNAME VARCHAR2(20)
  4. Job category (FK) JOB CATEGORY VARCHAR2(4)
  5. Manager MGR NUMBER (4)
  6. Hire date HIRE DATE DATE
  7. Salary SAL NUMBER (7.2)
  8. Commission COMM NUMBER (7.2)
  9. Department number(FK) DEPTNO NUMBER(2)
  10. Department name DEPTNAME VARCHAR2(14)
  11. Location LOC VARCHAR2(13)
  12. Job title JOBTITLE VARCHAR2(20)
  13. Job description JOBDESC VARCHAR2(20)
take-my-online-class-thumbnail
Play Video
pay-someone-to-take-my-online-class

Name: Jennifer Lucas
Status: Online ⬤
Classes Taken: 3878
Ratings: ⭐⭐⭐⭐⭐

Hire Me

STATUS

 

Compile Data Dictionary (in alphabetic order):
NN Attribute Name Column name Data Type Data element description Table name Primary key/ Foreign key indicator (P/F) Not NULL Default value
Department number DEPTNO NUMBER(2)
Place and save your answers in a Word document named “yourname_Lab_2.docx.”

STEP 2: Create SCHEMA and database tables in MySQL Workbench

2.a Create SCHEMA

Launch MySQL Workbench;
Click File and choose ‘New Model’;
Add Diagram:
Name: new schema name;
Press ‘Enter’ and new SCHEMA will be added;

2.b Create tables

In Model overview (top part of the screen) Click ‘Add Diagram’; Navigation pane shows new schema in Catalog Tree;
Place a new table on the free part of the screen;
Fill:
Table Name:
Column Name, Datatype; PK; NN; UQ; BIN; UN; ZF; AI; Default;
Press ‘Enter’
Continue to add all tables;

2.c Foreign key creation

Click on the bottom of the Form ‘Foreign key’ to establish the reference to parent table;
Choose the Reference table and Reference column;
Choose Foreign key options On Update and On Delete; Enter.

2.d Save database

Choose ‘File’ on the Toolbar and Save Model as on your folder.
Established databases are visible on the Home page.

STEP 3: Create and configure a new connection to the MySQL Server

Part 1 Create a new connection to the MySQL Server

Launch to MySQL Workbench Home page;
To add a connection, click the [+] icon to the right of the MySQL Connections title. This opens the Setup New Connection form:
Figure 3.1 Setup New Connection Form
Important note:
The Setup New Connection form features a Configure Server Management button (bottom left) that is required for the MySQL connection to perform tasks that require shell access to the host. For example, starting/stopping the MySQL instance or editing the configuration file Fill out the connection details and optionally click Configure Server Management to execute the Server Management wizard. Click OK to save the connection.
Important:
All connections opened by MySQL Workbench automatically set the client character set to utf8. Manually changing the client character set, such as using SET NAMES …, may cause MySQL Workbench to not correctly display the characters.
New connections are added to the Home page as a tile, and multiple connections may be opened simultaneously in MySQL Workbench.

Part 2 Configure a New MySQL Connection

  1. Click on ‘Local Instance MySQL’ and enter password;
  2. Local Instance MySQL screen appears;
  3. Click MySQL Workbench Home, click the database to be connected;
  4. EER Diagram screen appears;
  5. Choose Database on Toolbar and ‘Forward Engineering’ on the scroll menu;
    Forward Engineer to Database screen appears
    Set parameters for Connecting to a DBMS:
    Stored Connection: Select from saved connection settings; Click ‘Next’;
  6. Set Options for Database to be Created appears
    Select DROP objects before each CREATE object;
    Leave selected Include model attached script; Click ‘Next’;
  7. Select Objects to forwarding Engineer screen appears, enter the password again;
    Select Export MySQL Table Objects and click ‘Next’;
  8. Review the SQL script to be Executed screen appears for your review and saving to file or copy to Clipboard; Click ‘Next’;
  9. Forward Engineering Progress screen appears, enter the password again;
  10. Forward Engineering Progress shows the executed tasks.
  11. Click ‘Close’.

Please add Management, INSTANCE and PERFORMANCE screenshots for the created database to lab Report.

take-my-online-class-thumbnail
Play Video
pay-someone-to-take-my-online-class

Name: Jennifer Lucas
Status: Online ⬤
Classes Taken: 3878
Ratings: ⭐⭐⭐⭐⭐

Hire Me

STATUS

 

STEP 4: Insert data to tables using MySQL Workbench

  1. Copy INSERT statements for the given tables into the notepad;
  2. Launch to MySQL Workbench Home page;
  3. Choose created database instance; enter a password;
  4. New screen appears with the Connection name;
  5. Choose in Navigator your schema’s name;
  6. Copy script from Notepad to screen ‘Query 1’;
  7. Highlight executable rows, choose ‘Query’ on the Toolbar and Execute (All or Selection);
  8. The output will display the results of the execution.

Please select counters and rows in database tables and add screenshots to the lab Report.

Facebook
Twitter
Reddit
Pinterest
WhatsApp
Email
pdf-answers
Get Solved Answers
$2.99
Add to cart

GET QUICK PRICE ESTIMATE FOR THIS TASK

WHY CHOOSE US

  • Over 300 Experts to Work on Your Papers
  • 100% Privacy and Confidentiality
  • Amazing Discounts and Special Offers
  • Delivery within Every Deadline Level
  • Secure Payment Process
  • High-Quality Papers
  • 24/7 Live Customer Support
  • Free Revisions If Required
  • Fair & Cheap Prices
  • Rated 4.9/5 By Students

COMPLETED TASKS

SOCS 325 Week 8 Final Exam (Version 2)

July 13, 2020

SOCS 325 Week 8 Final Exam (Version 1)

July 13, 2020

SOCS 325 Week 8 Final Exam (Collection)

July 13, 2020

SOCS 325 Week 8 Collaborative Group Project Discussion

July 13, 2020

SOCS 325 Week 7 Bundle: Assignments + Group Project + Discussions

July 13, 2020

SOCS 325 Week 6 Bundle: Assignments + Discussions

July 13, 2020

SOCS 325 Week 5 Bundle: Assignments + Discussions

July 13, 2020

SOCS 325 Week 4 Midterm (Version 4)

July 13, 2020

Homework Provider

Facebook-f Twitter Pinterest Whatsapp Reddit Envelope

WE ACCEPT

PayPal
VISA Light
AMERICAN EXPRESS LIGHT
Bitcoin
  • Take My Online Class
  • Do My Case Study
  • Take My Online Exam
  • Online Class Help
  • Do My Homework
  • Take My Online Test
  • Original Homework Help
  • Premium Plagiarism Checker
  • Take My Midterm Exam
  • Research Paper Writing
  • Case Study Writing Help
  • Dissertation Writing Service
  • Online Coursework Help
  • Pay Someone To Write My Paper
  • Pay For Online Classes
  • Programming Classes Help
  • MyMathLab Answers
  • MyStatLab Answers
  • MyAccountingLab Answers
  • Need Help With Online Class
  • Cheap Assignment Help
  • Write My Online Essay
  • Online Student Problems
  • Math Homework Help

Contact Us

  • [email protected]
  • WhatsApp (781) 656-7669
  • twitter.com/hwp_helper
  • fb.com/homeworkprovidercom
  • Privacy Policy
  • Terms of Use
  • DMCA
  • Cookie Policy
  • Money Back Guarantee
  • Premium Plagiarism Checker
  • Contact Us

HomeworkProvider.com is not endorsed or affiliated by any university or college. The services provided are meant to assist the client by providing a guideline and the product provided is intended to be used for research or study purposes.

© 2013-2020 HomeworkProvider. All rights reserved.

ORDER THIS
WHATSAPP

Yay! You are just one step away to get rid of homework stress

  • How It Works
  • Testimonials
  • We are committed to ensuring that your information is secure with us
hire-an-expert-to-do-my-exam

Don't Waste Your Time Searching For Old Plagiarized Courses

Get Your Job Done By Our Anonymous Quality Experts

  • How It Works
  • Reviews
  • 24/7 Support
doc icon homework provider

CIS 155 Lab Help, Leslie​
Thank you for doing my CIS 115 lab. Homework Provider is the best.

Rated By Client
 5/5
doc icon homework provider

Dream Service, William
Thanks God, you came to my rescue. Thanks for your help.

Rated By Client
 5/5
doc icon homework provider

Mind blowing service, Eddie
I could have failed quite a few exams if you guys did not help me

Rated By Client
 5/5
doc icon homework provider

Got A grade in final exam, John
I still couldn’t believe I got an A grade in my exam. Highly vouched service.

Rated By Client
 5/5
doc icon homework provider

Linda, opted for private tutoring
Subscribed to get online class help for devry acct 212 week 1-8 class​​

Week 5 65%
doc icon homework provider

Acct Course Project, Ryan
Thanks a lot to my writer who followed all my requirements.

Rated By Client
 5/5
xls-icon

Genuine service, Steven
The research paper was much more than I expected! Thanks a lot.

Rated By Client
 4.5/5
doc icon homework provider

Karen, opted for private tutoring
Subscribed to get online class help for liberty BUSI 536 week 1-8 class.

Week 7 88%
doc icon homework provider

Marcus, opted for private tutoring
Subscribed to get online class help for ashford psy week 1-5 class.

Week 3 58%
doc icon homework provider

I got A grade in class, Amanda
with the help of homework provider I made it to pass my acct 505 class.

Rated By Client
 5/5