Free Essay

Dbm/380 Learning Team Week Final Project

In:

Submitted By ajax8511
Words 2177
Pages 9
Learning Team Week Final Project
DBM/380

Learning Team Week Final Project
The Huffman Trucking Company started in Cleveland, Ohio in 1936. The company is privately owned, and began as a single tractor-trailer company. This company is growing is size and acquiring rapid business growth. At present time, the company owns 800 road tractors, 2,100 45' trailers, and 260 “roll A on/roll-off" units. The Huffman Trucking provides logistics services to U.S. Government as well as to the private companies. (Huffman Trucking, 2012). Learning team D’s project is to develop database design documentation for Huffman Trucking for their fleet truck maintenance. Huffman trucking interviewed members of their staff from different departments and proposed entities and attributes for their database. Entities proposed are numerous: Parts Inventory Purchases, Parts Inventory Issues, Parts Catalogue, Vendors, Parts Purchasing History, Vehicle Maintenance, Tire Maintenance, Maintenance Descriptions, Vehicle Types, Vehicles, and Maintenance Work Order. (Apollo Group, 2007). The expected end result from Huffman trucking is documentation showing entity relationship diagrams with referential integrity, data entry forms, SQL table join query code with results, and a normalized database that observes the business rules proposed by Huffman Trucking.
Stages of Development
In the first stage of development, we took the list of entities and their attributes proposed by our client and acquainted ourselves with their business and processes. The entities proposed by Huffman Trucking were numerous: Parts Inventory Purchases, Parts Inventory Issues, Parts Catalogue, Vendors, Parts Purchasing History, Vehicle Maintenance, Tire Maintenance, Maintenance Descriptions, Vehicle Types, Vehicles, and Maintenance Work Order. Initially we organized these entities along with their attributes according to what Huffman Trucking desired to see.
In the second stage of database design, we have taken the initial design and organized it for better functionality. Many of the entities and attributes of our initial design overlapped and made our design prone to redundancy. In this stage, we have taken into account the business rules and user requirements to improve function while simplifying design (Coronel, Morris, & Rob, 2013, Chapter 9). Many changes were made during this stage: we merged many tables, removed and/or renamed attributes (many attributes did the same thing and had different names in different tables), and added attributes to tables for operational purposes (we added a part id to our table that records transactions for inventory purposes). At the end of this stage, we had turned the original database of 11 tables into a more organized layout with 7 tables that had attributes that more accurately reflected the business functions of our client.
In the third stage of database design, we took the improved design and applied normalization to it for better functionality. Many of the entities and attributes of our initial design overlapped and made our design prone to redundancy, but we addressed them during this stage of design to promote a relationship with well formed relationships. Another issue we addressed was the naming convention used for tables, entities, and attributes. Our tables and attributes were modified to conform to the standard naming convention (no spaces in table or attribute names, and table name is abbreviated at the beginning of attribute names), and changed to convey which table they are from, and what they are used for. In this stage, we have taken into account the necessity of normalization to improve function and remove redundancy (Coronel, Morris, & Rob, 2013, Chapter 9).
Normalization
The normalization has a crucial meaning for database functionality and data integrity that we refer to as good table structure. “The Normalization is a process for evaluating and correcting table structures to minimize data redundancies and reducing data abnormalities”. (Coronel, Morris, & Rob. 2013, Chapter 6). The normalization process involves the series of stages called normal forms as 1NF, 2NF, 3NF, 4NF etc. In order to apply the best possible level of normalization, the database designer should consider database system respond to end-user queries as well as avoiding chances for data redundancy and data abnormalities. Most business databases require 3NF stage. The normalization process is a step by step action when the designer starts from lower stage and move up to the next stage. Any upper stage contains the previous stage, except the lowest stage which is 1NF (Coronel, Morris, & Rob. 2013, Chapter 6). In 1NF we correctly identified all FK and PK keys, as well as removed all repeating groups from table and even merged some tables together for better database design and functionality. Each table represents data that refer to single subject and data are uniquely identifiable by PK. The next step is the 2NF where all partial dependencies were eliminated; no attribute is dependent on only a portion of the primary key. We solved this problem by creating and changing tables and providing appropriate relationships between them. Finally, the 3NF was achieved by eliminating transitive dependencies or derived attributes by the similar approach that was used in 2NF stage. Not all transitive dependencies were eliminated, for example by the zip code we can determine the city and stated. The zip code value almost never change, therefore it is unnecessary to make a database design more complex (Coronel, Morris, & Rob. 2013, Chapter 6). The detail changes were applied to database design and these changes are described below as well as SQL JOIN queries.
Huffman Trucking gave a substantial list of entities and their attributes for the proposed database. Entities proposed are numerous: Parts Inventory Purchases, Parts Inventory Issues, Parts Catalogue, Vendors, Parts Purchasing History, Vehicle Maintenance, Tire Maintenance, Maintenance Descriptions, Vehicle Types, Vehicles, and Maintenance Work Order. These entities, tables, and attributes were normalized and organized for efficiency (Kroenke & Auer, 2011, Chapter 5). The normalized entity sets are listed below with their attributes in parenthesis with the new naming conventions to remove spaces and simplify table/attribute names (primary key is underlined). The final change we made during our final stage of design was the reorganization of the transaction table (used to be inventory issues table). This table was renamed to better reflect its function and also given a stronger primary key (TRANSACTION_ID) because originally it had a composite key that was not unique enough to differentiate between transactions. * Transaction (TRANSACTION_ID, WRK_ORDER_ID (FK), ISSUE_DATE, CATALOGUE_ID (FK), PRICE, QTY_ISSUED) * PartsCatalogue (CATALOGUE_ID, PARTS_DESC, VENDOR_ID, QTY_ON_HAND, RE_ORDER_POINT, RE_ORDER_QTY) * Vendors (VENDOR_ID, VENDOR_NAME, ORDER_ADDRESS, ORDER_CITY, ORDER_STATE, ORDER_ZIP, ORDER_CONTACT, ORDER_CONTACT_PH, ORDER_CONTACT_FAX, BILLING_ADDRESS, BILLING_CITY, BILLING_STATE, BILLING_ZIP, BILLING_CONTACT, BILLING_CONTACT_PH, BILLING_CONTACT_FAX) * PurchasingHistory (ORDER_ID, CATALOGUE_ID (FK), QTY_ORDERED, VENDOR_ID (FK), SHIPPING_PRICE, TAX, FOB) * Vehicles (VIN_NUM, VEHICLE_TYPE, CLASS_CODE, INTO_SERVICE_DATE, GROSS_WEIGHT, MILEAGE, PURCHASE_PRICE, ACCUMULATED_DEPRECIATION, OUT_OF_SERVICE_DATE, CAPACITY) * MaintenanceDescriptions (MAINT_TYPE_ID, LEVEL_CODE, MAINT_DESC, HOURS_REQ, DAYS_REC_BETWEEN_MAINT, MAXIMUM_DAYS_BETWEEN_MAINT)

