Sql Plus 包信息

发布于 2024-11-27 04:08:10 字数 79 浏览 1 评论 0原文

SQLPLUS 有没有办法在创建某个包时获取有关该包的信息等等。例如,如果有一个包名称 Pack_Employee..我如何获取创建日期、大小等

Is there a way in SQLPLUS to get information about certain package when it was created and all that. For example if there is a package name Pack_Employee.. how can I get date of creation, size etc

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

偷得浮生 2024-12-04 04:08:10

使用描述当前用户可访问的所有对象的 ALL_OBJECTS 或 USER_OBJECTS 表。

Oracle 参考文档

  • ALL_OBJECTS

    选择object_name、object_type、last_ddl_time、时间戳、状态、已创建
    来自用户对象
    其中 object_name IN ('Pack_Employee');

Use the ALL_OBJECTS or USER_OBJECTS table that describes all objects accessible to the current user.

Oracle Reference Documentation

  • ALL_OBJECTS

    select object_name, object_type, last_ddl_time, timestamp, status, created
    from user_objects
    where object_name IN ('Pack_Employee');

夜巴黎 2024-12-04 04:08:10

正如@Joël 指出的,您可以从ALL_OBJECTS 获取创建日期、最后一个DDL 日期和状态。然而,尺寸是一个更棘手的问题。我能想到的最佳大小近似值是获取每行源代码的长度,这将为您提供字符大小:

SELECT SUM(LENGTH(text)) as char_size, COUNT(*) as line_count
FROM   all_source s
WHERE  name = 'YOUR_PACKAGE' AND TYPE = 'PACKAGE BODY' AND owner = 'YOU';

As @Joël pointed out, you can get the creation date, last DDL date and status from ALL_OBJECTS. Size, however, is a much trickier question. The best approximation I can come up with for size is to get the length of each line of source, which will give you the size in characters:

SELECT SUM(LENGTH(text)) as char_size, COUNT(*) as line_count
FROM   all_source s
WHERE  name = 'YOUR_PACKAGE' AND TYPE = 'PACKAGE BODY' AND owner = 'YOU';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文