Free Essay

Smith Consulting Database Environment

In:

Submitted By SchoolBukol24
Words 2475
Pages 10
Smith Consulting Database Environment
Student Name
DBM/380
Date:
Instructor name:
Smith Consulting Database Environment
Smith Consulting’s current employee management system is inefficient involving a one table database, which produces duplication of many attributes throughout the system. The first iteration of database design provided a new version consisting of various one-to-many relationships to link its various modules. There are currently four modules that consist of an employees, jobs, skills, and projects tables. Smith Consulting has many employees filling many jobs descriptions. Furthermore, each job position may encompass many skills. Finally, many employees may be working on many projects. This first iteration of database design provided a database model that is inadequate and requires a return to the database development life cycle (DDLC) to incorporate the needed many-to-many relationships among tables for efficient allocation of human resources in order to better meet company customer needs. An analysis of the database environment has surfaced the various problems and constraints with the current system. This in turn has determined the scope and boundaries for the new system version. An overall objective and supporting objectives provided the needed data specifications, which is depicted in a logical model table and database schema.
Database Environment Analysis
The current database environment involves a one table database. This current system has various issues. For example, duplicate fields throughout the system lead to data abnormalities and data corruption. The design phase of the DDLC broke down this one table database into smaller tables of various entities and attributes encompassing one-to-many relationships. This database model too is also flawed and another iteration of database design is required to incorporate many-to-many relationships among appropriate relational tables for development of a successful relational database management system (RDBMS). However, one-to-many relational tables is the primary focus throughout further reading. The one-to-many RDBMS entities translate to tables that include employees, jobs, skills, and projects. Various inconsistencies were found, such as improper table linkage, data type usage, and missing attributes. For instance, the employee’s entity or table is missing a foreign key attribute called JOB_ID. This foreign key is needed in order to link the employee table to the job table. Without it there is no relationship between the two tables and no way to show what employees fill what job positions at Smith Consulting. Furthermore, various unique attributes defined by primary and foreign keys consist of one-to-many relationships. However, many of these unique attributes should consist of a many-to-many relationships. For example, the current system displays that a particular skill may be required in many jobs and many jobs may have only one skill. This is a one-to-many relationship. However a many-to-many relationship is needed because a particular job requires many skills. In this case multiple instances on both sides of the relationship are needed (Guzel, 2013). Acknowledging these problems provide efficient solutions for database design.
Problems and Constraints
The issues rely within the database tables and consist of attribute redundancies, data types, reference integrity, and relationships. Attribute redundancies occur when a field is repeated in two or more tables. For example, the Smith Consulting’s current database system stored an employee’s first and last name in the employee table, job table, and project table. This violates the rules of data integrity by causing an employee’s name to appear in three separate locations within the database system. Plew (2003), “Confusion is always a threat when, for instance, an address for an employee in one table does not match the address of the same employee in another table” (para. 8) Problems with data types were found, such as using a number type for a unique attribute in one table and a text or alphanumeric type in another. For example, the EMP_ID field or attribute uses a number data type in the employees table and a text data type in the jobs table. The EMP_ID attribute is the primary key in the employees table and a foreign key in the jobs table. This could cause the database to fail to link records with text values. Further problems pertain to reference integrity. Constraints help to normalize a database system. For instance using keys create a relationship among parent and child tables and eliminates data redundancies. Further constraints depend upon data types. These data types are specific and must be consistent when across relational tables. For instance, the primary key EMP_ID in the employees table must be consistent with the EMP_ID foreign key in the jobs table in order to create a working relationship among these two tables in order to link the two table’s records. Data type consistency means using the same data types, specifying a variable length, and utilizing a specific data size for both the primary and foreign keys.
Database Environment Objective
The overall objective for the new database environment consists of designing a new relational version of the current DBMS that supports efficient use of human resources to better meet customer needs. The company’s human resources may consist of database analysts, database designers, programmers, network administrators, and software engineers to name a few. Smith consulting specializes in information technology (IT) with concentrations in database, network, and application development, design, implementation, and maintenance. To meet customer needs and demands Smith Consulting must implement a database system that facilitates proper allocation of its human resources. The company has many projects in progress and each project has many employees working together to complete a particular project. The new (RDBMS) must encompass three business objectives pertaining to adequate tracking of consulting staff, details each staff member’s skill set for effective placement of employees to projects, and show current employees assigned to projects to reduce over-allocation of human resources or employee burn-out. Tracking consulting staff, their skills, and the projects they are working on helps to determine the required entities, attributes, and entity relationships needed, which is further defined within the scope and its boundaries.
Scope and Boundaries
The database analysis, business objectives, and requirements determined the scope and its boundaries. The current system consists of a single entity called employees or EMPLOYEES_DATABASE_TABLE. This single table contains many duplicate attributes or fields. Plew (2003), “A database that is not normalized may include data that is contained in one or more different tables for no apparent reason” (para. 5). Notice the repetitiveness of employees name attributes under EMP_ID, JOB_ID, SKILL_ID, and PROJ_ID in the raw database depicted below. This leads to many issues involving performance, security, and data integrity issues. This means when end users access the database they must wait until the entire database is loaded, which adversely affects system performance. Furthermore, all company end-users have access to the entire database because all entities, such as employees, jobs, skills, and projects are contained within a single table. This makes it difficult for system administrators to assign different permission levels to different users, which allows any employee to read, write, or modify data. Finally, the reoccurrence of attributes within the table compromises data integrity by causing redundant information, such an employee’s name to appear many times within a record. Plew (2003), “The objective of the first normal form is to divide the base data into logical units called tables” (para. 12). The scope of the new RDBMS involves breaking the employee table down into four relational tables each with its own attributes. The boundaries involve remaining within the scope of these four tables. For example, linking these tables to existing external tables, such as a financial module is outside the design of the new RDBMS. Furthermore, boundaries consist of various attribute constraints. For example, the RDBMS will not contain duplicate attributes also called fields and unique identifiers will link parent tables containing a primary key to child tables containing a foreign key. The new RDBMS consists of employees, jobs, skills, and projects tables that are further defined in the data specifications. A graphic view of the current DBMS or raw database is depicted below in figure 1.1 and a high-level logical view of the new RDBMS is depicted in the data specifications section for comparison in figure 1.2.
Depiction of Smith Consulting’s current raw database system figure 1.1
EMPLOYEE_DATABASE_TABLE
EMP_ID JOB_ID SKILL_ID PROJ_ID
L_NAME JOB_DESC SKILL_DESC PROJ_DESC
F_NAME EMP_LNAME EMP_LNAME PROJ_SRT_DATE
INT EMP_FNAME EMP_FNAME PROJ_FIN_DATE
EMP_INT EMP_INT EMP_LNAME
EMP_FNAME
EMP_INT