* WorkOrders (WRK_ORDER_ID, CATALOGUE_ID (FK), MAINT_TYPE_ID (FK), VIN_NUM (FK), WARRANTY, PART_DISPOSAL_DATE, ASSIGNED_TO, DATE_START, DATE_FINISH, NEXT_SCHED_MAINT, WRK_HOURS)

Relationship Structure
Our database design has several relationships that connect different tables. There are two relationships in the Transaction table. WRK_ORDER_ID is a FK in Inventory table to create a 1:M relationship with the WordOrders table (a work order may have many parts from the Inventory table, and a part from the Inventory table may have only one work order). CATALOGUE_ID is a FK in the Inventory table to create a 1:M relationship with the PartsCatalogue table (an Inventory entity may have one part from the Catalogue table, and a Catalogue part may belong to many Inventory entities). There are two relationships in the PurchasingHistory table. CATALOGUE_ID is a FK in the PurchasingHistory table to create a M:M relationship with PartsCatalogue table (an entity from PurchasingHistory may have many parts from Catalogue, and a part from Catalogue may belong to many entities from PurchasingHistory). VENDOR_ID is also a FK in the PurchasingHistory table to create a 1:M relationship with the Vendors table (a parts purchase may belong to one Vendor, and a Vendor may belong to many parts purchases). There are three relationships in the Maintenance Work Order table. VIN is a FK in the WorkOrder table to create a 1:M relationship with the Vehicle table (a maintenance work order can have on VIN_NUM, and a VIN_NUM can have multiple maintenance work orders). CATALOGUE_ID is a FK in the WorkOrder table that creates a 1:M relationship with the PartsCatalogue table (a maintenance work order may have one part from the Parts Catalogue, and a part from the Parts Catalogue may belong to many maintenance work orders). The MAINT_TYPE_ID attribute is a FK in the WorkOrder table to create a 1:M relationship with the MaintenanceType table (a maintenance work order can have only one type from the MaintenanceType table, and a Maintenance Type can belong to many maintenance work orders). These relationships connect our tables together to create the relationships in our database.

