MIS 610 Full Course GCU

$400

Description

MIS 610 Full Course GCU

MIS 610 Full Course Discussions GCU

MIS 610 Topic 1 DQ 1

Describe the difference between static and dynamic embedded SQL. Provide two real-world examples of situations are most suitable to each of these procedural events along with a rationale for each.

MIS 610 Topic 1 DQ 2

Reflect on the content of the Topic Materials and discuss the following.

  1. Explain how you used the knowledge you gained from the Topic Materials to complete the topic assignment.
  2. Discuss the workplace relevant “takeaways” you gained from this topic and provide an example of how you could apply this knowledge to a workplace project or scenario.

MIS 610 Topic 2 DQ 1

Review the Topic Material “Dirty Secrets of the CASE Expression.” Based on this article and the other topic readings, identify one limitation you could encounter in the workplace and describe strategies for circumventing it. Justify your ideas using support from the Topic Materials or relevant industry examples.

MIS 610 Topic 2 DQ 2

With CASE data studies, you are technically manipulating the data. Explain how you would know if you are looking at a report that had modified data on it. If data have been modified, explain how you could identify what specific data was changed. Discuss three common reasons data might be modified. Explain ways that data manipulation could become an ethical concern. Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 3 DQ 1

Explain how a UNION function operates and how the resulting data is intended to be used. Discuss the weaknesses that exist, and strategies for making the process stronger to deliver a better end result. Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 3 DQ 2

Explain why data integrity is critical to performing unions or subqueries. Identify downstream effects that may result from inferior or substandard data. Describe measures one can take to ensure data integrity before beginning analysis in order to avoid poor results. Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 4 DQ 1

Using your experiences thus far regarding NULL values and aggregation, discuss when it is a good idea to assume there might be NULL data in your records. Explain why extra coding may be worthwhile. Discuss whether one should only do the extra work involved in this process when there is an issue. Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 4 DQ 2

Determinism of a function is one of several properties of user-defined functions that determine the ability of SQL to index results. When and for what purposes would you choose to use deterministic versus nondeterministic functions to arrive at your desired results? Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 5 DQ 1

Explain why it may be more efficient for a company to utilize an RDBMS based on workforce skill and availability. Discuss how a company might be able reduce costs through using an OODMS instead. Identify current or proposed/future developments that might influence a business to continue “as is” or leap to a different system. Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 5 DQ 2

Describe four key features of an object database management group (ODMG) and what makes this technology so appealing for so many different types of users. From those you previously identified, select the key feature you believe to be the most essential and versatile, and provide your predictions of how this specific feature will be or could be improved to make it even more useful in the future. Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 6 DQ 1

Of the two object-capable data programming methods, what attributes of object relational design make it the more preferred method? Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 6 DQ 2

Some consider SQL to be an ORDBMS due to several recently implemented features it provides, but most consider it an RDBMS. Oracle once touted itself as an ORDBMS in Release 8, but later retracted that statement in Release 8.1 (while retaining key desirable organizational features). What programs are actually considered “object based”? Select a specific program and explain both its functionality and advantages to a business. Justify your ideas with support from the Topic Materials or relevant industry examples.

MIS 610 Topic 7 DQ 1

Referring to the topic reading “Whatever Happened to Object-Oriented Databases?”, do you agree with the position that an object-oriented database is a niche market? Provide your assessment of the author’s stance, supporting your rationale with findings from the literature or relevant examples from the field.

MIS 610 Topic 7 DQ 2

Google and Amazon have done some amazing work regarding their database management systems. However, one of the constants is a lack of standardization. How do new DBMS products entering the market, such as graph databases, help or hinder companies trying to modernize? Justify your ideas with support from the literature or relevant industry examples.

MIS 610 Topic 8 DQ 1

You have employed several commonly used database automation tools in your work throughout the course. Discuss which of these tools has proven to be the most useful overall. Provide your reflective analysis with support from your work, an industry example, or the Topic Materials.

MIS 610 Topic 8 DQ 2

Looking forward to current and future needs in your own industry or one in which you desire to work, describe how the more advanced SQL server integration services (SSIS) data migration software, SQL server analysis services (SSAS) online analytical processing technology, or SQL server reporting services (SSRS) report software could be useful for the industry’s current needs as well as to propel growth. Justify your ideas with support from the Topic Materials or relevant industry examples.

 