EMPLOYEE_DATABASE_TABLE
EMP_ID JOB_ID SKILL_ID PROJ_ID
L_NAME JOB_DESC SKILL_DESC PROJ_DESC
F_NAME EMP_LNAME EMP_LNAME PROJ_SRT_DATE
INT EMP_FNAME EMP_FNAME PROJ_FIN_DATE
EMP_INT EMP_INT EMP_LNAME
EMP_FNAME
EMP_INT

Data Specifications
The data specifications consist of employees, jobs, skills, and projects entities. Each entity is related through a unique identifier and each entity contains various attributes.
From a database model perspective each entity becomes a table and each attribute becomes a field. Each attribute or field is categorized in columns. The raw data in each column fields makes up a row also referred as a record. For example, the entity employee’s contains attributes, such as EMP_ID, LNAME, FNAME, INT, JOB_ID, and PROJ_ID. The entity employee’s becomes a table and EMP_ID, LNAME, and so forth become fields organized in columns. The graphical depiction labeled 2.1 below shows the transformation of the employees table into the data model view. The example of the data model view contains two records each with a unique EMP_ID number or primary key. The PROJ_ID column in the database model is the foreign key that links to a primary key in the projects table. The entity relationship diagram (ERD) in figure 2.1 depicts this relation as well. The ERD show that one project may have many employees. Relational tables reduce redundancies by eliminating same data duplication and provide easy navigation of the database system. For instance, the database model displays a record with a unique EMP_ID number of 1 for a particular employee. This employee name is Jeremy D. Melix and a foreign key in the PROJ_ID column provides a unique PROJ_ID number of 4. This linked projects table would generate another record for Jeremy Melix consisting of the individual’s working project description, such as the development of a graphical user interface (GUI) for Smith Consulting RDBMS. This projects record would also display the start date and target date for project completion for this individual.

