Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask DBMS Expert


Home >> DBMS

Building the Human Resources Database

Description of LASA:
For this assignment, you will build the database that you designed in M3 Assignment 2 LASA 1 and populate it with employee information. Then, you will execute Structured Query Language (SQL) statements against the database in order to insert, update, modify, and display the information contained in the database.

Scenario:

The president of Altair Software has reviewed and approved the database design that you completed in M3 Assignment 2 LASA 1. You will now build, configure, and populate the database. Additionally, since Altair Software is a fast-growing company, there have been several changes in salary and personnel since you designed the database. You will need to write SQL statements to insert, update, and remove records in the database, as well as a statement to display the records and run them against the database to see the results.

The changes are as follows:

1. Both vice presidents easily surpassed their goals and objectives for the prior year and are being given salary raises. The new salary for the vice president position is $80,000.

2. To attract talented programmers directly out of college, Altair Software has decided to raise the base salary for both Programmer I and Programmer II by $5,000 to $40,000 and $50,000, respectively.

3. Programmer Arlene Smith was recruited by a competitor but in order to keep her with Altair Software, the company promoted her to the newly created position of Programmer III, with a salary of $60,000.

4. Altair Software hired two new employees:

a.      

Employee ID

402

Employee Last Name

Smith

Employee First Name

Frances

Street Address

4545 Oxbow Lane

City

Anytown

State

AZ

ZIP Code

85331

Department

DEV

Manager

John Smith

Position

Programmer I

Salary

$40,000

b.     

Employee ID

403

Employee Last Name

Smith

Employee First Name

Greg

Street Address

18951 Silverlake Avenue

City

Sometown

State

AZ

ZIP Code

85332

Department

SALES

Manager

Jane Smith

Position

Sales Representative

Salary

$25,000

5. Sales Representative Eric Smith left Altair Software to return to school to earn a bachelor's degree.

6. Programmer I, Bob Smith, moved out of state.

Tasks:

Note: As you complete the steps below, be sure to save your work often.

A. Create the Database for the Company
1. Using Microsoft Access 2010, create the tables that you designed inM3 Assignment 2 LASA 1. Be sure to use your third normal formtables. Enter each data field name in each table and save each table as you work.
2. Open each table in Design View (right-click the table in the navigation pane and click Design View) and set the appropriate field to be thePrimary Key.
3. While in Design View, ensure that each field is configured for the right type of data (text or number, for instance) and set the field size appropriately.
4. On the Database Tools tab, in the Relationships group, clickRelationships. Using your entity-relationship diagram as a guide, create the appropriate relationships between the tables by matching the appropriate data fields from each table.
5. Open each table (double-click the table in the navigation pane) and manually enter the appropriate company data. When you are done, each table should contain the same data that was entered in your spreadsheet from M3 Assignment 2 LASA 1.

B. Display the Information in the Database
6. Create an SQL query to display all the information in the database by following the steps below:
a. On the Create tab, in the Queries group, click Query Design.
b. Select all the tables in your database by holding the Ctrl key and clicking on each of the tables.
c. Click the Add button and then the Close button. The tables will be added to Design View window and you will see the relationships between the tables displayed.
d. Refer to M3 Assignment 2 LASA 1 and add each of the data fields in the order in which they are listed in M3 Assignment 2 LASA 1 to the query by double-clicking each field name in the appropriate table. You will see the query being built in theDesign View window.
e. On the Query Tools Design tab, in the Results group, click theRun button. This will execute the query against the database.
f. Review the report. When you are satisfied, close the results of the query and click Yes when prompted to save the changes. Name the query "Display Employee Information".
g. The query will now appear in the navigation pane. Right-click the query in the navigation pane, select Export, and then clickPDF or XPS.

Note: For components C, D, and E, you will use SQL View to write simple SQL statements to modify the database. To enter SQL View, complete the following steps:
1. On the Create tab, in the Queries group, click Query Design.
2. When prompted to add tables, click the Close button.
3. On the Query Tools Design tab, in the Results group, click on the down arrow below the word View and select SQL View. This is where you will compose your SQL statements.
4. To run your SQL statements against the database, click the Runbutton in the Results group.