MIS 610 Full Course Assignments GCU

 

MIS 610 Topic 1 Query Building

The purpose of this assignment is to demonstrate query building skills.

For this assignment, you will construct queries using both static and dynamic word problems for each of five scenarios. You will use Microsoft SQL Server 2016 Developer Edition and the content from the AdventureWorks 2016 and Scripts for SQL Server 2016 CTP3 to complete the assignment.

Please note that when SQL queries are run, results are generated in the form of data. This data should be exported and saved to Excel for a visual check of accuracy.

Create a Word document that includes the SQL queries used to explore the database tables, and answer the following questions.

Query Scenarios

Problem One

In your new job, you realize you will be calling up the “HumanResources.Employee” table on a frequent basis to answer questions from your manager. Using what you have learned thus far about stored procedures, create an executable “Employees” dataset that will allow you to quickly reference all records in that dataset. However, note that a stored procedure cannot be used in a SELECT statement after it has been created; it simply allows for a quick command to call up a preset data query you have made.

Problem Two

While a stored procedure is an effective method to review a static dataset, you realize the requirements for questions posed to you change frequently. Your manager often will request information specific to a given job title. You realize you need to create a function that allows a variable to be changed in your SELECT statement each time you run it.

Note: To develop the answer to this problem, set the variable to “Design Engineer” and call the Function @JobTitle.

Problem Three

Your manager wants to build an “Employee Time Off” calendar for the year for easy reference and has asked that you compile a list of vacation hours for each employee under his supervision. This task relates to the one you completed in Problem Two of this assignment, but will require that you restructure the code you developed from Problem Two to build a more complex query in or order to complete the task successfully. As with Problem Two, your manager will request this information often, and on an ongoing basis throughout the year. You realize you need to create a function that allows a variable to be changed in your query statement each time you run it so that you do not need to write new code for every request.

The fields you need to bring in are “First and Last Name” and “Sick and Vacation Hours.”

Note: To develop the answer to this problem, create a join from the person table First and Last Name.

Problem Four

Your manager would like you to classify employee work areas in the building using a color coding system that he developed. Since no such system exists in the company database, he has asked you to upload his personal Excel worksheet into the database as a new table. Using SQL Server Import and Export Wizard, load the “Roster” tab from the Excel file titled “Color Coding.” Write a SELECT statement once loaded to confirm that it loaded correctly.

Problem Five

Now that your color coding system is in place, your manager wants to know which employees  sit in the “Brown” section, as he will be relocating their desks in the future when the department is expanded. To provide him with this information, use the color coding system you developed for Problem Four, making sure to include the “Color Code,” “Job Title,” and concatenate “Last Name” “First Name” separated by a comma, calling the field “Full Name.”

General Requirements

Compile the Excel data file and Word document containing the SQL queries and answers to the questions into a .zip file and submit to your instructor.

APA style is not required, but solid academic writing is expected.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are not required to submit this assignment to LopesWrite.

 

MIS 610 Topic 2 CASE Query Errors

The purpose of this assignment is to evaluate and resolve query errors.

For this assignment, you will group data and resolve query errors via solutions appropriate to each. You will use Microsoft SQL Server 2016 Developer Edition and the content from the AdventureWorks 2016 and Scripts for SQL Server 2016 CTP3 to complete the assignment.

Please note that when SQL queries are run, results are generated in the form of data. This data should be exported and saved to Excel for a visual check of accuracy.

Create a Word document that includes the SQL queries used to explore the database tables, and answer the following questions.

Query Scenarios

Problem One

Your manager needs you to compile a list of all the products the company sells as well as the time required to manufacture them in order to provide this information to the sales department for the presentation of timelines in an upcoming company-wide sales meeting. Your manager specifically needs to know which products take (1) less than 4 days to manufacture, or (2) more than 4 days to manufacture. Looking at the “Production.Product” and using CASE logic, identify each product with a tag of “Under 4 days” or “More than 4 days” and title the field “Timeframe.”

Problem Two

Using the query you created from Problem One as a basis, your manager wants to know the numbers of products that fall into each of the two categories.

Note: This process requires two separate SUM statements using CASE logic through the “Manufacturing time.”

Problem Three

