BC030_2.04.1 ABAP Dictionary Tables in Relational Databases.

Slides:



Advertisements
Similar presentations
13 Copyright © 2005, Oracle. All rights reserved. Monitoring and Improving Performance.
Advertisements

Module 2: Database Architecture
Users & Authorization Users must be setup and roles assigned to user master records before you can use the SAP System. A user can only log on to the system.
SE 464: Industrial Information systems Most Images and inform. used in these slides are SAP © Not to be used for other than educational purposes Systems.
Updating Databases With Open SQL
SAP/R3 Development workbench Data Dictionary R/3 table types: –Transparent tables Each table definition in DDIC has an underlying physical table of same.
5 Copyright © 2005, Oracle. All rights reserved. Managing Database Storage Structures.
 SAP AG 2002 Central business partner basics Roles, relationships, partner functions SAP business partner functions Exchange of CRM business partners.
 SAP AG CSU Chico Searching and Selecting Data from R/3 ABAP/4 class Gail Corbitt - Fall 1998.
15 Copyright © 2004, Oracle. All rights reserved. Monitoring and Managing Memory.
Introduction to the ABAP Data Dictionary
File Management Chapter 12. File Management File management system is considered part of the operating system Input to applications is by means of a file.
Toolbox Mirror -Overview Effective Distributed Learning.
#4502 – Streamlining the Physical Inventory Process Using a Custom Solution.
University of Southern California Enterprise Wide Information Systems ABAP/ 4 Programming Language Instructor: Richard W. Vawter.
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design Copyright 2000 © John Wiley & Sons, Inc. All rights reserved. Slide 1 Key.
Microsoft SQL Server Administration for SAP SQL Server with SAP.
1 File Management Chapter File Management File management system consists of system utility programs that run as privileged applications Input to.
Databases Chapter 11.
File Management Chapter 12.
Objectives By the end of today’s class you will be able to… –Describe the major steps in the interaction design process –Explain the importance of iterative.
1 Copyright © 2005, Oracle. All rights reserved. Introduction.
File Management Chapter 12. File Management File management system is considered part of the operating system Input to applications is by means of a file.
Introduction to Databases. Overview  What is a Database?  What is a Database Management System?  How is information organized in a database?  What.
Concepts of Database Management, Fifth Edition Chapter 8: Database Administration.
9 Copyright © 2005, Oracle. All rights reserved. Administering User Security.
1 Oracle Database 11g – Flashback Data Archive. 2 Data History and Retention Data retention and change control requirements are growing Regulatory oversight.
Index tuning Performance Tuning. Overview Index An index is a data structure that supports efficient access to data Set of Records index Condition on.
Oracle9i Performance Tuning Chapter 1 Performance Tuning Overview.
1.
BW Know-How Call : Performance Tuning dial-in phone numbers! U.S. Toll-free: (877) International: (612) Passcode: “BW”
Module One Logon and Overview
User Dialog Overview. Update Statement TABLES customers. SELECT SINGLE * FROM customers WHERE id = 1. IF sy-subrc = 0. customers-name = ‘John’. UPDATE.
Down Payment Requests Overview Complete this table to indicate how the procedure should be communicated. Delete those sections not applicable or enter.
0 UMN 2011 ERP Terapan SAP BASIS System Monitoring (CCMS) Session # 5.
INTRODUCTION TO DBS Database: a collection of data describing the activities of one or more related organizations DBMS: software designed to assist in.
5 Copyright © 2005, Oracle. All rights reserved. Managing Database Storage Structures.
Ch6. Introduction to Database. What is a Database? Database is a collection of related information. It is organized so that it can easily be accessed,
System design : files. Data Design Concepts  Data Structures  A file or table contains data about people, places or events that interact with the system.
1 Copyright © 2005, Oracle. All rights reserved. Introduction.
SQLintersection Putting the "Squeeze" on Large Tables Improve Performance and Save Space with Data Compression Justin Randall Tuesday,
ABAP Dictionary Introduction Tables in the ABAP Dictionary Performance in Table Access Consistency through Input Check Dependencies of ABAP Dictionary.
Introduction to the ABAP System. Slide 2 The Data Browser Allows us to look at the underlying table contents Use transaction code SE16.
Employee Self Service Review and Print Benefits Confirmation 1.
SAP’s Data Dictionary Learning to use it effectively FSS Technical Peer Group Meeting Wednesday November 13, 2002 Carolyn Fuller.
3 Copyright © 2004, Oracle. All rights reserved. Creating an Oracle Database.
File Management Chapter File Management File management system consists of system utility programs that run as privileged applications Input to.
ERPAdmin SAP Performance Tuning
Query Optimization Cases. D. ChristozovINF 280 DB Systems Query Optimization: Cases 2 Executable Block 1 Algorithm using Indices (if available) Temporary.
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
October 15-18, 2013 Charlotte, NC Accelerating Database Performance Using Compression Joseph D’Antoni, Solutions Architect Anexinet.
8 Copyright © 2005, Oracle. All rights reserved. Managing Schema Objects.
3 Copyright © 2004, Oracle. All rights reserved. Database Architecture Comparison.
SAP R/3 User Administration1. 2 User administration in a productive environment is an ongoing process of creating, deleting, changing, and monitoring.
3 Copyright © 2006, Oracle. All rights reserved. Designing and Developing for Performance.
SAP Tuning 실무 SK㈜ ERP TFT.
Oracle Database Architectural Components
1 Copyright © 2005, Oracle. All rights reserved. Oracle Database Administration: Overview.
SAP ABAP HR Online Training
SAP ECC 6.0 DEVELOPMENT ABAP ABAP DICTIONARY & Advanced Editor Abap
The Vocabulary of Performance Tuning
The Vocabulary of Performance Tuning
Chapter 8 – Part II. A glimpse at indices and workloads
The Vocabulary of Performance Tuning
Unit 8 Search Help 、 Unit 7 Views
Updating Databases With Open SQL
Maintenance of data warehouse
Database administration
The Vocabulary of Performance Tuning
Updating Databases With Open SQL
Presentation transcript:

BC030_ ABAP Dictionary Tables in Relational Databases

BC030_ Objectives The participants will be able to: –Describe the different types of tables in the SAP ABAP Dictionary –Explain the technical settings for optimizing the storage and maintenance requirements –Describe indexing performance benefits

BC030_ SAP Table Types Transparent Table (TRANSP) Structure (INTTAB) Pool TableCluster Table View

BC030_ Transparent Tables Type = TRANSP Master Data

BC030_ Table Type TRANSP in the Database DB PROFILE

BC030_ Mapping a Table of Type INTTAB DB x PROFILE

BC030_ Pool and Cluster Tables: Overview Pool Table Cluster Table

BC030_ Master Transaction Organization & Customizing User Technical Settings Data class Number of data records in Database storage Single records, generic, full, not buffered On or off Size category Buffering Log data changes

BC030_ Master dataUser data Data Class Organization and Customizing data Transaction data DB

BC030_ Size Categories

BC030_ Buffering Type None Single RecordGenericFull KF1 KF2 KF3 F4 F5 F6

BC030_ Logging

BC030_ Maintaining Technical Settings Data Class Size Category Buffering Type Logging

BC030_ ABAP Dictionary DB Database Utility

BC030_ Index

BC030_ IndexTable Last NameFirst NamePointer AdamsAnthony IDLast NameFirst NameSalary ZelkovaZephyr Employee Names Employees Database Indexes Burrows Jones Furia Peters Treske Gregory Gerry Fred Tim Jimmy Beth Carolin

BC030_ The Telephone Book Analogy

BC030_ The Telephone Book Analogy (Continued)

BC030_ The Index Range Scan

BC030_ The Unique Index Scan

BC030_ Evaluating the Various Types of Scans Unique Index Scan Index Range Scan Full Table Scan

BC030_ Summary The participants should be able to: –Describe the different types of tables in the SAP ABAP Dictionary –Explain the technical settings for optimizing the storage and maintenance requirements –Describe indexing performance benefits