Entity Relationship Diagram (ERD) View figure 2.1 EMPLOYEES | PK EMP_ID | ATTRIBUTES
ATTRIBUTES
LNAME | FNAME | INT | FK JOB_ID | FK PROJ_ID | JOBS | PK JOBS_ID | JOBS_DESC | FK SKILL_ID | FK EMP_ID | PROJECTS | PK PROJ_ID | PROJ_DESC | PROJ_SRT_DATE | PROJ_FIN_DATE |

Database Model View of Employees Table EMP_ID | LNAME | FNAME | INT | JOB_ID | PROJ_ID | PK 1 | Jeremy | Melix | D | 2 | 4 | PK 2 | Jack | Daniels | F | 10 | 3 |
DATA FIELDS
DATA FIELDS

Jobs Table figure 2.2 JOBS | PK JOBS_ID | JOBS_DESC | FK SKILL_ID | FK EMP_ID |

Database Model View of Jobs Table JOBS_ID | JOBS_DESC | SKILL_ID | EMP_ID | PK 1 | Programmer | 6 | 4 | PK 2 | System Administrator | 10 | 5 |

Projects Table figure 2.3 PROJECTS | PK PROJ_ID | PROJ_DESC | PROJ_SRT_DATE | PROJ_FIN_DATE |

Database Model View of Projects Table PROJ_ID | PROJ_DESC | PROJ_SRT_DATE | PROJ_FIN_DATE | PK 1 | Develop a RDBMS | 5/15/2014 | 5/15/2015 | PK 2 | Develop a GUI for Smith Consulting | 7/15/2014 | 5/15/2015 |

Other data specifications pertain to data type constraints. “A constraint is an object used to place rules on data” (Stephens & Plew, 2001, p. 51). Improper use or inconsistencies with data types cause problems with record linkage. These data types may involve a number, text, date/time, currency, Boolean, such as yes or no and much more. Examples of data types are depicted in the logical model of the RDBMS depicted below.