Also related to the upcoming sales meeting, the sales manager is building a report for which a list of states using a custom market name is required. Using the “Person.StateProvince” table, use CASE logic to turn “TerritoryID” into a named market for each of the following: Western Market, North Eastern Market, Mid-Western Market, South Western Market, and South Eastern Market. Make sure to include the “TerritoryID” and to order your results by this field.

Problem Four

The sales manager has also identified a need to know “Year to Date” sales by the new market segments using the same descriptions you developed in Problem Three.

Problem Five

Now that you have provided the sales manager with year-to-date sales by market segment in Problem Four, the sales manager would like you to provide year-to-date sales by state. This is not realistically possible through the existing company database setup. Explain why and what would be needed for the database to accomplish this dataset in the future.

General Requirements

Compile the Excel data file and Word document containing the SQL queries and answers to the questions into a .zip file and submit to your instructor.

APA style is not required, but solid academic writing is expected.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are not required to submit this assignment to LopesWrite.

 

MIS 610 Topic 3 UNIONS and Subqueries

The purpose of this assignment is to practice UNIONS and to use subqueries to analyze data in a record set.

For this assignment, you will analyze data to find similarities and UNION all data via a method that keeps the data uniform. You will use Microsoft SQL Server 2016 Developer Edition and the content from the AdventureWorks 2016 and Scripts for SQL Server 2016 CTP3 to complete the assignment.

Please note that when SQL queries are run, results are generated in the form of data. This data should be exported and saved to Excel for a visual check of accuracy.

Create a Word document that includes the SQL queries used to explore the database tables, and answer the following questions.

Query Scenarios

Problem One

As part of a yearly fundraising effort for the community, your manager has given you an Excel worksheet titled “Donations.” It includes all employees’ pledged donations for the year. The sheet consists of three tabs that correspond to the 3 months when employees were asked to submit pledges. Load this file into the AdventureWorks database through the Import and Export Wizard. Once loaded, use a UNION ALL statement to combine the three data sets into a temporary table called “#TotalDonations.”

Problem Two

Redoing the UNION ALL statement you created in Problem One, create a temporary table looking exclusively at “SUM of Donations by Month.” Title each of the three fields “Donations and Month” with the temporary table titled “#DonationsbyMonth.” When complete, provide the total of the final amount of donations raised.

Problem Three

Your manager e-mails you about the final results you provided in Problem Three, and believes you must have made a mistake when calculating the total donations. The amount is $100.00 less than the total amount calculated by the manager. The manager thinks it is possible that one employee might have accidently pledged $100.00 twice. Explain how this event might occur with a UNION ALL. Review the UNION ALL, and if there is an error, rewrite the first query with a UNION statement. Discuss whether the manager’s assumption was correct and explain why.

Problem Four

You receive an e-mail request from Human Resources requesting information about the last time a pay rate was changed for an employee. The employee’s “NationalIDNumber” is 486228782. Develop a subquery instead of an INNER JOIN to provide the answer to this request.

Note: A subquery is another method of writing a JOIN. It can be efficient when used at the correct times.

General Requirements

Compile the Excel data file and Word document containing the SQL queries and answers to the questions into a .zip file and submit to your instructor.

APA style is not required, but solid academic writing is expected.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are not required to submit this assignment to LopesWrite.

 

MIS 610 Topic 4 Aggregate Functions and NULL Values

The purpose of this assignment is to examine the use of aggregate functions, analyze queries that contain NULL values, and use CASE logic to resolve the data and arrive at a solution.

For this assignment, you will perform a set of exercises in which you will analyze data and develop corresponding aggregate functions to obtain the required information. You will use Microsoft SQL Server 2016 Developer Edition and the content from the AdventureWorks 2016 and Scripts for SQL Server 2016 CTP3 to complete the assignment.

Please note that when SQL queries are run, results are generated in the form of data. This data should be exported and saved to Excel for a visual check of accuracy.

Create a Word document that includes the SQL queries used to explore the database tables, and answer the following questions.

Query Scenarios

Problem One

The sales manager asks you to provide the average “Pretax Sales” amount throughout the years. Using the “Sales.SalesOrderHeader” table, what answer will you provide to the sales manager?

Problem Two

As part of an internal competition, the CEO requests that you provide the name of the employee who made the highest total single sale in 2014. This data needs to include the filter “Tax & Freight” using “OrderDate” for the year. The CEO has also requested that you provide the winner’s e-mail address so he can send a notification of congratulations.

Problem Three

