序列来源?

发布于 2024-09-15 17:21:58 字数 67 浏览 4 评论 0原文

我想使用某些序列的源代码,但无法在 ALL_SOURCE 数据字典中找到它。 请让我知道在哪里可以找到所用序列的源代码。

I want to use source code of some sequences but i am unable to find it in ALL_SOURCE data dictionary.
Please let me know where i can find source code for sequences used .

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

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

发布评论

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

评论(3

嘦怹 2024-09-22 17:21:58
  select * from ALL_SEQUENCES
  select * from ALL_SEQUENCES
那支青花 2024-09-22 17:21:58

尝试
select * from USER_SEQUENCES

这是针对用户创建的序列。

Try
select * from USER_SEQUENCES

This is for sequence created by user.

故事↓在人 2024-09-22 17:21:58

DBA_DEPENDENCIES / ALL_DEPENDENCIES 应该告诉您哪些过程代码使用哪些序列——但是,动态 SQL 使用的序列不会被捕获。

为了能够在另一个模式中查看源代码(如包主体),您需要正确的权限,而SELECT ANY DICTIONARY是最简单的;否则,需要对远程模式中的包具有 DEBUG 权限。

DBA_DEPENDENCIES / ALL_DEPENDENCIES should tell you what sequences are used by what procedural code -- however, sequences used by dynamic SQL won't be caught.

To be able to view source code - like a package body - in another schema, you'll need the right privileges, and SELECT ANY DICTIONARY is the simplest; otherwise, the DEBUG privilege on the package in the remote schema is required.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文