Join Query
Our Join Query was simple and straight forward. We chose to join the Transaction table (TRANSACTION_ID), the WorkOrder table (WRK_ORDER_ID, CATALOGUE_ID, MAINT_TYPE_ID, VIN_NUM), MaintenanceDescriptions table (MAINT_DESC), PartsCatalogue table (PARTS_DESC), and Vehicle table (CLASS_CODE, VEHICLE_TYPE). This join shows the Transaction ID, Work Order, Catalogue Part, Maintenance Type ID, Parts Description, Maintenance Description, VIN, Vehicle Class Code, and Vehicle Type side by side. This specific join helps to confirm that the right parts were used for the type of vehicle (class 3 vehicle repaired with class 3 parts) and that the parts match the maintenance type (brakes were used for brake maintenance). This is mainly for inventory purposes for ensuring that the correct part number was entered by the mechanic workers or other staff when maintenance was performed. Join Functions are important for many business operations and data discovery.

The code that we used for performing this join is as follows:
SELECT Transaction.TRANSACTION_ID, Transaction.WRK_ORDER_ID, WorkOrders.CATALOGUE_ID, WorkOrders.MAINT_TYPE_ID, PartsCatalogue.PARTS_DESC, MaintenanceDescriptions.MAINT_DESC, WorkOrders.VIN, Vehicles.CLASS_CODE, Vehicles.VEHICLE_TYPE

FROM (PartsCatalogue INNER JOIN [Transaction] ON PartsCatalogue.CATALOGUE_ID=Transaction.CATALOGUE_ID) INNER JOIN (Vehicles INNER JOIN (MaintenanceDescriptions INNER JOIN WorkOrders ON MaintenanceDescriptions.MAINT_TYPE_ID=WorkOrders.MAINT_TYPE_ID) ON Vehicles.VIN_NUM=WorkOrders.VIN) ON PartsCatalogue.CATALOGUE_ID=WorkOrders.CATALOGUE_ID;

Entry Forms
Our final changes to our normalize database was to add entry forms to make it more user friendly. Two common functions that Huffman Trucking performs with their database on a regular basis are work order form data entry, and new part data entry. The two forms we created accommodate these business functions to make business operations more user friendly, accurate, and efficient. The first form was created for work order form data entry, and includes all the fields for the table: Work Order ID, Catalogue ID, Maintenance Type ID, Vehicle Vin, Under Warranty Selection, Parts Disposal Date (optional), Mechanic the work order was assigned to, the Start Date, the Finish Date, the Next Scheduled Maintenance, and the Hours Worked. The form used for new part data entry is similar, and contains all the fields for the parts catalogue table: Catalogue ID, Part Descriptions, Vendor ID, Quantity on Hand, Re-Order Point, and Re-Order Quantity. These forms make data entry much easier for end users that are not acquainted with data entry for databases.

