-67%

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

$89.99$275.00

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

I. OBJECTIVES

  1. Understand how to write a report.

II. PARTS LIST

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

Description

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

I. OBJECTIVES

  1. Understand how to write a report.

II. PARTS LIST

  1. EDUPE Omnymbus Environment (https://devry.edupe.net:8300); and/or
  2. MySQL (dev.mysql.com/downloads).

III. PROCEDURE
By now you have set up either the Omnymbus environment or the MySQL Server Community environment, or both. You may do the labs in this class on your own computer equipped with MySQL or you may use the MySQL environment hosted by the vendor Omnymbus. You may even use both.
Lab Procedure Continued (common to both environments)

  1. Using a programming language, create two reports based on the Baseball database.
    1. Create a report to print the upcoming schedule.
    2. Create a report to show the team rosters.

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB

I. OBJECTIVES

  1. Understand how to add, change, and delete records.

II. PARTS LIST

  1. EDUPE Omnymbus Environment (https://devry.edupe.net:8300); and/or
  2. MySQL (dev.mysql.com/downloads).

III. PROCEDURE
By now you have set up either the Omnymbus environment or the MySQL Server Community environment, or both. You may do the labs in this class on your own computer equipped with MySQL or you may use the MySQL environment hosted by the vendor Omnymbus. You may even use both.
Lab Procedure Continued (common to both environments)

  1. Create a Store Procedure to update the HomeTeamScore and the AwayTeamScore for the current record every time the procedure is called.
  2. Write a program to step through the “Season” table displaying each record and allowing the user to enter the final score for the game. Call your stored procedure from within the program updating the “Season” table.
  3. Set up an event to back up your database at midnight every Friday night.

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

DBM405A Lab 5 Views Backup and Restore Procedures

I. OBJECTIVES

  1. Understand and become familiar with Tables and Indexes.

II. PARTS LIST

  1. EDUPE Omnymbus Environment (https://devry.edupe.net:8300); and/or
  2. MySQL (dev.mysql.com/downloads).

III. PROCEDURE
By now you have set up either the Omnymbus environment or the MySQL Server Community environment, or both. You may do the labs in this class on your own computer equipped with MySQL or you may use the MySQL environment hosted by the vendor Omnymbus. You may even use both.
Lab Procedure Continued (common to both environments)

  1. Create a view of the database showing the Team Name (TName) and the Players last name (LastName) for all Players in the system.
  2. Create a view of the database showing the current schedule. The view should show the HomeTeam name (TName) and the AwayTeam name (TName) and the PlayDate. The listing should be in chronological order.
  3. Set up a backup procedure and back up your “Baseball” database.
  4. Establish a restore procedure and restore your “Baseball” database from the backup.

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

DBM405A Lab 4 NextSeason Season Tables Indexes and Report

I. OBJECTIVES

  1. Understand and become familiar with Tables and Indexes.

II. PARTS LIST

  1. EDUPE Omnymbus Environment (https://devry.edupe.net:8300); and/or
  2. MySQL (dev.mysql.com/downloads).

III. PROCEDURE
By now you have set up either the Omnymbus environment or the MySQL Server Community environment or both. You may do the labs in this class on your own computer equipped with MySQL or you may use the MySQL environment hosted by the vendor Omnymbus. You may even use both.
Lab Procedure Continued (common to both environments)

  1. Create another table called “NextSeason” by copying the structure of the table “Season” and copying all the data from “Season” into the new table.
  2. Change the structure of “NextSeason” by adding the following field:
    1. Innings (Integer)
  3. Change the structure of “PastSeasons” by adding the following field:
    1. Innings (Integer)
  4. Delete the table “Season”.
  5. Rename the table “NextSeason” to “Season”.
  6. Create an index on the table “Teams”, indexing on “TeamCode”.
  7. Create an index on the table “Players”, indexing on “Team”.
  8. Based on the indexes, create a report or display of each team and the associated players on each team.

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

DBM405A Lab 3 Baseball Database and Season Table

I. OBJECTIVES

  1. Understand and become familiar with Table Manipulation.

II. PARTS LIST

  1. EDUPE Omnymbus Environment (https://devry.edupe.net:8300); and/or
  2. MySQL (dev.mysql.com/downloads).

III. PROCEDURE
By now you have set up either the Omnymbus environment or the MySQL Server Community environment, or both. You may do the labs in this class on your own computer equipped with MySQL or you may use the MySQL environment hosted by the vendor Omnymbus. You may even use both.
Lab Procedure Continued (common to both environments)

  1. Add a table named “Season” to your Baseball database, which consists of the following fields:
    1. Season (Integer)
    2. PlayDate (date)
    3. HomeTeam (character 5)
    4. HomeTeamScore (Integer)
    5. AwayTeam (character 5)
    6. AwayTeamScore (Integer)
  2. Populate the table with 56 unique games where each plays the other 7 twice (once as the home team and once as the away team). Make the season equal to this year. Leave the scores blank and use any date for the PlayDate.
  3. Create another table called “PastSeasons” by copying the structure of the table “Season” and copying all the data from “Season” into the new table.
  4. Replace the Season field in the table Season with next year for all records.
  5. Unload the Season table data to a comma-delimited file.
  6. Load the comma-delimited file to PastSeasons table, appending the data to the data that is already there.

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

DBM405A Lab 2 Baseball Database Count Orderby and Where clause

I. OBJECTIVES

  1. Get access to a MySQL environment.
  2. Familiarize yourself with the environment.

II. PARTS LIST

  1. EDUPE Omnymbus Environment (https://devry.edupe.net:8300); and/or
  2. MySQL (dev.mysql.com/downloads).

III. PROCEDURE
You may do the labs in this class on your own computer equipped with MySQL or you may use the MySQL environment hosted by the vendor Omnymbus. You may even use both.
Using MySQL on your own computer means downloading a version from dev.mysql.com/downloads and installing the database engine on your computer. This can be done easily and there are a number of resources on the web to help you with this process.
You may also use the MySQL environment hosted by Omnymbus by logging in with your credentials to https://devry.edupe.net:8300.
Using the first approach will give you experience writing programs on a desktop computer and accessing a database. Using the second approach will give you experience writing applications that access a database in a cloud environment.
You are encouraged to use both approaches.
In the previous lab (Week 1), you have established a database environment (either MySQL Community Server or the Omnymbus environment). You may continue to use that environment or you my return to Week 1 to set up the alternate environment.
Lab Procedure Continued (common to both environments)

  1. Use the database named “Baseball” created in last week’s lab.
  2. Use the table named “Teams” which consists of the following fields:
    1. TeamCode (character 5)
    2. TName (character 20)
    3. TAddress (character 30)
    4. TCity (character 20)
    5. TState (character 2)
    6. TZip (character 9)
    7. Wins (integer)
    8. Losses (integer)
  3. You should have a table with 8 teams.
  4. Use the table named “Players”, which consists of the following fields:
    1. FirstName (character 20)
    2. LastName (character 30)
    3. MidInit (character 1)
    4. PAddress (character 30)
    5. PCity (character 20)
    6. PState (character 2)
    7. PZip (character 9)
    8. Phone (character 11)
    9. Team (character 5)
  5. You should have a table with 80 players (10 on each team). Players are identified by the Team field which matches the TeamCode in the Teams table.
  6. Demonstrate the use of the WHERE clause by selecting and displaying only the players from one team.
  7. Demonstrate the use of the COUNT function by determining how many players are on each team and displaying the results.
  8. For each City, find the number of players who list their home in that city.
  9. Demonstrate the ORDER BY clause by listing all the players in alphabetical order by last name within Team.

DBM 405A DBM405A DBM/405A ENTIRE COURSE HELP – DEVRY UNIVERSITY

  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters

DBM405A Lab 1 Baseball Database and Team data

I. OBJECTIVES

  1. Get access to a MySQL environment.
  2. Familiarize yourself with the environment.

II. PARTS LIST

  1. EDUPE Omnymbus Environment (https://devry.edupe.net:8300); and/or
  2. MySQL (dev.mysql.com/downloads).

III. PROCEDURE
You may do the labs in this class on your own computer equipped with MySQL or you may use the MySQL environment hosted by the vendor Omnymbus. You may even use both.
Using MySQL on your own computer means downloading a version from dev.mysql.com/downloads and installing the database engine on your computer. This can be done easily and there are a number of resources on the web to help you with this process.
You may also use the MySQL environment hosted by Omnymbus by logging in with your credentials to https://devry.edupe.net:8300.
Using the first approach will give you experience writing programs on a desktop computer and accessing a database. Using the second approach will give you experience writing applications that access a database in a cloud environment.
You are encouraged to use both approaches.
Desktop MySQL Environment

  1. Download the MySQL Community Server from the http://dev.mysql.com/downloads/ website.
  2. Install MySQL on your computer.
  3. Open the MySQL Environment on your computer.

Omnymbus Environment

  1. Login to the MySQL Omnymbus Environment by following the instruction located in Doc Sharing (document titled “Login MySQL Omnymbus Environment”).

Lab Procedure Continued (common to both environments)

  1. Create a database named “Baseball”.
  2. Create a table named “Teams” and add the following fields:
    1. TeamCode (character 5)
    2. TName (character 20)
    3. TAddress (character 30)
    4. TCity (character 20)
    5. TState (character 2)
    6. TZip (character 9)
    7. Wins (integer)
    8. Losses (integer)
  3. Populate the table with 8 teams.
  4. Create a table named “Players” and add the following fields:
    1. FirstName (character 20)
    2. LastName (character 30)
    3. MidInit (character 1)
    4. PAddress (character 30)
    5. PCity (character 20)
    6. PState (character 2)
    7. PZip (character 9)
    8. Phone (character 11)
    9. Team (character 5)
  5. Populate the table with 80 players (10 on each team). For the team, use the TeamCode from the first table to identify the Team the player is on.
  6. Display or list the data from both table to the screen or printer.
  • DBM405A Lab 1 Baseball Database and Team data,
  • DBM405A Lab 2 Baseball Database Count Orderby and Where clause,
  • DBM405A Lab 3 Baseball Database and Season Table,
  • DBM405A Lab 4 NextSeason Season Tables Indexes and Report,
  • DBM405A Lab 5 Views Backup and Restore Procedures,
  • DBM405A Lab 6 Stored Procedure HomeTeamScore and AwayTeamScore and Event to Backup DB,
  • DBM405A Lab 7 Reports in C# Programming Language for Upcoming Schedules and Team Rosters