版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
FoundationsofBusinessIntelligence:DatabasesandInformationManagementStudentLearningObjectivesEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementHowdoesarelationaldatabaseorganizedata?Whataretheprinciplesofadatabasemanagementsystem?Whataretheprincipaltoolsandtechnologiesforaccessinginformationfromdatabasestoimprovebusinessperformanceanddecisionmaking?Whatistheroleofinformationpolicyanddataadministrationinthemanagementoforganizationaldataresources?Whyisdataqualityassurancesoimportantforabusiness?StudentLearningObjectivesEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementStudentLearningObjectivesEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementLearningTracksDatabaseDesign,Normalization,andEntity-RelationshipDiagrammingIntroductiontoSQLHierarchicalandNetworkDataModelsVideoCasesCase1:DubuqueUsesCloudComputingandSensorstoBuildaSmarterCityCase2:DataWarehousingatREI:UnderstandingtheCustomerCase3:MarutiSuzukiBusinessIntelligenceandEnterpriseDatabasesBetterDataManagementHelpstheTorontoGlobeandMailReachItsCustomersProblem:
DatafragmentedinisolateddatabasesandfilesTime-consumingreportingprocessesOutdateddatamanagementtechnologySolution:Replacedisparatesystemswithenterprisesystem,withcentralizedmainframeanddatamanagementsystemEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementSAPenterprisesystemwithSAPNetWeaverBWdatawarehousetocontainallcompany’sdata;educateusersandtoolsDemonstratesIT’sroleinsuccessfuldatamanagementIllustratesdigitaltechnology’sabilitytolowercostswhileimprovingperformanceEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementBetterDataManagementHelpstheTorontoGlobeandMailReachItsCustomersEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementBetterDataManagementHelpstheTorontoGlobeandMailReachItsCustomersTheDatabaseApproachtoDataManagementDatabase:Collectionofrelatedfilescontainingrecordsonpeople,places,orthings.Priortodigitaldatabases,businessusedfilecabinetswithpaperfiles.Entity:Generalizedcategoryrepresentingperson,place,thingonwhichwestoreandmaintaininformationForexample:SUPPLIER,PARTAttributes:Specificcharacteristicsofeachentity:SUPPLIERname,addressPARTdescription,unitprice,supplierEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementTheDatabaseApproachtoDataManagementRelationaldatabase:Organizedataintotwo-dimensionaltables(relations)withcolumnsandrows.Onetableforeachentity:Forexample:(CUSTOMER,SUPPLIER,PART,SALES)Fields(columns)storedatarepresentinganattribute.Rowsstoredataforseparaterecords,ortuples.Keyfield:uniquelyidentifieseachrecord.Primarykey:OnefieldineachtableCannotbeduplicatedProvidesuniqueidentifierforallinformationinanyrowEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementARelationalDatabaseTableFigure6-1Arelationaldatabaseorganizesdataintheformoftwo-dimensionaltables.IllustratedhereisatablefortheentitySUPPLIERshowinghowitrepresentstheentityanditsattributes.Supplier_Numberisthekeyfield.TheDatabaseApproachtoDataManagementEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementThePARTTableFigure6-2DatafortheentityPARThavetheirownseparatetable.Part_NumberistheprimarykeyandSupplier_Numberistheforeignkey,enablinguserstofindrelatedinformationfromtheSUPPLIERtableaboutthesupplierforeachpart.TheDatabaseApproachtoDataManagementEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementTheDatabaseApproachtoDataManagementEstablishingrelationshipsEntity-relationshipdiagramUsedtoclarifytablerelationshipsinarelationaldatabaseRelationaldatabasetablesmayhave:One-to-onerelationshipOne-to-manyrelationshipMany-to-manyrelationshipRequires“jointable”orintersectionrelationthatlinksthetwotablestojoininformationEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementASimpleEntity-RelationshipDiagramFigure6-3ThisdiagramshowstherelationshipbetweentheentitiesSUPPLIERandPART.TheDatabaseApproachtoDataManagementEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementTheDatabaseApproachtoDataManagementNormalizationProcessofstreamliningcomplexgroupsofdatato:Minimizeredundantdataelements.Minimizeawkwardmany-to-manyrelationships.Increasestabilityandflexibility.ReferentialintegrityrulesUsedbyrelationaldatabasestoensurethatrelationshipsbetweencoupledtablesremainconsistent.Forexample:whenonetablehasaforeignkeythatpointstoanothertable,youmaynotaddarecordtothetablewithforeignkeyunlessthereisacorrespondingrecordinthelinkedtable.EssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementSampleOrderReportFigure6-4TheshadedareasshowwhichdatacamefromtheSUPPLIER,LINE_ITEM,andORDERtables.ThedatabasedoesnotmaintaindataonExtendedPriceorOrderTotalbecausetheycanbederivedfromotherdatainthetables.TheDatabaseApproachtoDataManagementEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementTheFinalDatabaseDesignwithSampleRecordsFigure6-5Thefinaldesignofthedatabaseforsuppliers,parts,andordershasfourtables.TheLINE_ITEMtableisajointablethateliminatesthemany-to-manyrelationshipbetweenORDERandPART.TheDatabaseApproachtoDataManagementEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementEntity-RelationshipDiagramfortheDatabasewithFourTablesFigure6-6ThisdiagramshowstherelationshipbetweentheentitiesSUPPLIER,ART,LINE_ITEM,andORDER.TheDatabaseApproachtoDataManagementEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementSpecifictypeofsoftwareforcreating,storing,organizing,andaccessingdatafromadatabaseSeparatesthelogicalandphysicalviewsofthedataLogicalview:howendusersviewdataPhysicalview:howdataareactuallystructuredandorganizedExamplesofDBMS:MicrosoftAccess,DB2,OracleDatabase,MicrosoftSQLServer,MySQL,DBMSDatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementHumanResourcesDatabasewithMultipleViewsFigure6-7Asinglehumanresourcesdatabaseprovidesmanydifferentviewsofdata,dependingontheinformationrequirementsoftheuser.Illustratedherearetwopossibleviews,oneofinteresttoabenefitsspecialistandoneofinteresttoamemberofthecompany’spayrolldepartment.DatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementOperationsofaRelationalDBMSSelect:CreatesasubsetofallrecordsmeetingstatedcriteriaJoin:CombinesrelationaltablestopresenttheserverwithmoreinformationthanisavailablefromindividualtablesProject:CreatesasubsetconsistingofcolumnsinatablePermitsusertocreatenewtablescontainingonlydesiredinformationDatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementTheThreeBasicOperationsofaRelationalDBMSFigure5-8Theselect,project,andjoinoperationsenabledatafromtwodifferenttablestobecombinedandonlyselectedattributestobedisplayed.DatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementFigure6-8CapabilitiesofDatabaseManagementSystemsDatadefinitioncapabilities:Specifystructureofcontentofdatabase.Datadictionary:Automatedormanualfilestoringdefinitionsofdataelementsandtheircharacteristics.Queryingandreporting:DatamanipulationlanguageStructuredquerylanguage(SQL)MicrosoftAccessquery-buildingtoolsReportgeneration,forexample,CrystalReportsDatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementAccessDataDictionaryFeaturesFigure6-9MicrosoftAccesshasarudimentarydatadictionarycapabilitythatdisplaysinformationaboutthesize,format,andothercharacteristicsofeachfieldinadatabase.DisplayedhereistheinformationmaintainedintheSUPPLIERtable.ThesmallkeyicontotheleftofSupplier_Numberindicatesthatitisakeyfield.DatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementExampleofanSQLQueryFigure6-10IllustratedherearetheSQLstatementsforaquerytoselectsuppliersforparts137or150.TheyproducealistwiththesameresultsasFigure6-8.DatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementAnAccessQueryFigure6-11IllustratedhereishowthequeryinFigure6-10wouldbeconstructedusingMicrosoftAccessquery-buildingtools.Itshowsthetables,fields,andselectioncriteriausedforthequery.DatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementNon-RelationalDatabasesDevelopedtohandlelargedatasetsofdatathatisnoteasilyorganizedintotables,columns,androws“NoSQL”:Non-relationaldatabasetechnologiesNon-relationalDBMSUsemoreflexibledatamodelDon’trequireextensivestructuringCanmanageunstructureddata,suchassocialmediaandgraphicsForexample:Amazon’sSimpleDBDatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementCloudDatabasesRelationaldatabaseenginesprovidedbycloudcomputingservices,suchasAmazonPricingbasedonusageAppealtoWeb-focusedbusinesses,smallormedium-sizedbusinessesseekinglowercoststhandevelopingandhostingin-housedatabasesForexample:AmazonRelationalDatabaseServiceOffersMySQL,MicrosoftSQLServer,OracleDatabaseenginesPrivatecloudsDatabaseManagementSystemsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementUsingDatabasestoImproveBusinessPerformanceandDecisionMakingMassivequantitiesofunstructuredandsemi-structureddatafromInternetandnetworkedservicesandapplicationsBigdatasetsprovidemorepatternsandinsightsthansmallerdatasets,forexample:CustomerbehaviorWeatherpatternsRequiresnewtechnologiesandtoolsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementTheChallengeofBigDataUsingDatabasestoImproveBusinessPerformanceandDecisionMakingArrayoftoolsforobtainingusefulinformationfrominternalandexternalsystemsandbigdataDatawarehousesDatamartsHadoopIn-memorycomputingAnalyticalplatformsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementBusinessIntelligenceInfrastructureDataWarehousesUsingDatabasestoImproveBusinessPerformanceandDecisionMakingDatawarehouse:DatabasethatstorescurrentandhistoricaldatathatmaybeofinteresttodecisionmakersConsolidatesandstandardizesdatafrommanysystems,operationalandtransactionaldatabasesDatacanbeaccessedbutnotalteredDatamart:SubsetofdatawarehousesthatishighlyfocusedandisolatedforaspecificpopulationofusersEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementHadoopUsingDatabasestoImproveBusinessPerformanceandDecisionMakingOpen-sourcesoftwareframeworkfromApacheDesignedforbigdataBreaksdatataskintosub-problemsanddistributestheprocessingtomanyinexpensivecomputerprocessingnodesCombinesresultintosmallerdatasetthatiseasiertoanalyzeKeyservicesHadoopDistributedFileSystem(HDFS)MapReduceEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementIn-MemoryComputingUsingDatabasestoImproveBusinessPerformanceandDecisionMakingReliesoncomputer’smainmemory(RAM)fordatastorageEliminatesbottlenecksinretrievingandreadingdatafromhard-diskbaseddatabasesDramaticallyshortensqueryresponsetimesEnabledbyHigh-speedprocessorsMulticoreprocessingFallingcomputermemorypricesLowersprocessingcostsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementAnalyticPlatformsUsingDatabasestoImproveBusinessPerformanceandDecisionMakingPreconfiguredhardware-softwaresystemsDesignedforqueryprocessingandanalyticsUsebothrelationalandnon-relationaltechnologytoanalyzelargedatasetsIncludein-memorysystems,NoSQLDBMSForexample:IBMNetezzaIntegrateddatabase,server,storagecomponentsEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementUsingDatabasestoImproveBusinessPerformanceandDecisionMakingFigure6-12Acontemporarybusinessintelligenceinfrastructurefeaturescapabilitiesandtoolstomanageandanalyzelargequantitiesanddifferenttypesofdatafrommultiplesources.Easy-to-usequeryandreportingtoolsforcasualbusinessusersandmoresophisticatedanalyticaltoolsetsforpowerusersareincluded.ContemporaryBusinessIntelligenceInfrastructureEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementAnalyticalTools:Relationships,Patterns,TrendsUsingDatabasestoImproveBusinessPerformanceandDecisionMakingOncedatagathered,toolsarerequiredforconsolidating,analyzing,andinsighttoimprovedecisionmakingSoftwarefordatabasequeryingandreportingMultidimensionaldataanalysis(OLAP)DataminingEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementSupportsmultidimensionaldataanalysis,enablinguserstoviewthesamedataindifferentwaysusingmultipledimensionsEachaspectofinformation—product,pricing,cost,region,ortimeperiod—representsadifferentdimensionForexample:comparingsalesinEastinJuneversusMayandJulyEnablesuserstoobtainonlineanswerstoadhocquestionssuchastheseinafairlyrapidamountoftimeOnlineAnalyticalProcessing(OLAP)UsingDatabasestoImproveBusinessPerformanceandDecisionMakingEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementUsingDatabasestoImproveBusinessPerformanceandDecisionMakingFigure6-13Theviewthatisshowingisproductversusregion.Ifyourotatethecube90degrees,thefacethatwillshowisproductversusactualandprojectedsales.Ifyourotatethecube90degreesagain,youwillseeregionversusactualandprojectedsales.Otherviewsarepossible.MultidimensionalDataModelEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementFindshiddenpatternsandrelationshipsinlargedatabasesandinfersrulesfromthemtopredictfuturebehaviorTypesofinformationobtainablefromdataminingAssociations:occurrenceslinkedtosingleeventSequences:eventslinkedovertimeClassifications:patternsdescribingagroupanitembelongstoClustering:discoveringasyetunclassifiedgroupingsForecasting:usesseriesofvaluestoforecastfuturevaluesDataMiningUsingDatabasestoImproveBusinessPerformanceandDecisionMakingEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementInteractiveSession:OrganizationsBusinessIntelligenceHelpstheCincinnatiZooKnowItsCustomersUsingDatabasestoImproveBusinessPerformanceandDecisionMakingReadtheInteractiveSessionandthendiscussthefollowingquestions:Whatpeople,organization,andtechnologyfactorswerebehindCincinnatiZoolosingopportunitiestoincreaserevenue?Whywasreplacinglegacypoint-of-salesystemsandimplementingadatawarehouseessentialtoaninformationsystemsolution?DescribethetypesofinformationgleanedfromdataminingthathelpedtheZoobetterunderstandvisitorbehavior.HowdidtheCincinnatiZoobenefitfrombusinessintelligence?Howdiditenhanceoperationalperformanceanddecisionmaking?TheZoo’smanagementrecentlystatedthatitmighthavetoaskformorerevenuefromtaxesinordertoprovidethesamelevelofqualityandserviceinthefuture.Howmightbusinessintelligencebeusedtopreventthisfromhappening?EssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementTextMiningUnstructureddata(mostlytextfiles)accountsfor80percentofanorganization’susefulinformation.Textminingallowsbusinessestoextractkeyelementsfrom,discoverpatternsin,andsummarizelargeunstructureddatasets.SentimentanalysisMinesonlinetextcommentsorine-mailtomeasurecustomersentimentUsingDatabasestoImproveBusinessPerformanceandDecisionMakingEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementWebMiningDiscoveryandanalysisofusefulpatternsandinformationfromtheWebForexample:tounderstandcustomerbehavior,evaluateWebsite,quantifysuccessofmarketingContentmining—minescontentofWebsitesStructuremining—minesWebsitestructuralelements,suchaslinksUsagemining—minesuserinteractiondatagatheredbyWebserversUsingDatabasestoImproveBusinessPerformanceandDecisionMakingEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementFirmsusetheWebtomakeinformationfromtheirinternaldatabasesavailabletocustomersandpartners.MiddlewareandothersoftwaremakethispossibleWebserverApplicationserversorCGIDatabaseserverWebinterfacesprovidefamiliaritytousersandsavingsoverredesigninglegacysystems.DatabasesandtheWebUsingDatabasestoImproveBusinessPerformanceandDecisionMakingEssentialsofManagementInformationSystemsChapter6FoundationsofBusinessIntelligence:Databasesand
InformationManagementUsingDatabasestoImproveBusinessPerformanceandDecisionMakingFigure6-14Usersaccessanorganization’sinternaldatabasethroughtheWebusingtheirdesktopPCsandWebbrowsersoftware.Link
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 《不动点通识讲稿图》课件
- 《狼群演示型》课件
- 三年级上册科学教科版课件第8课 它们发生了什么变化
- 大班科学《会变的水》课件教案
- 墙柱面工程教学课件
- 2023年浙江省衢州市公开招聘警务辅助人员(辅警)笔试经典自测卷(1)含答案
- 2022年浙江省衢州市公开招聘警务辅助人员(辅警)笔试自考练习卷一含答案
- 2024年山西省晋中市公开招聘警务辅助人员(辅警)笔试经典自测卷(1)含答案
- 2022年江西省南昌市公开招聘警务辅助人员(辅警)笔试模拟自测题(B)卷含答案
- 《专题综合突破》课件
- 电力变压器技术改造项目可行性研究报告
- 《静女》《涉江采芙蓉》《鹊桥仙》教学设计 统编版高中语文必修上册
- 2023新能源风电场EPC招标线路工程技术规范书
- 水池清洗及消毒记录表
- 韩国历届总统结局
- 2023年全国中小学思政课教师网络培训研修总结心得体会
- 排球的体能训练计划
- 公务用车服务应急预案
- LED电子显示屏投标书(技术标)
- 2023春国家开放大学-00721机械制图-期末考试题带答案
- 京东云+智慧网点与数字化营销运营白皮书
评论
0/150
提交评论