Smith Consulting Logical Model Table of RDBMS figure 1.2 SMITH CONSULTING EMPLOYEE DATABASE MANAGEMENT SYSTEM | | | | | | | | | | TABLE NAME | ATTRIBUTE NAME | DATA TYPE | DATA SIZE | DATA RANGES | REQUIRED | PRIMARY KEY | FOREIGN KEY | FOREIGN KEY REFERENCE TABLE | EMPLOYEES | EMP_ID | AUTO_ID | 4 BYTES | 1-1000 (4 DIGITS MAX) | YES | YES | | | | LNAME | SHORT TEXT | 255 BYTES | 0-255 (VARIABLE LENGTH) | YES | | | | | FNAME | SHORT TEXT | 255 BYTES | 0-255 (VARIABLE LENGTH) | YES | | | | | INT | SHORT TEXT | 255 BYTES | 0-255 (VARIABLE LENGTH) | YES | | | | | JOB_ID | NUMBER | 3 BYTES | 1-100 (3 DIGITS MAX) | YES | | YES | JOB_ID | | PROJECT_ID | NUMBER | 2 BYTES | 1-50 (2 DIGITS MAX) | YES | | YES | PROJECT_ID | | | | | | | | | | TABLE NAME | ATTRIBUTE NAME | DATA TYPE | DATA SIZE | DATA RANGES | REQUIRED | PRIMARY KEY | FOREIGN KEY | FOREIGN KEY REFERENCE TABLE | JOBS | JOB_ID | AUTO_ID | 3 BYTES | 1-100 (3 DIGITS) | YES | YES | | | | JOB_DESC | SHORT TEXT | 255 BYTES | 0-255 (VARIABLE LENGTH) | YES | | | | | SKILL_ID | NUMBER | 4 BYTES | 1-1000 (4 DIGITS MAX) | YES | | YES | SKILL_ID | | EMP_ID | NUMBER | 4 BYTES | 1-1000 (4 DIGITS MAX) | | | YES | EMP_ID | | | | | | | | | | TABLE NAME | ATTRIBUTE NAME | DATA TYPE | DATA SIZE | DATA RANGES | REQUIRED | PRIMARY KEY | FOREIGN KEY | FOREIGN KEY REFERENCE TABLE | SKILLS | SKILL_ID | AUTO_ID | 4 BYTES | 1-1000 (4 DIGITS MAX) | YES | YES | | | | SKILL_DESC | LONG TEXT | | UNLIMITED | YES | | | | | EMP_ID | NUMBER | 4 BYTES | 1-1000 (4 DIGITS MAX) | YES | | YES | EMP_ID | | | | | | | | | | TABLE NAME | ATTRIBUTE NAME | DATA TYPE | DATA SIZE | DATA RANGES | REQUIRED | PRIMARY KEY | FOREIGN KEY | FOREIGN KEY REFERENCE TABLE | PROJECTS | PROJ_ID | AUTO_ID | 2 BYTES | 1-50 (2 DIGITS MAX) | YES | YES | | | | PROJ_DESC | LONG TEXT | | UNLIMITED | YES | | | | | PROJ_SRT_DATE | DATE/TIME | 10 BYTES | 10 CHARACTERS (FIXED LENGTH) | YES | | | | | PROJ_FIN_DATE | DATE/TIME | 10 BYTES | 10 CHARACTERS (FIXED LENGTH) | YES | | | |

Conclusion
Smith Consulting needs to roll its current DBMS over to a RDBMS. The current system is anything but relational consisting of one database table that houses all its attributes. This cause many issues pertaining to data redundancies and data abnormalities, which results in data corruption. The overall performance of the current system is slow and it opens its doors to various security threats. Creating a successful RDBMS for Smith Consulting involves a firm understanding of the company’s objectives, its scope and boundaries, accurate database analysis, efficient identification of problems and constraints, and a list of only required data specifications. The new database system must track employees, their skill sets, and projects they are working on to facilitate a system that properly allocates employee resources to better meet the company’s customer needs. The first iteration of the database design phase broke down the current system into four separate relational tables facilitating many one to many relationships. This model is depicted throughout the reading and graphical representations, such as an ERD, database model, and logical model. However, these graphical models helped the system users and database design team to see the need for more many-to-many relationships within the RDBMS. A return to the database development life cycle is required for the development and implementation of a successful RDBMS.

References
Guzel, B. (2013). SQL for Beginners: Part 3 - Database Relationships. Retrieved from http://code.tutsplus.com/articles/sql-for-beginners-part-3-database-relationships--net-8561 Plew, R. (2003). The Database Normalization Process. Retrieved from http://www.informit.com/articles/article.aspx?p=30646 Stephens, R.K., & Plew, R. (2001). Database Design. Retrieved from
http://www.dtic.co.cu/FTP/libros/database_desing.pdf.

Similar Documents

Premium Essay

Database Environment

...Database Environment Smith Consulting wants to be able to track their consulting staff, each staff members skill set, and what projects they are working on. In order for Smith Consulting to keep track of all theses sets of data, they are in need of a database. Smith Consulting is an organization which offers Information Technology services to its clients. The services which Smith Consulting offer are database services, application programming, and website services. Smith Consulting was founded in 1984 with the goal of providing information technology services to its clients which are located in the Western United States. Smith Consulting Database Environment The main reason to analyze Smith Consulting’s database environment is to see where the company stands and in what situation the company is in which will be based on the results of the initial study of their database. Analyzing a company’s database is to see if the current system will be in fact able to support the additional information they want to collect on their employees. Looking at Smith Consulting’s database, we can see their current database will be unable to support the additional information and data they would like to update in order to keep track of the staff as well as the other requirements of the project. These would include tracking each staff member and their skill set, and to also track which projects each staff member is working on. To successfully analyze the database environment, their needs to be communication...

