Database Implementationfor  NOMO Auto GroupteamSOLUTIONSMartin Castner, Bryant Crone, Mike Holden, Brianna Malcolmson, & Josh Wentz1December 7, 2009
teamSOLUTIONS2teamSOLUTIONS
project managerJosh Wentz3teamSOLUTIONS
scope of workSCALABILITYNOMO Auto Groups is a growing successful organizationOur solution will allow for the four existing location to expand even fartherMAXIMUM EFFICIENCYThe current database system needs to be updated improved to guarantee peak efficiencyTECHNOLOGICAL EDGEMaintain a technological edge on competitors through use of a cloud computing type accessible & collaborative databaseProblems Recap & teamSOLUTIONS…teamSOLUTIONS
database lifecycleteamSOLUTIONS5
existingPROBLEMS6projectSOLUTIONSINITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
projectSOLUTIONSCENTRALIZEDdatabase housed in one locationeach of the dealer's inventorylisting of all automobiles currently owned by NOMO & dealership locationACCESSIBLEmany people can access the database at the same timeemployees from each location can access the same databaseREAL-TIMEdatabase is automatically updated throughout each location as soon as someone inputs informationup to date inventoryup to date sales informationSECUREkeep each individual’s commission privatenone of the salespeople know what other salespeople are making in terms of commissionSAFEGUARDS INPUT ERRORScheck in the system to maintain data integrity if employee enter a wrong amount for a car we receiveUSER-FRIENDLYstreamlined & integrated:  login, input, compiled7INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
personnel resourcesINITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION  8
database administratorBryant Crone9teamSOLUTIONS
existingPROBLEMSpreadsheets = Limited AccessFour Dealerships10INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
existingPROBLEM11UPDATESUPDATESINITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
existingPROBLEM12SPREADSHEETASPREADSHEETBCompare&UpdateSPREADSHEETASPREADSHEETBINITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
databaseSOLUTIONCentralizedMultiple User Access13INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION  DBMS selection14
database design15INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
16Entity-Relationship Diagram
SQL coding17CREATING THE DATABASECREATE TABLE Invoice( invoice_id NUMERIC PRIMARY KEY,customer_id NUMERIC NOT NULL,vin VARCHAR(20) NOT NULL,sale_date DATE NOT NULL,sale_price INTEGER NOT NULL,gross INTEGER NOT NULL,commission INTEGER NOT NULL,employee_id VARCHAR(255) NOT NULL,FOREIGN KEY (customer_id) REFERENCES Customers(customer_id),FOREIGN KEY (vin) REFERENCES Inventory(vin),FOREIGN KEY (employee_id) REFERENCES Employees(employee_id) );COMPILING THE DATABASEINSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (107689, 154012, '1HGFA553XJA126793', 06-05-2009, 8055, 3555, 1422, 'jb1390');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (206956, 154013, '3KRFA733NVX128535', 06-22-2009, 6000, 1600, 640, 'lg3370');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (107690, 154014, '5CMET196OWS475683', 07-13-2009, 18100, 5100, 2040, 'bt2336');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (303981, 154015, '7HGHA553ASR267431', 09-25-2009, 13330, 4130, 1652, 'mp4243');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (405643, 154016, '7IYRW553QOJ012504', 11-30-2009, 10390, 2990, 1196, 'tk1348');INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
web developerMartin Castner18teamSOLUTIONS
web interface19INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
PHP queries20INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
live demoONLINE WEB DATABASEhttp://php.scripts.psu.edu/mic5145/ist210/index.php21INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
security directorBrianna Malcolmson22teamSOLUTIONS
audience analysisINFORMATION NEEDSSales Commission Monthly Sales Reports Dealership Contacts InventoryASSOCIATED USERSCEOManager of salesGeneral managers and operations managers Sales people 23INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
organizational structure24INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
data analysisNomo employees and owners requireSimple and fast access to Relevant business information that can allow them  Greater efficiency and  Higher accuracy ensuring smarter business decisions25INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
security needsEach employee of NOMO Auto Group needs access to different parts of the database  Data needs to be protected from employees who do not need to access itData needs to be protected from outsiders trying to attack the system and alter data. 26INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
USER TYPECONTACT INFOCOMMISSIONSSALES REPORTSINDIVIDUAL/ PERSONAL SALESINVENTORYDBAYYYYYCEO/MANAGER OF SALESYYYYYGENERAL MANAGER/ OPERATIONS MANAGERYYYYYSALES PERSONYNNYYUSER DATA READ AND WRITE PERMISSIONS: Y/N?securitySOLUTION27INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
data access & securityLimitations to access the data and data SecurityUsers must have account and password created by the DBAWebsite is not accessible unless user ID and password are validatedRestricted Pages such as Commissions and Sales Reports are not accessible to users without permission.  This was achieved using PHP code to check the user trying to view the page then allow or deny access.28INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
business relations directorMike Holden29teamSOLUTIONS
business need & impactChange Management issuesChange management issues with moving to a new systemAnticipated employee reactions How the new database changes NOMO's current processes: Inventory control Tracking sales Salesperson contact information30INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
organizational planningWe will update the system with all previous information kept in spreadsheetsWeekly employee training sessionsMandatory for all employeesEach session is 1 hourEmployees must attend 4 sessions total before go live dateAnticipated "go live" date:January 11th 2010Ongoing tech support31INITIAL STUDY   DATABASE DESIGN   CODING   TESTING & EVALUATION
the X factorteam  SOLUTIONS32
theXfactor STRAIGHTFORWARD DESIGNUser-FriendlyVisually Appealing Interface ACCESSIBILITY & COLLABORATIONAccess the car inventory database from any web browserReal-time view of summary for board to view at any timeONGOING SUPPORTBusiness Relations Director is there for youLiason: Client to Company Software update checking dailyOn going tech support (24hr/day)33What makes us unique?teamSOLUTIONS
"MySQL vs. SQL Server." Custom Software Development.          Tometa Software. Web. 26 Oct. 2009. http://www.tometa           software.com/mysql_vs_sqlserver.asp.> "MySQL or SQL Server: Look beyond politics and hype when           deciding which to use." TechRepublic Articles. CBS          Interactive Inc., 18 Mar. 2003. Web. 26 Oct. 2009.            <http://articles.techrepublic.com.com/5100-10878_11-           1054385.html>.references34teamSOLUTIONS
QUESTIONS?teamSOLUTIONSMartin Castner, Bryant Crone, Mike Holden, Brianna Malcolmson, & Josh Wentz35