Conclusion
Throughout the weeks we have made many changes to the initial design. In our final design stage, our reordered design was well organized, and addressed the issues of redundancy in the original database design. Normalizing these components has produced a more efficient and functional database. The first issue we addressed in our database design was the redundancy among the tables originally proposed by Huffman Trucking. This was done by merging tables to create a more organized database which resulted in downsizing the database layout from 11 to 7 tables with unique and well organized attributes. These issues caused major redundancy in our design, and our re-organization has promoted accuracy and functionality. After these issues were addressed, we focused on placing our table layout into well-formed and normalized relationships. After the tables were normalized, they each addressed only one subject, and did not have any partial dependencies. Our normalized design is functional and prevents the redundancies that the original non-normalized design created. Once changes are made during this phase, was to cut out the transaction table (originally Inventory Issues Table); we added a unique primary key in place of the weak composite key that made it hard to distinguish the difference between different transactions. Our final changes were to change our table and attribute names to conform to the standard naming convention for databases by using short, meaningful names that did not use spaces. Our final database design fulfills all the original needs of the clients while preventing the problems and inefficiencies that the original design created. This successful design is normalized, organized, user friendly and has the necessary business operations that work efficiently and accurately.

References
Coronel, C., Morris, S., & Rob, P. (2013). Database Systems Design, Implementation, and
Management (10th ed.). Retrieved from The University of Phoenix eBook Collection database. Kroenke, D. M., & Auer, D. J. (2011). Database Concepts (5th ed.). Retrieved from The
University of Phoenix eBook Collection database.
Apollo Group. (2007). Entities and Attributes for Fleet Truck Maintenance. Retrieved from https://ecampus.phoenix.edu/secure/aapd/cist/vop/Business/Huffman/IT/Databases/HuffmanDatabasesEandAFleetTruckMaintenanceRev.pdf
Huffman Trucking. (2012). Retrieved from
https://ecampus.phoenix.edu/secure/aapd/CIST/VOP/Business/Huffman//internet/index.asp

Similar Documents

Premium Essay

Bsa 375

...|[pic] |Course Syllabus | | |College of Information Systems & Technology | | |DBM/380 Version 9 | | |Database Concepts | | |July 16, 2012 to August 13, 2012 | | |Group KM11BIT13 | Copyright © 2012, 2010, 2008, 2007, 2006, 2005, 2003 by University of Phoenix. All rights reserved. Course Description This course covers database concepts. Topics include data analysis, the principal data models with emphasis on the relational model, entity-relationship diagrams, database design, normalization, and database administration. Policies Faculty and students will be held responsible for understanding and adhering to all policies contained within the following two documents: • University policies: You must be logged into the student website to view this document...

Words: 3236 - Pages: 13

Premium Essay

B2B Advantages and Disadvantages

...This page intentionally left blank Te n t h E d i t i o n MODERN DATABASE MANAGEMENT Editorial Director: Sally Yagan Editor in Chief: Eric Svendsen Executive Editor: Bob Horan Editorial Project Manager: Kelly Loftus Editorial Assistant: Jason Calcano Director of Marketing: Patrice Lumumba Jones Marketing Manager: Anne Fahlgren Marketing Assistant: Melinda Jensen Senior Managing Editor: Judy Leale Project Manager: Becca Richter Senior Operations Supervisor: Arnold Vila Operations Specialist: Ilene Kahn Senior Art Director: Jayne Conte Cover Designer: Suzanne Behnke Cover Art: Fotolia © vuifah Manager, Visual Research: Karen Sanatar Permissions Project Manager: Shannon Barbe Media Project Manager, Editorial: Denise Vaughn Media Project Manager, Production: Lisa Rinaldi Supplements Editor: Kelly Loftus Full-Service Project Management: PreMediaGlobal Composition: PreMediaGlobal Printer/Binder: Edwards Brothers Cover Printer: Lehigh-Phoenix Color/Hagerstown Text Font: Palatino Credits and acknowledgments borrowed from other sources and reproduced, with permission, in this textbook appear on appropriate page within text. Microsoft® and Windows® are registered trademarks of the Microsoft Corporation in the U.S.A. and other countries. Screen shots and icons reprinted with permission from the Microsoft Corporation. This book is not sponsored or endorsed by or affiliated with the Microsoft Corporation. Copyright © 2011, 2009, 2007, 2005, 2002...

Words: 193467 - Pages: 774

Premium Essay

Database Management System

...Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part. Database Systems: Design, Implementation, and Management, Ninth Edition Carlos Coronel, Steven Morris, and Peter Rob Vice President of Editorial, Business: Jack W. Calhoun Publisher: Joe Sabatino Senior Acquisitions Editor: Charles McCormick, Jr. Senior Product Manager: Kate Mason Development Editor: Deb Kaufmann Editorial Assistant: Nora Heink Senior Marketing Communications Manager: Libby Shipp Marketing Coordinator: Suellen Ruttkay Content Product Manager: Matthew Hutchinson Senior Art Director: Stacy Jenkins Shirley Cover Designer: Itzhack Shelomi Cover Image: iStock Images Media Editor: Chris Valentine Manufacturing Coordinator: Julio Esperas Copyeditor: Andrea Schein Proofreader: Foxxe Editorial Indexer: Elizabeth Cunningham Composition: GEX Publishing Services © 2011 Cengage Learning ALL RIGHTS RESERVED. No part of this work covered by the copyright herein may be reproduced, transmitted, stored or used in any form or by any means graphic, electronic, or mechanical, including but not limited to photocopying, recording, scanning, digitizing, taping, Web distribution, information networks, or information storage and retrieval systems, except as permitted under Section 107 or 108 of the 1976 United States Copyright Act, without the prior written permission of the publisher. For product information and technology assistance, contact us at Cengage Learning Customer...

Words: 189848 - Pages: 760

Premium Essay

Business Intelligence

...SPECIAL ISSUE: BUSINESS INTELLIGENCE RESEARCH BUSINESS INTELLIGENCE AND ANALYTICS: FROM BIG DATA TO BIG IMPACT Hsinchun Chen Eller College of Management, University of Arizona, Tucson, AZ 85721 U.S.A. {hchen@eller.arizona.edu} Roger H. L. Chiang Carl H. Lindner College of Business, University of Cincinnati, Cincinnati, OH 45221-0211 U.S.A. {chianghl@ucmail.uc.edu} Veda C. Storey J. Mack Robinson College of Business, Georgia State University, Atlanta, GA 30302-4015 U.S.A. {vstorey@gsu.edu} Business intelligence and analytics (BI&A) has emerged as an important area of study for both practitioners and researchers, reflecting the magnitude and impact of data-related problems to be solved in contemporary business organizations. This introduction to the MIS Quarterly Special Issue on Business Intelligence Research first provides a framework that identifies the evolution, applications, and emerging research areas of BI&A. BI&A 1.0, BI&A 2.0, and BI&A 3.0 are defined and described in terms of their key characteristics and capabilities. Current research in BI&A is analyzed and challenges and opportunities associated with BI&A research and education are identified. We also report a bibliometric study of critical BI&A publications, researchers, and research topics based on more than a decade of related academic and industry publications. Finally, the six articles that comprise this special issue are introduced and characterized in terms of the proposed BI&A research framework. Keywords:...

Words: 16335 - Pages: 66

Premium Essay

Bpcl

...SPECIAL ISSUE: BUSINESS INTELLIGENCE RESEARCH BUSINESS INTELLIGENCE AND ANALYTICS: FROM BIG DATA TO BIG IMPACT Hsinchun Chen Eller College of Management, University of Arizona, Tucson, AZ 85721 U.S.A. {hchen@eller.arizona.edu} Roger H. L. Chiang Carl H. Lindner College of Business, University of Cincinnati, Cincinnati, OH 45221-0211 U.S.A. {chianghl@ucmail.uc.edu} Veda C. Storey J. Mack Robinson College of Business, Georgia State University, Atlanta, GA 30302-4015 U.S.A. {vstorey@gsu.edu} Business intelligence and analytics (BI&A) has emerged as an important area of study for both practitioners and researchers, reflecting the magnitude and impact of data-related problems to be solved in contemporary business organizations. This introduction to the MIS Quarterly Special Issue on Business Intelligence Research first provides a framework that identifies the evolution, applications, and emerging research areas of BI&A. BI&A 1.0, BI&A 2.0, and BI&A 3.0 are defined and described in terms of their key characteristics and capabilities. Current research in BI&A is analyzed and challenges and opportunities associated with BI&A research and education are identified. We also report a bibliometric study of critical BI&A publications, researchers, and research topics based on more than a decade of related academic and industry publications. Finally, the six articles that comprise this special issue are introduced and characterized in terms of the proposed BI&A research...