Words: 878 - Pages: 4

Premium Essay

Database Enviornment

...The paper is about the Smith Consulting and staff. The Smith Consulting needs a database design that can keep up with their staff members and their skills, projects that they are assigned to. Also needs a database that need their environment analyzed. Also would need to know where their problems and constraints come from. Next, what are their objectives of their scope and boundaries. Last, but not least, what will be the entities and attributes that they should use in their database system? These are all the things that we are going to find out and more. This company was founded in 1984 by Blair Smith and three associates from his firm in order to provide his accounting clients services in technology consulting. This was the beginning of Smith Consulting where Blair Smith launched a business doing this type of work. Analyzing the database environment is our first steps. This is the purpose of analyzing the database environment is to make an initial study of where the company stands and in what situation the company is in based on the results of the initial study. It is extremely important to determine if the current system is failing and the reasons why is because it is actually failing now at this moment in time. In the case of Smith Consulting, their current database system is unable to support the addition of new information and needs to be updated in order to keep track of the staff as well as the other requirements of the project. These will include tracking staff...

Words: 965 - Pages: 4

Premium Essay

Database Environment Paper

...Database Environment Smith Consulting is a firm that focuses building applications for their clients. One of the biggest core values within this company is to maintain the security of the data that they for which this company builds applications. ("Smith Consulting Intranet", 2015) The main focus of this company is the creation of efficient financial applications as well as other functional applications as requested. The company has about 350 employees that currently working for them across all sites ("Smith Consulting Intranet", 2015). From the company intranet there does not seem to be a current database in place for that tracks their consulting staff, clients, each staff member's skill sets, and what projects they are working on. In order to create a database we would have to first select the best database environment for the project. Within this situation the database would not house confidential information so the need for strong security would not be necessary. For this particular database the amount of data that is being imported into the database is rather small. The company has 4 main clients and 350 employees. The system that I would select for this project would be Access. Access can handle all of the data that is needed to create this Project Database. SQL and Oracle are create database structures when dealing with huge amounts of data, this would not be the case in this situation and it would not be feasible to spend the extra money on these...

Words: 896 - Pages: 4

Premium Essay

Benefit Election System

...With the new benefit system coming online brings new security requirements and possible risks that must be addressed. This document will list some of those security requirements and risks of the Benefits Election System of the company. Paper Risks and Security Requirements Huffman Trucking is a national transportation company with 1,400 employees working in logistical hubs across the United States. The human resources department currently maintains several tracking mechanisms for its employee information. The company has an HRIS system that was developed in-house that maintains a database of personal information. One of the company’s managers also maintains an Excel spreadsheet for individual compensation decisions and surveys. With the recommendation to convert the Excel spreadsheet to a database system, it is a wise choice to integrate the paper data into the already made HRIS system database. In either case, there is a need to provide planning and security for the system. To address the one possibility of integrating the Excel spreadsheet into the benefit election system, there are a few risks associated with paper-based systems and security baselines that must be met. Maintaining paper presents risks such as environmental risks. This can include fire, water, and weather....

Words: 1290 - Pages: 6

Free Essay

Enterprise Security Plan

...Enterprise Security Plan Enterprise Security Plan Smith Systems Consulting (SSC) is a major regional consulting company. Headquartered in Houston, Texas, the firm’s 350 employees provide information technology and business systems consulting to its clients in a wide variety of industries including manufacturing, transportation, retail, financial services and education. Smith Systems Consulting (SSC) is a service provider. It provides IT services for other companies. Security is essential for SSC because it not only requires security for itself, but SSC also has many customers depending on it to provide top level IT services, which also includes security. Enterprise risks are a part of all business and how we address these risks determines how successful we are in the business world. Risks can be defined by “any exposure to the chance of injury or loss.” (Cheryl l. Dunn, 2005) Risks can be internal or they can come to us from outside sources in the form of external risks. Both types of risks pose a threat to the overall security of the enterprise. An Enterprise Security Plan (ESP) outlines possible risks by identifying the vulnerabilities within the business process and ranks the vulnerabilities for ease in developing a mitigation plan. The ESP also identifies technologies and policies that will help in the development of an operational plan that protects the business process and intellectual property of your corporation. Within this ESP we have developed 3 different...