More Related Content

PPTX
Nomo1 Database Proposal Final
PDF
A comprehensive guide to Salesforce Org Strategy
PDF
FOUR51 -Forester TLP
PDF
How to use your CRM for upselling and cross-selling
PDF
Jagged Peak Supply Chain Solution
PDF
Microsoft Dynamics CRM 2013 elease preview guide
PDF
a-startup-guide-to-marketing-automation-for-sugarcrm
PPT
Redefining Integration - The End of the Black Box
Nomo1 Database Proposal Final
A comprehensive guide to Salesforce Org Strategy
FOUR51 -Forester TLP
How to use your CRM for upselling and cross-selling
Jagged Peak Supply Chain Solution
Microsoft Dynamics CRM 2013 elease preview guide
a-startup-guide-to-marketing-automation-for-sugarcrm
Redefining Integration - The End of the Black Box

Viewers also liked (20)

PPTX
Pearl Necklaces
PDF
Cost of Disinvestment Brief Pe Trusts
PDF
MARSE April 2009
PPT
Helping Young People Succeed 2007
PDF
Special Education Mandated from Birth
PPTX
121107 los romanticos_emotitoast2
PPT
Slideshow Prueba
PPT
DOC
MySQL 6.0 下的cluster + replicate - 20080220
PPT
Prezentacja Foresight 2
PPTX
Quality Program Indicators 2
PDF
Postgraduate Research @ Mayo Clinic Jacksonville
PPTX
Connecting With Students[1]
PPT
MJH STaR Chart
PPT
PPTX
20081202 Md Workbench Tool
PPTX
Historia De Engormix2
PPT
PDF
Hai Vision Video Furnace Overview
PDF
DEVELOPING A BALANCED PROJECT PORTFOLIO FOR A SOCIAL ENTERPRISE - THE CASE OF...
Pearl Necklaces
Cost of Disinvestment Brief Pe Trusts
MARSE April 2009
Helping Young People Succeed 2007
Special Education Mandated from Birth
121107 los romanticos_emotitoast2
Slideshow Prueba
MySQL 6.0 下的cluster + replicate - 20080220
Prezentacja Foresight 2
Quality Program Indicators 2
Postgraduate Research @ Mayo Clinic Jacksonville
Connecting With Students[1]
MJH STaR Chart
20081202 Md Workbench Tool
Historia De Engormix2
Hai Vision Video Furnace Overview
DEVELOPING A BALANCED PROJECT PORTFOLIO FOR A SOCIAL ENTERPRISE - THE CASE OF...
Ad

