Oracle Forms Dependency

我是研究僧i 提交于 2019-12-11 18:51:20

问题


Does anyone know of any tool that could give me a dependency map for an oracle 6i form? If not a tool, then some technique I could use to analyze form dependencies such as other forms called, table or procedure used by a particular form.


回答1:


One technique that may be useful is to convert your .fmb files to text files .fmt. You find the option in Oracle Forms Builder under File -> Administration -> Convert.

The resulting .fmt file contains a lot of text that may or may not be useful to you.

An example:

TABLE USAGES
  BASE   NGM_DATASET                   SEL INS UPD DEL

REFERENTIAL INTEGRITY RULES
Block DATASETS
  Deletion of NGM_DATASET prevented if NGM_EXPORT_LEVERING records exist
  Foreign key(s): NGM_ELG_FILTERDST_FK
  Deletion of NGM_DATASET causes deletion of NGM_OBJECTSELECTIE
  Foreign key(s): NGM_OSE_DST_FK
  Deletion of NGM_DATASET prevented if NGM_SPATIAL_QUERY records exist
  Foreign key(s): NGM_OSE_DST_FK,NGM_SQY_OSE_FK_1
  Deletion of NGM_DATASET prevented if NGM_SPATIAL_QUERY records exist

Maybe it's possible to write some code that extracts the information you need from this.




回答2:


You can check two tools: ODA object dependencies analyzer The ODA has Form viewer for to look Form dependencies against Oracle database object and ORCL Toolbox with a forms power search.



来源:https://stackoverflow.com/questions/10708887/oracle-forms-dependency

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!