Jo Berry’s manager indicated that Jo was taking paid time off this month. He wants to ensure the system reflects this information. Import the “Hours” spreadsheet file into the AdventureWorks database. Add Jo Berry’s hours together for the month, and title the field “Monthly Hours.” Use the knowledge you have learned about NULL values to provide the solution to the manager.

Problem Four

The human resources manager wants to classify employees who were absent during the entire month as “Inactive.” Using a CASE statement, write a query that classifies employees as “Active” or “Inactive” in a column titled “Status” with “Full Name” (First and Last) also listed.

Problem Five

Using the same parameters as Problem Four, rewrite the query to provide only the list of “Inactive” employees.

General Requirements

Compile the Excel data file and Word document containing the SQL queries and answers to the questions into a .zip file and submit to your instructor.

APA style is not required, but solid academic writing is expected.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are not required to submit this assignment to LopesWrite.

 

MIS 610 Topic 5 RDBMS and OODBMS Short Answer Questions

The purpose of this assignment is to identify similarities and differences between an RDBMS and an OODBMS.

Using the textbook, Topic Materials, and your own research, write a 100-250 word response to each question below. Cite the sources used for answering each question, and include real-world examples in the answer to each question.

  1. Define a tuple. How and where does a tuple fit into relational database theory? Why is this an important concept to understand?
  2. How does an object-oriented database management system (OODMS) compare to a relational database management system (RDBMS)? What are the key features of an OODBMS, and how can a developer utilize them?
  3. What is the difference between a Relation in an RDBMS and a Class in an OODBMS? Are they interchangeable, If so, explain how.
  4. Contrast an object-relational database management system (ORDBMS) with an RDBMS? Describe the unique features and provide an example of how an OODBMS might be preferable to an RDBMS.
  5. Contrast the attributes and functionality of an OODBMS versus an ORDBMS. Explain why RDBMS platforms are used more frequently in business than either of these object-oriented platforms.
  6. From an entity relationship diagram (ERD) standpoint, would there be a significant difference between using an ORDMBS versus an RDBMS? Explain why or why not, and discuss specific instances in which differences are the deciding factor.

Prepare this assignment according to the guidelines found in the APA Style Guide, located in the Student Success Center. An abstract is not required.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are required to submit this assignment to LopesWrite. Please refer to the directions in the Student Success Center.

 

MIS 610 Topic 6 Object Relational Design Short Answer Questions

The purpose of this assignment is to explain and discuss object-relational design and implementation techniques.

Using the textbook, Topic Materials, and your own research, write a 100-250 word response to each question below. Cite the sources used for answering each question.

  1. Describe simple and complex data types. Provide examples of each and describe their typical uses in a business environment.
  2. Explain what an impedance mismatch is and why is this important in analytics. Discuss measures a business can institute to address this problem. Describe barriers that might exist for a business to institute such measures.
  3. Explain an array and its pros and cons. Explain why this structure may be preferred for storing/referencing data.

Prepare this assignment according to the guidelines found in the APA Style Guide, located in the Student Success Center. An abstract is not required.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are required to submit this assignment to LopesWrite. Please refer to the directions in the Student Success Center.

 

MIS 610 Topic 7 Object Based Database Design Short Answer Questions

The purpose of this assignment is to compare and contrast relational and object-oriented databases.

Using the textbook, Topic Materials, and your own research, write a 100-250 word response to each question below. Cite the sources used for answering each question.

  1. Object query language (OQL) was created by the object database management group (ODMG) and is based on structured query language (SQL). The languages are similar in many ways, but they feature some slight and some not so slight differences. Explain why ODMG created and developed OQL.
  2. Discuss why developing standards is important for a database management system. Describe issues OODBMS systems face and explain how those issues have allowed RDBMS systems to thrive.
  3. Explain the “4th Generation Standard.” Discuss how this standard will change the object-based environment. Describe features that will help or hinder its success.

Prepare this assignment according to the guidelines found in the APA Style Guide, located in the Student Success Center. An abstract is not required.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are required to submit this assignment to LopesWrite. Please refer to the directions in the Student Success Center.

 

MIS 610 Topic 8 Benchmark Database Query and Reporting Project Worked Time by Department

The purpose of this assignment is to organize, query, and report data using a database.