Similar to Nomo2 Final Product Presentation Final (20)

DOCX
Information Systems For Business and BeyondChapter 4Data a.docx
PDF
DB2 Web Query whats new
DOC
250755494-advertising-agency-management-system-1-doc.doc
PDF
Microsoft SQL Server - How to Collaboratively Manage Excel Data
PPTX
Assignment of database
PPTX
Data Warehosing -Security
PPTX
DATABASE MANAGEMENT
DOC
Resume for DB2 DBA LUW/AIX
PDF
Clase_6.1_Eq7.pdf Lengua y Cultura Extranjera
PPTX
System Analysis And Design
DOC
AhmedWasfi2015
PDF
Lançamento ERwin 08/02
DOC
Siva-CV
PPTX
Introduction to Information and Communication Technologyh
PPTX
Database fundamentals(database)
PPTX
Fundamentals of Database Design
PPT
W 8 introduction to database
PPT
Ch10
PPTX
Web Developer make the most out of your Database !
Information Systems For Business and BeyondChapter 4Data a.docx
DB2 Web Query whats new
250755494-advertising-agency-management-system-1-doc.doc
Microsoft SQL Server - How to Collaboratively Manage Excel Data
Assignment of database
Data Warehosing -Security
DATABASE MANAGEMENT
Resume for DB2 DBA LUW/AIX
Clase_6.1_Eq7.pdf Lengua y Cultura Extranjera
System Analysis And Design
AhmedWasfi2015
Lançamento ERwin 08/02
Siva-CV
Introduction to Information and Communication Technologyh
Database fundamentals(database)
Fundamentals of Database Design
W 8 introduction to database
Ch10
Web Developer make the most out of your Database !
Ad

More from Josh Wentz (9)

PPTX
Ae 372 Project 1 Presentation Final
PDF
Ae 372 Project 1 Final
PPTX
US Power Grid Vs. Smart Grid
PPTX
Ist 220 Network Based Solution Project
PPTX
SSAE Mentor Program
PPTX
Green Intelligent Building Conference Summary
PPTX
Building Energy Consumption Problems
PPTX
Motivational Volunteer For Fresh Start
PPTX
Energy Buisness Intelligence Power Point Cas100 A
Ae 372 Project 1 Presentation Final
Ae 372 Project 1 Final
US Power Grid Vs. Smart Grid
Ist 220 Network Based Solution Project
SSAE Mentor Program
Green Intelligent Building Conference Summary
Building Energy Consumption Problems
Motivational Volunteer For Fresh Start
Energy Buisness Intelligence Power Point Cas100 A

Recently uploaded (20)

PPTX
Benefits of Physical activity for teenagers.pptx
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
Abstractive summarization using multilingual text-to-text transfer transforme...
PDF
Flame analysis and combustion estimation using large language and vision assi...
PPTX
2018-HIPAA-Renewal-Training for executives
PDF
Two-dimensional Klein-Gordon and Sine-Gordon numerical solutions based on dee...
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PPT
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
PDF
A review of recent deep learning applications in wood surface defect identifi...
PDF
Five Habits of High-Impact Board Members
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
Architecture types and enterprise applications.pdf
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
DOCX
search engine optimization ppt fir known well about this
PDF
Enhancing emotion recognition model for a student engagement use case through...
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PPT
What is a Computer? Input Devices /output devices
PPT
Module 1.ppt Iot fundamentals and Architecture
PPTX
Chapter 5: Probability Theory and Statistics
Benefits of Physical activity for teenagers.pptx
Final SEM Unit 1 for mit wpu at pune .pptx
NewMind AI Weekly Chronicles – August ’25 Week III
Abstractive summarization using multilingual text-to-text transfer transforme...
Flame analysis and combustion estimation using large language and vision assi...
2018-HIPAA-Renewal-Training for executives
Two-dimensional Klein-Gordon and Sine-Gordon numerical solutions based on dee...
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
A review of recent deep learning applications in wood surface defect identifi...
Five Habits of High-Impact Board Members
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
Architecture types and enterprise applications.pdf
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
search engine optimization ppt fir known well about this
Enhancing emotion recognition model for a student engagement use case through...
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
What is a Computer? Input Devices /output devices
Module 1.ppt Iot fundamentals and Architecture
Chapter 5: Probability Theory and Statistics