Words: 1749 - Pages: 7

Premium Essay

Architecture for Kudler Fine Foods Frequent Shopper

...Architecture for Kudler Fine Foods Frequent Shopper Program Introduction Kudler Fine Foods needs a logical technical architecture for their new Frequent Shopper Program’s system to work efficiently and accurately. This document describes the architecture Kudler Fine Foods needs to make their program successful while including descriptions about the hardware environment used to support the development and production of the system; network connections between the stores and Kudler’s headquarters; and the software development tool proposed to build this application. Next it covers the user interfaces used to collect data from customers and store personnel, as well as, the controls used to make sure that information is safe and secure. To begin, the hardware platform is described. Hardware Platform Hitachi ID Systems, Inc. (2013) describes a hardware platform as an environment that uses software and/or hardware to run applications and programs. This includes operating systems for the application side and routers, remote access servers and multitudes of other technology for the hardware side. Combined these items complete a hardware platform and give users the ability to support development and production of information systems. Network Connections Kudler Fine Food has a current network setup that works well but must be updated to successfully secure customer information, to be discussed later in this document. The plan for Kudler is to have a complete update of their...

Words: 1046 - Pages: 5

Premium Essay

Team Project Riordan Manufacturing Business Systems

...Introduction There currently is not a comprehensive view of the existing and needed business systems of Riordan manufacturing (Smith Services Consulting Inc., 2011). The management of Riordan Manufacturing has submitted Service Request SR-rm-012 – Business Systems to have Smith Consulting create a summary of the business systems needed for effective management. Technical Team Bravo will begin with an overview of the current systems that exist in the areas of Finance and Accounting, Payroll and Human Resources, Information Technology, and Sales and Marketing. For each area covered, Technical Team Bravo will describe the business systems and subsystems used, identify who uses them, identify interrelations between business systems and subsystems, and include any noted disparities. Technical Team Bravo will conclude with a summary of suggestions for a systems plan to improve management (Smith Services Consulting Inc., 2011). Accounting Systems Riordan Manufacturing currently has six Enterprise Resource Planning (ERP) and Manufacturing Resource Planning (MRP) systems throughout four locations. These servers are accessed at the local level by 16 clients (PC’s.) The current challenge to management is the disparate systems and inconsistencies with respect to reporting capabilities and collaboration. Management needs to consolidate these systems into one Cloud-Based ERP/MRP solution that can handle real-time inventory management controls, and comprehensive, robust reporting tools...

Words: 3356 - Pages: 14

Premium Essay

Leaders

...  Growth.     Walter  Demartis.  Master  programme  in  HR  Development  .  Department  of   Human  and  Organizational  Change.  The  George  Washington  University.                 1. Overview /Introduction The case is about a successful company that has to deal with the complexities and challenges of a globalized environment. The organization faces a number of SHRD issues arising from: a) the specificity of a rapidly changing industry (smartphone), b) the need to cope with significant growth through strategic and diversified sourcing and talent management and, c) align mergers and acquisitions to the HR strategy. Moreover, the growth has resulted in work pressure, which is further affected by lack of physical space and staffing needs concerns also middle management posts. The following analysis further describes the internal and external challenges. The main issue is identified and solutions proposed in the ensuing paragraphs along with an annexed action plan. 2. Environment Analysis Internally, the recent growth and external competition have impacted upon the structures, the workload, and motivation and led the company to reconsider its strategy. Externally, the industry faces an increasing global demand particularly in the emerging economies, which calls for RIM’s penetration in markets like China and India. Scarcity of skilled talents is, along others, the most evident reflection...

Words: 1725 - Pages: 7

Premium Essay

Smith System Consulting