C. Insert Records into the Database
1. Create an SQL query to create a new position entitled "Programmer III" with a salary of $60,000. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Insert New Position".
2. Create an SQL query to create a new employee record for Frances Smith. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Insert New Programmer".
3. Create an SQL query to create a new employee record for Greg Smith. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Insert New Sales Representative".

D. Update Records in the Database
1. Create an SQL query to update Arlene Smith to Programmer III. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Update Employee".
2. Create an SQL query to update the salary for the Vice President position to $80,000. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Update Vice President Salary".
3. Create an SQL query to update the salary for the Programmer I position to $40,000. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Update Programmer I Salary".
4. Create an SQL query to update the salary for the Programmer II position to $50,000. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Update Programmer II Salary".

E. Delete Records from the Database
1. Create an SQL query to delete Eric Smith from the database. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Delete Sales Representative".
2. Create an SQL query to delete Bob Smith from the database. Run the query against the database. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as "Delete Programmer I".
3. Create a 1- to 2-page Microsoft Word document that includes answers to the following questions:
a. When an employee leaves Altair Software, the company deletes the employee record from the human resources database. Is this a good practice? Why or why not? How would you suggest the company handle employee separations?

F. Display the Information in the Database
1. Repeat Step B.6.g and name the PDF as M5_A1_Lastname_Firstname_EmpInfoAfter.PDF.
G. Compile SQL Queries and Database Reports for Submission

1. For each of the ten SQL queries you have created, perform the following steps:
a. Open the query in Design View (right-click the query in the navigation pane and click Design View).
b. On the Query Tools Design tab, in the Results group, click on the down arrow below the word View and select SQL View.
c. Copy the entire SQL statement and paste it into a Microsoft Word document.

2. Create a 2- to 3-page document in Microsoft Word and paste all of the SQL statements you created in Step E.3. Label each statement with the appropriate name, e.g., "Update Employee".

DBMS, Programming

  • Category:- DBMS
  • Reference No.:- M92358636
  • Price:- $30

Priced at Now at $30, Verified Solution

Have any Question?


Related Questions in DBMS

Question 1 what isdata-manipulation language dml there are

Question: 1. What isData-Manipulation Language (DML)? There are four types of access in DML, explain each one. 2. Assume we have a Library Database consists of the following relations: author(author_id, first_name, last_ ...

Query 1 the bookstore has decided to keep track of the

Query 1: The bookstore has decided to keep track of the vendors' information. In order to do this, one new table will be added to the database. The schema for this table, as related to the existing tables, is the followi ...

Q1 given the following file for assignment workercom

Q1. Given the following file for assignment worker.com, identify data anomalies that must be removed before data can be loaded in data warehouse. Worker_assignment ← -----------------on course web site File is available ...

Database design amp development assignment -assignment

Database Design & Development Assignment - Assignment title - Design and Implement a Relational Database for a local Print and Ink Refill Business. Learning Outcome - Use an appropriate design tool to design a relational ...

The relation memberstudentid organizationid roleid stores

The relation Member(StudentId, OrganizationId, RoleId) stores the membership information of student joining organization. For example, ('S1', 'O2', 'R3') indicates that student with Id 'S1' joined the organization with i ...

Assignmenta restaurant is designing a database to keep

Assignment A restaurant is designing a database to keep track of customer services. A customer is defined as a customer ID, name, address and a telephone number. Customers are served by employees. Each employee is define ...

Solve the following questions using oracle you are not

Solve the following questions using Oracle. You are not allowed to use the syntax of any DBMS other than Oracle. Make sure to upload an electronic copy of your solution to your CSC335 TRACE folder. Name the file hw4.sql. ...

Relational database design a given the following business

Relational Database Design A) Given the following business rules, identify entity types, attributes (at least two attributes for each entity, including the primary key) and relationships, and then draw an Entity-Relation ...

Sql query assignment -for this assignment you are to write

SQL Query Assignment - For this assignment you are to write your answers in a word document. This assignment is in three parts: Part A (reporting queries), Part B (query performance), Part C (query design). For this assi ...

Question create an erd for the following scenarioa small

Question: Create an ERD for the following scenario. A small company ABC wants a database to keep track of internal company information. Â Given the following information create an ERD. The ABC Company has several departm ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As