Nomo2 Final Product Presentation Final

  • 1. Database Implementationfor  NOMO Auto GroupteamSOLUTIONSMartin Castner, Bryant Crone, Mike Holden, Brianna Malcolmson, & Josh Wentz1December 7, 2009
  • 4. scope of workSCALABILITYNOMO Auto Groups is a growing successful organizationOur solution will allow for the four existing location to expand even fartherMAXIMUM EFFICIENCYThe current database system needs to be updated improved to guarantee peak efficiencyTECHNOLOGICAL EDGEMaintain a technological edge on competitors through use of a cloud computing type accessible & collaborative databaseProblems Recap & teamSOLUTIONS…teamSOLUTIONS
  • 6. existingPROBLEMS6projectSOLUTIONSINITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 7. projectSOLUTIONSCENTRALIZEDdatabase housed in one locationeach of the dealer's inventorylisting of all automobiles currently owned by NOMO & dealership locationACCESSIBLEmany people can access the database at the same timeemployees from each location can access the same databaseREAL-TIMEdatabase is automatically updated throughout each location as soon as someone inputs informationup to date inventoryup to date sales informationSECUREkeep each individual’s commission privatenone of the salespeople know what other salespeople are making in terms of commissionSAFEGUARDS INPUT ERRORScheck in the system to maintain data integrity if employee enter a wrong amount for a car we receiveUSER-FRIENDLYstreamlined & integrated: login, input, compiled7INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 8. personnel resourcesINITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION 8
  • 10. existingPROBLEMSpreadsheets = Limited AccessFour Dealerships10INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 11. existingPROBLEM11UPDATESUPDATESINITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 13. databaseSOLUTIONCentralizedMultiple User Access13INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 14. INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION DBMS selection14
  • 15. database design15INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 17. SQL coding17CREATING THE DATABASECREATE TABLE Invoice( invoice_id NUMERIC PRIMARY KEY,customer_id NUMERIC NOT NULL,vin VARCHAR(20) NOT NULL,sale_date DATE NOT NULL,sale_price INTEGER NOT NULL,gross INTEGER NOT NULL,commission INTEGER NOT NULL,employee_id VARCHAR(255) NOT NULL,FOREIGN KEY (customer_id) REFERENCES Customers(customer_id),FOREIGN KEY (vin) REFERENCES Inventory(vin),FOREIGN KEY (employee_id) REFERENCES Employees(employee_id) );COMPILING THE DATABASEINSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (107689, 154012, '1HGFA553XJA126793', 06-05-2009, 8055, 3555, 1422, 'jb1390');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (206956, 154013, '3KRFA733NVX128535', 06-22-2009, 6000, 1600, 640, 'lg3370');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (107690, 154014, '5CMET196OWS475683', 07-13-2009, 18100, 5100, 2040, 'bt2336');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (303981, 154015, '7HGHA553ASR267431', 09-25-2009, 13330, 4130, 1652, 'mp4243');INSERT INTO Invoice (invoice_id, customer_id, vin, sale_date, sale_price, gross, commission, employee_id)VALUES (405643, 154016, '7IYRW553QOJ012504', 11-30-2009, 10390, 2990, 1196, 'tk1348');INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 19. web interface19INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 20. PHP queries20INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 21. live demoONLINE WEB DATABASEhttp://php.scripts.psu.edu/mic5145/ist210/index.php21INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 23. audience analysisINFORMATION NEEDSSales Commission Monthly Sales Reports Dealership Contacts InventoryASSOCIATED USERSCEOManager of salesGeneral managers and operations managers Sales people 23INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 24. organizational structure24INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 25. data analysisNomo employees and owners requireSimple and fast access to Relevant business information that can allow them  Greater efficiency and  Higher accuracy ensuring smarter business decisions25INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 26. security needsEach employee of NOMO Auto Group needs access to different parts of the database  Data needs to be protected from employees who do not need to access itData needs to be protected from outsiders trying to attack the system and alter data. 26INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 27. USER TYPECONTACT INFOCOMMISSIONSSALES REPORTSINDIVIDUAL/ PERSONAL SALESINVENTORYDBAYYYYYCEO/MANAGER OF SALESYYYYYGENERAL MANAGER/ OPERATIONS MANAGERYYYYYSALES PERSONYNNYYUSER DATA READ AND WRITE PERMISSIONS: Y/N?securitySOLUTION27INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 28. data access & securityLimitations to access the data and data SecurityUsers must have account and password created by the DBAWebsite is not accessible unless user ID and password are validatedRestricted Pages such as Commissions and Sales Reports are not accessible to users without permission.  This was achieved using PHP code to check the user trying to view the page then allow or deny access.28INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 29. business relations directorMike Holden29teamSOLUTIONS
  • 30. business need & impactChange Management issuesChange management issues with moving to a new systemAnticipated employee reactions How the new database changes NOMO's current processes: Inventory control Tracking sales Salesperson contact information30INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 31. organizational planningWe will update the system with all previous information kept in spreadsheetsWeekly employee training sessionsMandatory for all employeesEach session is 1 hourEmployees must attend 4 sessions total before go live dateAnticipated "go live" date:January 11th 2010Ongoing tech support31INITIAL STUDY DATABASE DESIGN CODING TESTING & EVALUATION
  • 32. the X factorteam  SOLUTIONS32
  • 33. theXfactor STRAIGHTFORWARD DESIGNUser-FriendlyVisually Appealing Interface ACCESSIBILITY & COLLABORATIONAccess the car inventory database from any web browserReal-time view of summary for board to view at any timeONGOING SUPPORTBusiness Relations Director is there for youLiason: Client to Company Software update checking dailyOn going tech support (24hr/day)33What makes us unique?teamSOLUTIONS
  • 34. "MySQL vs. SQL Server." Custom Software Development.          Tometa Software. Web. 26 Oct. 2009. http://www.tometa           software.com/mysql_vs_sqlserver.asp.> "MySQL or SQL Server: Look beyond politics and hype when           deciding which to use." TechRepublic Articles. CBS          Interactive Inc., 18 Mar. 2003. Web. 26 Oct. 2009.            <http://articles.techrepublic.com.com/5100-10878_11-           1054385.html>.references34teamSOLUTIONS
  • 35. QUESTIONS?teamSOLUTIONSMartin Castner, Bryant Crone, Mike Holden, Brianna Malcolmson, & Josh Wentz35