Words: 16335 - Pages: 66

Premium Essay

Databasse Management

...Fundamentals of Database Systems Preface....................................................................................................................................................12 Contents of This Edition.....................................................................................................................13 Guidelines for Using This Book.........................................................................................................14 Acknowledgments ..............................................................................................................................15 Contents of This Edition.........................................................................................................................17 Guidelines for Using This Book.............................................................................................................19 Acknowledgments ..................................................................................................................................21 About the Authors ..................................................................................................................................22 Part 1: Basic Concepts............................................................................................................................23 Chapter 1: Databases and Database Users..........................................................................................23 ...

Words: 229471 - Pages: 918

Premium Essay

Business Information System Assignment

...Chapter 1 Business Information Systems in Your Career Multiple Choice Questions 1. One of the recent critical challenges facing Major League Baseball was: a. b. c. d. poor coordination between local and national sales channels. poorly managed sales channels. outdated information systems. decreasing ticket sales. Difficulty: Medium Reference: p. 3 Answer: d 2. The six important business objectives of information technology are new products, services, and business models; customer and supplier intimacy; survival; competitive advantage, operational excellence, and: a. b. c. d. improved flexibility. improved decision making. improved business practices. improved efficiency. Difficulty: Easy Reference: p. 6 Answer: b 3. Dell Computer's use of information systems to improve efficiency and implement "mass customization" techniques to maintain consistent profitability and an industry lead illustrates which business objective? a. b. c. d. Improved flexibility Improved business practices Competitive advantage Survival Difficulty: Hard Reference: p. 8 Answer: c 4. The use of information systems because of necessity is: a. b. c. d. survival improved business practices competitive advantage improved flexibility Difficulty: Medium Reference: p. 9 Answer: a 5. (Analysis) Which of the following choices may lead to competitive advantage (1) new products, services, and business models; (2) charging less for superior products; (3) responding to customers in real-time? a. b. c. d. 1 only 1 and 2...

Words: 34754 - Pages: 140

Free Essay

Sona 2015 Pnoy

........................................................... 64 3. Pursued Efforts for Peace and Development in Mindanao ............................ 68 4. Advanced and Protected Human Rights ........................................................ 71 5. Reformed the Justice Sector ......................................................................... 76 INTEGRITY OF THE ENVIRONMENT AND CLIMATE CHANGE ADAPTATION AND MITIGATION 1. Ensured the Conservation and Protection of Natural Resources................... 77 2. Improved Adaptive Capacities of Communities ............................................. 79 3. Pursued Building Disaster Resilient Communities ......................................... 83 ANNEX: SELECT INFRASTRUCTURE PROJECTS UNDER THE...

Words: 48288 - Pages: 194

Premium Essay

Cataolog

...ork2012 - 2013 Catalog A Message from the President “Sullivan University is truly a unique and student success focused institution.” I have shared that statement with numerous groups and it simply summarizes my basic philosophy of what Sullivan is all about. When I say that Sullivan is “student success focused,” I feel as President that I owe a definition of this statement to all who are considering Sullivan University. First, Sullivan is unique among institutions of higher education with its innovative, career-first curriculum. You can earn a career diploma or certificate in a year or less and then accept employment while still being able to complete your associate, bachelor’s, master’s or doctoral degree by attending during the day, evenings, weekends, or online. Business and industry do not expand or hire new employees only in May or June each year. Yet most institutions of higher education operate on a nine-month school year with almost everyone graduating in May. We remained focused on your success and education, and continue to offer our students the opportunity to begin classes or to graduate four times a year with our flexible, year-round full-time schedule of classes. If you really want to attend a school where your needs (your real needs) come first, consider Sullivan University. I believe we can help you exceed your expectations. Since words cannot fully describe the atmosphere at Sullivan University, please accept my personal invitation to visit and experience...

Words: 103133 - Pages: 413

Free Essay

Core Concepts of Ais

