当前位置:网站首页>数据字典中的三种类型数据表
数据字典中的三种类型数据表
2022-08-06 20:32:00 【Harryjing2018】
1 Introduction.
In the sap ,there are three kinds of table. I will demostrate it in the detail. They
are Transparent table ,Pooles tabel,Cluster tables.
2 Detail
Transparent table: One to one relation
One table in data dictionary equal to one table in data base.
i. e When u create one transparent tabel in ABAP dictionary one table will be created in Database(Typically Oracle, U can have others also) with same name(Both tabel and fields).
Basically used to hold application data.
EG: EKKO,VBAK etc.
Pooles tabel: Many to one relationship
Many tables in ABAP dictionary equal to one table pool in database. Basically used to hold system data and customization data. One table pool contains large number of pooled tables having data of around 100 records each.
Cluster tables: Many to one relationship
Many tables in ABAP dictionary equal to one table cluster in database. Basically used to hold application data. One table cluster contains few number of cluster tables having data of around large quantities.(In lakhs)
eg:CDPOS, BSEG etc.
Incase of pooled and cluster tables ABAP data dictionary table name and Data base table and field names differs unlike same in case transparent table.
There are some limitations on cluster tables like we can’t use joins on these tables, Select on cluster table is always very slow.
When ever we write query on any cluster table in the table cluster data will be fetced for all the table as data for all the tables in the cluster stores as a single record.
In reality we hardly create pooled and cluster tables.
边栏推荐
猜你喜欢
随机推荐
Pytest学习-读取YAML文件
外贸独立站该怎样推广?
Unity API详解——GameObject类
Logic Vulnerability Summary
如何运营独立站?
[C language] Comprehensively analyze the structure, organize the knowledge points of the structure
从0到1构建可视化大屏-员工管理
复现一个循环问题以及两个循环问题
Redis+Redisson 基础配置和使用
leetcode 769. Max Chunks To Make Sorted 最多能完成排序的块(中等)
LeetCode_730_每日温度
The optimization method to solve the slow loading of the website caused by Google AdSense
【目标检测】小脚本:Xml标签可视化
mysql索引
什么是外贸独立站,如何做好独立站运营
[target detection] small script: Xml tag visualization
外贸独立站运营,全网运营新模式
Kotlin - Coroutine Builder CoroutineBuilder
电商巨头困境反转,阿里和亚马逊的殊途同归
边缘计算:盘点100个知识点









