生产环境下的包编译。这会导致任何问题吗?

发布于 2024-12-08 15:31:45 字数 147 浏览 0 评论 0原文

我们最大的客户(1500亿美元的营业额)担心在线生产期间编译包会导致数据库挂起。

我认为这是不可能的,因为我想要编译的包是单独且孤立的。它们用于纠正数据或分析数据。

我的领导告诉过我一些关于SGA的事情吗?是否可以?

你觉得怎么样?

Our biggest client (150 billion $ of turnover) is afraid about compiling package during the online production time can cause database to hang.

I think it is impossible since the package I want to compile are alone and isolated. They are used to correct data or to analize them.

My chief told something about SGA? Is it possible?

What do you think about?

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

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

发布评论

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

评论(1

默嘫て 2024-12-15 15:31:45

在以下情况下,在在线生产中编译 PL/SQL 包会出现问题:

  • 该包当前正在执行,或者
  • 该包具有状态(例如主体变量)并且已在仍登录的会话之一中使用

前者可以阻止会话(最有可能只是由于库缓存引脚锁定而编译包的那个),后一个将导致在编译后尝试再次使用该包的所有会话中出现以下错误消息:

ORA-04061: existing state of package body "SCHEMA.PACKAGE" has been invalidated

我认为没有任何特定的信息与SGA相关的问题。

Compiling a PL/SQL package in online production is problematic if:

  • the package is currently being executed, or
  • the package has state (such a body variables) and has been used in one of the sessions that's still logged in

The former can block sessions (most likely just the one that compiles the packages due to a library cache pin lock), the latter one will lead to the following error message in all session that try to use the package again after the compiliation:

ORA-04061: existing state of package body "SCHEMA.PACKAGE" has been invalidated

I don't think there's any specific problem related to the SGA.

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