...CORE CONCEPTS OF Accounting Information Systems Twelfth Edition Mark G. Simkin, Ph.D. Professor Department of Accounting and Information Systems University of Nevada Jacob M. Rose, Ph.D. Professor Department of Accounting and Finance University of New Hampshire Carolyn Strand Norman, Ph.D., CPA Professor Department of Accounting Virginia Commonwealth University JOHN WILEY & SONS, INC. VICE PRESIDENT & PUBLISHER SENIOR ACQUISITIONS EDITOR PROJECT EDITOR ASSOCIATE EDITOR SENIOR EDITORIAL ASSISTANT PRODUCTION MANAGER PRODUCTION EDITOR MARKETING MANAGER CREATIVE DIRECTOR SENIOR DESIGNER PRODUCTION MANAGEMENT SERVICES SENIOR ILLUSTRATION EDITOR PHOTO EDITOR MEDIA EDITOR COVER PHOTO George Hoffman Michael McDonald Brian Kamins Sarah Vernon Jacqueline Kepping Dorothy Sinclair Erin Bascom Karolina Zarychta Harry Nolan Wendy Lai Laserwords Maine Anna Melhorn Elle Wagner Greg Chaput Maciej Frolow/Brand X/Getty Images, Inc. This book was set in 10/12pt Garamond by Laserwords Private Limited, and printed and bound by RR Donnelley/Jefferson City. The cover was printed by RR Donnelley/Jefferson City. This book is printed on acid free paper. Founded in 1807, John Wiley & Sons, Inc. has been a valued source of knowledge and understanding for more than 200 years, helping people around the world meet their needs and fulfill their aspirations. Our company is built on a foundation of principles that include responsibility to the...

Words: 241803 - Pages: 968

Premium Essay

Management Information Systems

...Course Technology’s Management Information Systems Instructor and Student Resources Introduction to IS/MIS Principles of Information Systems, Eighth Edition • Stair, Reynolds Fundamentals of Information Systems, Fourth Edition • Stair, Reynolds Management Information Systems, Sixth Edition • Oz Information Technology in Theory • Aksoy, DeNardis Office Applications in Business Problem-Solving Cases in Microsoft Access & Excel, Sixth Annual Edition • Brady, Monk Succeeding in Business Applications with Microsoft Office 2007 • Bast, Gross, Akaiwa, Flynn, et.al Succeeding in Business with Microsoft Office Excel 2007 • Gross, Akaiwa, Nordquist Succeeding in Business with Microsoft Office Access 2007 • Bast, Cygman, Flynn, Tidwell Databases Database Systems, Eighth Edition • Rob, Coronel Concepts of Database Management, Sixth Edition • Pratt, Adamski Data Modeling and Database Design • Umanath, Scamell A Guide to SQL, Seventh Edition • Pratt A Guide to MySQL • Pratt, Last Guide to Oracle 10g • Morrison, Morrison, Conrad Oracle 10g Titles Oracle9i Titles Enterprise Resource Planning Concepts in Enterprise Resource Planning, Third Edition • Monk, Wagner Data Communications Data Communications and Computer Networks: A Business User’s Approach, Fourth Edition • White Systems Analysis and Design Systems Analysis and Design in a Changing World, Fifth Edition • Satzinger, Jackson, Burd Object-Oriented Analysis and Design with the Unified Process • Satzinger, Jackson, Burd Systems Analysis and...

Words: 223685 - Pages: 895

Premium Essay

Acca F1 Text Book

...FAB PAPER F1 ACCOUNTANT IN BUSINESS BPP Learning Media is the sole ACCA Platinum Approved Learning Partner – content for the FIA and ACCA qualifications. In this, the only FAB/F1 Study Text to be reviewed by the examiner:  We highlight the most important elements in the syllabus and the key skills you will need  We signpost how each chapter links to the syllabus and the study guide  We provide lots of exam focus points demonstrating what the examiner will want you to do  We emphasise key points in regular fast forward summaries  We test your knowledge of what you’ve studied in quick quizzes  We examine your understanding in our exam question bank  We reference all the important topics in our full index BPP’s Practice & Revision Kit and i-Pass products also support this paper. Note FIA FAB and ACCA Paper F1 are examined under the same syllabus and study guide. FOR EXAMS FROM FEBRUARY 2014 TO AUGUST 2015 I N T E R A C T I V E T E X T FAB/F1 ACCOUNTANT IN BUSINESS First edition March 2011 Third edition September 2013 ISBN 9781 4453 7026 2 Previous ISBN 9781 4453 9965 2 eISBN 9781 4453 7061 3 British Library Cataloguing-in-Publication Data A catalogue record for this book is available from the British Library Published by BPP Learning Media Ltd BPP House, Aldine Place 142-144 Uxbridge Road London W12 8AA www.bpp.com/learningmedia Printed in the United Kingdom by RICOH Ricoh House Ullswater Crescent Coulsdon CR5 2HR A note about copyright Dear Customer...

