博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EBS表后缀的意义
阅读量:7157 次
发布时间:2019-06-29

本文共 1433 字,大约阅读时间需要 4 分钟。

Object Name Function of the object E.g.
_ALL Underlying table with all the values PO_DISTRIBUTIONS_ALL
_B Base of underlying table, same as _ALL MTL_SYSTEM_ITEMS_B
_TL Language translation table with translation of descriptive fields in different languages FND_RESPONSIBILITY_TL
_VL View based on translation table,are views for multi language tables which combines the row of the base table with the corresponding row of the _TL table where the LANGUAGE = USERENV('LANG').  
_V tables are the views created on base tables PJM_PROJECTS_ALL_V
_BASIC_V View on top of the Basic table  
_DFV Descriptive Flex Field related view, it will have the defined values as Column names instead of generic attribute 1, ..2  
_KFV Key Flex Field views contain the concatenated fields as it would be displayed to the user. For e.g. A field may consist of Division, Department and Account fields and the KFV will have the concatenated values.eg.GL_CODE_COMBINATIONS_KFV
_S are sequences, used for finding new values for the primary key of a table.  
_A are Audit Shadow Tables  
_AVN and _ACN are Audit Shadow Views (when data was changed, and with what values  
SELECT * FROM dba_objects WHERE object_name LIKE 'MTL%_KFV' AND object_type = 'VIEW'可以见MTL下的KFV主要包括Item,SO,Locator,Categories..

MTL_SYSTEM_ITEMS_B_KFV
MTL_SYSTEM_ITEMS_B1_KFV
MTL_SALES_ORDERS_KFV
MTL_ITEM_LOCATIONS_KFV
MTL_ITEM_CATALOG_GROUPS_B_KFV
MTL_GENERIC_DISPOSITIONS_KFV
MTL_CATEGORIES_B_KFV

转载地址:http://roegl.baihongyu.com/

你可能感兴趣的文章
命令收集
查看>>
《0bug-C/C++商用工程之道》节选01--内存栈-1
查看>>
写好一个项目不容易
查看>>
类似微信5.x朋友圈的弹出框评论功能
查看>>
检测到会话cookie中缺少HttpOnly属性
查看>>
Centos 6.5 python 2.6.6 升级到 2.7.3,并安装easy_install和pip工具过程
查看>>
我的友情链接
查看>>
嵌套循环连接,哈希连接,排序合并连接(2015-2-4学习日记)
查看>>
jquery each的用法
查看>>
git 入门第一节 创建版本库 及 相关命令使用
查看>>
mysql 5.7 初始密码问题
查看>>
读《HeadFirst设计模式》笔记之单例模式
查看>>
我的友情链接
查看>>
vs下.def文件使用无效问题
查看>>
数字万用表的使用_易天教学
查看>>
Hexo+Github部署自己的博客
查看>>
shell 目录
查看>>
初用 Git 小问题解决备忘录
查看>>
yii 显示调试信息及数据库配置
查看>>
mysql 用户权限操作
查看>>