Teradata数据仓库资深官方教材.ppt
《Teradata数据仓库资深官方教材.ppt》由会员分享,可在线阅读,更多相关《Teradata数据仓库资深官方教材.ppt(21页珍藏版)》请在咨信网上搜索。
1、Module 3:Teradata BasicsAfter completing this module,you will be able to:List and describe the major components of the Teradata architecture.Describe how the components interact to manage incoming and outgoing dataList 5 types of Teradata database objectsTeradata Storage ArchitectureNotes:The Parsin
2、g Engine dispatches request to insert a row.The Message Passing Layer insures that a row gets to the appropriate AMP(Access Module Processor).The AMP stores the row on its associated(logical)disk.An AMP manages a logical or virtual disk which is mapped to multiple physical disks in a disk array.Tera
3、dataAMP 4AMP 3AMP 1AMP 2Parsing Engine(s)Message Passing Layer1825441129075803266725Records From Client(in random sequence)2326712906547518258041Teradata Retrieval ArchitectureNotes:The Parsing Engine dispatches a request to retrieve one or more rows.The Message Passing Layer insures that the approp
4、riate AMP(s)are activated.The AMP(s)locate and retrieve desired row(s)in parallel access.Message Passing Layer returns to retrieved rows to PE.The PE returns row(s)to requesting client application.TeradataAMP 4AMP 3AMP 1AMP 2Parsing Engine(s)Message Passing Layer1825441129075803266725Rows retrieved
5、from table2326712906547518258041Multiple Tables on Multiple AMPsEMPLOYEE RowsDEPARTMENT RowsJOB RowsEMPLOYEE TableDEPARTMENT TableJOB TableParsing EngineAMP#1AMP#2AMP#3AMP#4Message Passing LayerNotes:Some rows from each table may be found on each AMP.Each AMP may have rows from all tables.Ideally,ea
6、ch AMP will hold roughly the same amount of data.EMPLOYEE RowsDEPARTMENT RowsJOB RowsEMPLOYEE RowsDEPARTMENT RowsJOB RowsEMPLOYEE RowsDEPARTMENT RowsJOB RowsLinear Growth and ExpandabilityAMPAMPParsingEngineAMPSESSIONSPARALLEL PROCESSINGDATADiskDiskDiskParsingEngineParsingEngineNotes:Teradata is a l
7、inearly expandable RDBMS.Components may be added as requirements grow.Linear scalability allows for increased workload without decreased throughput.Performance impact of adding components is shown below.USERSAMPsDATAPerformanceSameSameSameSameDoubleDoubleSameSameSameDoubleDoubleSameSameDoubleSameDou
8、bleTeradata ObjectsThere are eight types of objects which may be found in a Teradata database/user.Tables rows and columns of data Views predefined subsets of existing tablesMacros predefined,stored SQL statementsTriggers SQL statements associated with a tableStored Procedures program stored within
9、TeradataJoin and Hash Indexes separate index structures stored as objects within a databasePermanent Journals table used to store before and/or after images for recoveryDEFINITIONS OF ALL DATABASE OBJECTSDD/DThese objects are created,maintained and deleted using Structured Query Language(SQL).Object
10、 definitions are stored in the Data Dictionary/Directory(DD/D).DATABASE or USERTABLE 2TABLE 3TABLE 1VIEW 2VIEW 3VIEW 1MACRO 2MACRO 3MACRO 1TRIGGER 2TRIGGER 3TRIGGER 1Stored Procedure 1Stored Procedure 2Stored Procedure 2Join/Hash Index 1Join/Hash Index 2Join/Hash Index 3Permanent JournalThese arent
11、directly accessed by users.The Data Dictionary Directory(DD/D)The DD/D.is an integrated set of system tables contains definitions of and information about all objects in the system is entirely maintained by the RDBMS is“data about the data”or“metadata”is distributed across all AMPs like all tables m
12、ay be queried by administrators or support staff is accessed via Teradata supplied viewsExamples of DD/D views:DBC.Tables-information about all tablesDBC.Users-information about all usersDBC.AllRights-information about access rightsDBC.AllSpace-information about space utilizationStructured Query Lan
13、guage(SQL)SQL is a query language for Relational Database Systems.A fourth-generation languageA set-oriented languageA non-procedural language(e.g,doesnt have IF,GO TO,DO,FOR NEXT,or PERFORM statements)SQL consists of:Data Definition Language(DDL)Defines database structures(tables,users,views,macros
14、,triggers,etc.)CREATEDROPALTERData Manipulation Language(DML)Manipulates rows and data valuesSELECTINSERTUPDATEDELETEData Control Language(DCL)Grants and revokes access rightsGRANTREVOKETeradata SQL also includes Teradata Extensions to SQLHELPSHOWEXPLAINCREATE MACROCREATE TABLE Example of DDLCREATE
15、TABLEEmployee,FALLBACK(employee_number INTEGER NOT NULL,manager_emp_number INTEGER,dept_number SMALLINT,job_codeINTEGERCOMPRESS,last_nameCHAR(20)NOT NULL,first_nameVARCHAR(20),hire_dateDATE FORMAT YYYY-MM-DD,birth_dateDATE FORMAT YYYY-MM-DD,salary_amount DECIMAL(10,2)UNIQUE PRIMARY INDEX(employee_nu
16、mber),INDEX(dept_number);Other DDL ExamplesCREATE INDEX(job_code)ON Employee;DROP INDEX(job_code)ON Employee;DROP TABLE Employee;ViewsViews are pre-defined subsets of existing tables consisting of specified columns and/or rows from the table(s).A single table view:is a window into an underlying tabl
17、e allows users to read and update a subset of the underlying table has no data of its ownMANAGEREMPLOYEEEMPDEPTJOBLASTFIRSTHIREBIRTHSALARYNUMBERNUMBERNUMBERCODENAMENAMEDATEDATEAMOUNT10061019301312101SteinJohn861015 631015394500010081019301312102KanieskiCarol870201 680517392500010050801403431100RyanL
18、oretta861015 650910412000010041003401412101JohnsonDarlene 861015 560423463000010071005403432101VillegasArnando 870102 470131597000010030801401411100TraderJames860731 5706194785000EMPLOYEE(Table)PKFKFKFK EMP NO DEPT NO LAST NAME FIRST NAME HIRE DATE 1005 403 Villegas Arnando 870102 801 403 Ryan Loret
19、ta 861015Emp_403(View)Multi-Table ViewsA multi-table view allows users to access data from multiple tables as if it were in a single table.Multi-table views are also called join views.Join views are used for reading only,not updating.EMPLOYEE(Table)10061019301312101SteinJohn861015 631015394500010081
20、019301312102KanieskiCarol870201 680517392500010050801403431100RyanLoretta861015 650910412000010041003401412101JohnsonDarlene 861015 560423463000010071005403432101VillegasArnando 870102 470131597000010030801401411100TraderJames860731 5706194785000MANAGEREMPLOYEEEMPDEPTJOBLASTFIRSTHIREBIRTHSALARYNUMBE
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Teradata 数据仓库 资深 官方 教材
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【a199****6536】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【a199****6536】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。