The final project consist of two parts and requires you to utilize the skills and knowledge you have learned throughout this course to create and implement a complex set of queries and present the data you have assembled into a PowerPoint presentation. It is essential for you to study the database structure and plan ahead throughout the course to ensure you will have the time to prepare and submit this assignment successfully.

Part One

For this assignment, you will use Microsoft SQL Server 2016 Developer Edition and the content from the AdventureWorks 2016 and Scripts for SQL Server 2016 CTP3 to complete the assignment.

Please note that when SQL queries are run, results are generated in the form of data. This data should be exported and saved to Excel for a visual check of accuracy.

Create a Word document that includes the SQL queries used to explore the database tables, and address the problem.

Problem: The new scheduling manager has asked for a summary of hours worked each week by department. Accounting for NULL values, use the imported “Hours” sheet from the Topic 4 assignment again to SUM by department title for all employees on the table.

Part Two

Using the dataset you have developed, select one of the following groups to present your findings to at the upcoming company meeting: Senior Management, Engineering, Research and Development, or Marketing. In your presentation, model your data into a hypothetical problem that identifies how this information will impact the operations of the specific target audience you have selected.

Create a 5-7 slide PowerPoint presentation to share your results with your selected group at the upcoming company meeting. Each slide should include speaker notes written in complete sentences.

General Requirements

Compile the Word, Excel, and PowerPoint documents into a .zip file and submit to your instructor.

While APA style is not required for the body of this assignment, solid academic writing is expected, and documentation of sources should be presented using APA formatting guidelines, which can be found in the APA Style Guide, located in the Student Success Center.

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

You are required to submit this assignment to LopesWrite. Please refer to the direction in the Student Success Center.

 

 

Course Tutor helps in providing the best essay writing service. If you need 100% original papers for MIS 610 Full Course GCU, then contact us through call or live chat.

MIS 610 Full Course GCU

Best MIS 610 Full Course GCU
MIS 610 Full Course GCU

ACCT 553 DeVryBIAM 500 DeVryCIS 500 STRCIS 558 STRENG 105 GCUFIN 390 DeVryFIN 504 GCUHCA 545 GCUHCA 699 GCUHLT 306 GCUHLT 362 GCUHLT 555 GCUHLT 610 GCUHLT 665 GCUHOSP 594 DeVryHRM 600 DeVryMAT 144 GCUMGMT 600MGT 599 STRMGT 655 GCUMKT 373 GCUPSY 362 GCUPSY 565 GCUPSY 575 GCUPSY 665 GCUSOC 102 GCUSOC 320 GCUSOC 372 GCUSOC 412 GCUNSG 6440 SUHIM 515 GCUNSG 4029 SUHIM 615 GCUNSG 3029 SUNSG 4055 SUNSG 6630 SUNSG 6005 SUCRMJ 310PSY 510 GCUCRMJ 300 DevryCRMJ 425SPD 200 GCU, HLT 490 GCU ,ECH 340 GCU , ECH 440 GCU , ECH 355 GCU ,ECH 350 GCU ,LDR 461 GCU ,ECH 425 GCU ,REL 212 STR ,SCI 115 STR ,CIS 505 STR ,JUS 652 GCUMGT 640 GCUCIS 527 STRSOC 436 GCU,ACC 502 GCUFIN 504 GCU ,MATH 260 DeVry ,ETHC 445 DeVry ,ECET 220 DeVry , CARD 405 DeVryNETW 203 DeVryNETW 205 DeVryECET 365 DeVry ,MATH 270 DeVry ,PHYS 310 DeVry, BIB 106 GCU ,CIS 512 STR ,SYM 506 GCU ,ECN 601 GCU  ,BIAM 570 DeVryPSY 402 GCU , SOC 480 GCU , HUM 112 STR , PHI 210 STR,  ACC 667 GCU,  ACC 622 GCU,  ACC 623 GCU,  ENTR 510 DeVryDNP 840 GCU , BIO 550 GCU , HRM 420 DeVry , ACC 690 GCU  , HCA 807 GCU , ACC 650 GCU , REET 420 DeVry , MIS 605 GCU , ECET 350 DeVry , ENTR 530 DeVry , PSY 102 GCU , MIS 600 GCU , TCH 539 GCU , SPD 300 GCU , HCA 812 GCU , TCH 520 GCU , MGT 410 GCU , MIS 610 GCU

 

 

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Add to cart