...Smith Systems Consulting Boardman Management Group - Baderman Island Resort: Word Processing Software Upgrade Table of Contents Overview 3 Purpose and Projected Goals 4 Business requirements 5 Gathering Techniques 5 Recommendation 9 Options 9 Microsoft Office 2010 Professional and Open Office Comparison 10 Economic model 13 Risk Assessment 21 Projected Schedule 24 Testing Plan 26 Training 27 Further Training. 27 Maintenance and Support Plan 29 Testing Process Summary 29 Conclusion 30 Running Head: BMG World Processing Software Upgrade Proposal Overview The Baderman Island inclusive resort entity falls within the confines of Boardman Management Group, which specializes in various areas of tourism. The previously mentioned management group is a well-known host to many conferences centers, dream vacations, and destination resorts. Supporting business ventures include areas specializing in recreation, hotel, health promotion, dining, and entertainment. Among the most notable is the Baderman Island Resort, which opened to the public in 2004, and consists of three hotel locations. Each location provides a variety of retail establishments from specialty shopping to fine dining. All Baderman locations are supervised by the Boardman Management Group. Boardman Management Group (BMG) is constantly working to improve each entity within its group. The successful executions of past goals, and missions, have helped to mold BMG into a well-established...

Words: 5798 - Pages: 24

Free Essay

Cmgt 445 Entire Course

...CMGT 445 Entire Course http://homeworkgallery.com/index.php/product/cmgt-445-entire-course/ http://homeworkgallery.com/index.php/product/cmgt-445-entire-course/ CMGT 445 Week 1 DQs DQ 1: Identify ways in which user requirements can be determined. How can a project manager be sure that all requirements have been identified for a planned implementation? DQ 2:Welch, et al. (2007) presents IT Governance as an important “Key” in ERP success. Discuss the organization of an IT governance team and then compare and contrast implementing a major ER project with and without an in place governance team. DQ 3:Peslak, and partners. (2007/2008) test a defined phase approach to Enterprise resource planning (ERP) implementation. Examine in contrast and differentiate the standard Systems Development Life Cycle (SDLC), phase process to the method explicated in Peslak, and partners, deliberated the comparisons and divergence between the two processes. DQ 4:Is it necessary for executive management to involve IT managers in strategic planning? Explain your answer and propose any recommendations you may have. CMGT 445 Week 2 DQs DQ 1: Haddad and Ribi?re (2007) explore and expand upon the more formal use of Knowledge Management in the process of software acquisition. Analyze and discuss the use of the Software Acquisition Capability Maturity Model (SACMM) if you were the project manager responsible for a large software acquisition at your company. DQ 2: In what ways...

Words: 1752 - Pages: 8

Premium Essay

Kudler Fine Food Audit Process

...audit will provide an opinion on the accuracy and fairness of the financial statements. “This fairness evaluation is conducted in the context of generally accepted accounting principles (GAAP) and requires application of generalized auditing standards” (Bargranoff, 2008). External audits will assess computer-base accounting systems. The purpose of the audit is to determine how the computerized system impacts Kudler’s financial statements. Substantive test will be done to ensure proficiency; and it will begin with a preliminary test. A risk assessment will be another objective of the audit. “Risks of material misstatement can arise from a variety of sources, including external factors, such as conditions in the company's industry and environment, and company-specific factors, such as the nature of the company, its activities, and internal control over financial reporting” (Audited No.12, 2012). The risk must be evaluated because the system controls strengths and weakness affects the scope of the audit. “The risk-base audit approach provides auditors with a...

Words: 909 - Pages: 4

Premium Essay

Normalization

...Chapter 5 Normalization of Database Tables Discussion Focus Why are some table structures considered to be bad and others good and how do you recognize the difference between good and bad structures? From an information management point of view, possibly the most vexing and destructive problems are created through uncontrolled data redundancies. Such redundancies produce update and delete anomalies that create data integrity problems. The loss of data integrity can destroy the usefulness of the data within the database. (If necessary, review Chapter 1, Section 1.4.4, “Data Redundancy”, to make sure that your students understand the terminology and that they appreciate the dangers of data redundancy.) Table structures are poor whenever they promote uncontrolled data redundancy. For example, the table structure shown in Figure IM5.1 is poor because it stores redundant data. In this example, the AC_MODEL, AC_RENT_CHG, and AC_SEATS attributes are redundant. (For example, note that the hourly rental charge of $58.50 is stored four times, once for each of the four Cessna C-172 Skyhawk aircraft – check records 1, 2, 4, and 9.) Figure IM5.1 A Poor Table Structure [pic] |[pic] The figures shown in this discussion show the contents of the IM_Discussion database. This database is located on the teacher’s CD. The | |Student Online Companion also includes SQL script files (Oracle and SQLServer) for all of the data sets used throughout the book. ...

