zoukankan      html  css  js  c++  java
  • oracle学习

    相关的数据字典
      USER_SOURCE 用户的存储过程、函数的源代码字典
      DBA_SOURCE 整个系统所有用户的存储过程、函数的源代码字典
      ALL_SOURCE 当前用户能使用的存储过程(包括其她用户授权)、函数的源代码字典

      USER_ERRORS 用户的存储过程、函数的源代码存在错误的信息字典

     procedure_name是指存储过程的名称,存储过程是ORACLE数据库的一种对象 
    object_name是ORACLE数据库对象的名称,可以是表、视图、存储过程、索引、快照、触发器等各种对象

    dba_procedures中的object_name是存储过程名或包的名字,procedure_name是包中的过程名,例如你创建了一个名为aaa的过程,那么在dba_procedures中就有一条object_name为aaa的记录,但这条记录的procedure_name为空,你又创建了一个名为ppp的包,包中有名为p1的过程和P2的函数,那么在dba_procedures中就有两条object_name为ppp的记录,一条的procedure_name为p1,另一条为p2。

  • 相关阅读:
    my first android test
    VVVVVVVVVV
    my first android test
    my first android test
    my first android test
    ini文件
    ZZZZ
    Standard Exception Classes in Python 1.5
    Python Module of the Week Python Module of the Week
    my first android test
  • 原文地址:https://www.cnblogs.com/burns/p/3965138.html
Copyright © 2011-2022 走看看