Words: 210642 - Pages: 843

Free Essay

Ethical Hacking

...Kingdom • United States Copyright 2010 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part. Due to electronic rights, some third party content may be suppressed from the eBook and/or eChapter(s). Editorial review has deemed that any suppressed content does not materially affect the overall learning experience. Cengage Learning reserves the right to remove additional content at any time if subsequent rights restrictions require it. This is an electronic version of the print textbook. Due to electronic rights restrictions, some third party content may be suppressed. Editorial review has deemed that any suppressed content does not materially affect the overall learning experience. The publisher reserves the right to remove content from this title at any time if subsequent rights restrictions require it. For valuable information on pricing, previous editions, changes to current editions, and alternate formats, please visit www.cengage.com/highered to search by ISBN#, author, title, or keyword for materials in your areas of interest. Copyright 2010 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part. Due to electronic rights, some third party content may be suppressed from the eBook and/or eChapter(s). Editorial review has deemed that any suppressed content does not materially affect the overall learning experience. Cengage Learning reserves the right to remove additional content...

Words: 185373 - Pages: 742

Premium Essay

Information and Survey Analysis

...1. An IS auditor is reviewing access to an application to determine whether the 10 most recent "new user" forms were correctly authorized. This is an example of: A. variable sampling. B. substantive testing. C. compliance testing. D. stop-or-go sampling. The correct answer is: C. compliance testing. Explanation: Compliance testing determines whether controls are being applied in compliance with policy. This includes tests to determine whether new accounts were appropriately authorized. Variable sampling is used to estimate numerical values, such as dollar values. Substantive testing substantiates the integrity of actual processing, such as balances on financial statements. The development of substantive tests is often dependent on the outcome of compliance tests. If compliance tests indicate that there are adequate internal controls, then substantive tests can be minimized. Stop-or-go sampling allows a test to be stopped as early as possible and is not appropriate for checking whether procedures have been followed. 2. The decisions and actions of an IS auditor are MOST likely to affect which of the following risks? A. Inherent B. Detection C. Control D. Business The correct answer is: B. Detection Explanation: Detection risks are directly affected by the auditor's selection of audit procedures and techniques. Inherent risks usually are not affected by the IS auditor. Control risks are controlled by the actions of the company's management. Business...

Words: 97238 - Pages: 389

Premium Essay

E-Book Supply Chain Management

...Introduction to Supply Chain Management Technologies Second Edition Introduction to Supply Chain Management Technologies Second Edition David Frederick Ross CRC Press Taylor & Francis Group 6000 Broken Sound Parkway NW, Suite 300 Boca Raton, FL 33487-2742 © 2011 by Taylor and Francis Group, LLC CRC Press is an imprint of Taylor & Francis Group, an Informa business No claim to original U.S. Government works Printed in the United States of America on acid-free paper 10 9 8 7 6 5 4 3 2 1 International Standard Book Number-13: 978-1-4398-3753-5 (Ebook-PDF) This book contains information obtained from authentic and highly regarded sources. Reasonable efforts have been made to publish reliable data and information, but the author and publisher cannot assume responsibility for the validity of all materials or the consequences of their use. The authors and publishers have attempted to trace the copyright holders of all material reproduced in this publication and apologize to copyright holders if permission to publish in this form has not been obtained. If any copyright material has not been acknowledged please write and let us know so we may rectify in any future reprint. Except as permitted under U.S. Copyright Law, no part of this book may be reprinted, reproduced, transmitted, or utilized in any form by any electronic, mechanical, or other means, now known or hereafter invented, including photocopying, microfilming, and recording, or in any information storage or retrieval...

Words: 158845 - Pages: 636