Words: 9797 - Pages: 40

Premium Essay

Apa Format

...APA: Formatting Rules, Informational Sites, & Example Reference List The following sections offer  formatting rules for a Reference List page,  URLs for web sites with more information about APA documentation, and  an example APA reference list using entries from the "APA Citation Rules & Examples" page by Tarleton Libraries. APA REFERENCE LIST FORMATTING RULES An APA reference list is formatted as follows:  Sources used in preparing your paper must appear in the reference list, and all entries in the reference list must be cited in your paper. Make sure the entries match. o Note: APA rules exclude some source types from reference lists. For example, communications like personal interviews and letters do not provide recoverable data. Therefore, they would be cited in a paper, but excluded from the reference list. Check the APA manual for additional information.           See the APA handbook for rules about listing works you read, but did not use. Put the reference list at the end of the paper. Start the reference list on its own page. Put the page number in the upper right-hand corner, at least one inch from the right-hand edge of the paper and between the top edge of the paper and the first line of text. Title the page References (or Reference if there is only one entry). Do not underline or italicize the title. Do not put it in quotation marks. Center the title on the top margin (usually an inch from the top of the page). Double space the entries...

Words: 1351 - Pages: 6

Free Essay

Improving Organizational Performance

...Improving Organizational Performance Rose Bond PSY/428 June 25, 2014 Melissa Ray Airdevils Redirection Airdevils is a company that provides dynamic stunts such as sky diving, sky surfing, hang gliding , para gliding, ballooning and micro lighting, for the movie industry as well as demonstration events, publicity stunts and marketing campaigns. Founded by Chelsea Evans in 1995, later to be joined by four colleagues in 1996.The organization has since grown to employ 115 individuals. After two years of business decline, Ms. Evans requested consultation from Dream Teamwork’s, an organizational consulting firm directed by Peter Mallow. By utilizing the Job Descriptive Index created by Patricia Cain Smith and her colleagues, an overview of employees’ needs and concerns are identified. Following are the issues, recommendations and results of these intervention strategies. Cycle 1 Situation- The results of the JDI depict a very low level of overall job satisfaction among the stunt groups stemming from the perceived routine nature of their work. “The personal profile of an average stunt performer showed that they were motivated by the challenges in performing stunts. Once they had perfected a stunt routine, their natural tendency was to indulge in something more challenging. However, the job profile of the stunt performers indicated that not only was the job of a stunt performer monotonous, it also entailed undertaking other activities unrelated to performing...

Words: 1115 - Pages: 5

Premium Essay

Communication

...This investigation was carried out to compile relevant information on effective business management skills and the importance of applying knowledge, information and communication with an organization. This research compilation was completed also to show others the necessary decisions that must be considered with a business. Smith & Company’s is one of the world leading management consulting firms, which is located at 20a Ruthven Road, Kingston 5. We work with top executives within various organizations to help them to make healthier decisions, alter those decisions to actions and consign the sustainable success they so desire. What we do: Our mission is to assist management teams in creating the high level of economic value that together we redefine our respective industries. Our management consulting services focus on our client’s most critical matter and opportunities: Strategy, business operations and technology. Our areas of strategy consulting know-how include: • Fundamentals of growth: One in ten companies achieves sustained growth. We assist organization in defining and focusing on their centre. • Business unit strategy: Effective strategy requires making proprietary choice. The goal is to drive business to full economic potential. • Sustainability: Smith’s helps companies develop renewable energy policies, understand the full potential of recycling processes and recognize the influence of trends and regulations among other agendas. One of our most certain...

Words: 3285 - Pages: 14