Editor's Notes

  • #6: Initial studyThrough interviews & NOMO Autogroups meetingsDatabase designDatabase accessed through the internetAccording to NOMO’s specificationsCodingMakes queries possibleMakes additional cars possible Testing & EvaluationWe’ve extensively tested our database accessed through the internet Today we will be demonstrating the solution that we’ve createdWe will continue to provide support through training
  • #7: WHAT WE KNOWinstructional designer, Stan Tocchet, to interview Byron Nelson, CEO of NOMO Auto GroupDE-CENTRALIZEDeach of the dealer’s inventory information is contained within their own location and is not centrally located for distributionusing an Excel spreadsheet at each dealershipINACCESSIBLE if one person has the spreadsheet open and is entering data, others can’t get access to itpeople will save personal copies of the spreadsheet for their own useSTATICgo and actually find the car to double checkspending too much time and money making phone calls and faxing inventory sheets between dealershipsNot all of the salespeople update the spreadsheets at each location in a timely mannerupdate the main spreadsheet at the end of each monthINSECUREevery employee should not be able to access certain informationSUSCEPTIBLE TO INPUT ERRORSforgetting to go back and enter data into it or entering incorrectly = inaccurate dataCOMPLICATEDdealership doesn’t really have anyone who specializes in the spreadsheets who can show us how to efficiently work with them
  • #9: Without personnel team, the complex task of completing the database design and development could not have been completedPersonnel ResourcesIdentify the resources used to implement the database including the following:·         The personnel used to complete the database design and development, the time spent on the project and job roles·         Anticipated personnel tasks not covered or completed in this SOWPersonnel, database implementation, time