<bdo id='R4yzu'></bdo><ul id='R4yzu'></ul>

    <small id='R4yzu'></small><noframes id='R4yzu'>

  • <tfoot id='R4yzu'></tfoot>

  • <i id='R4yzu'><tr id='R4yzu'><dt id='R4yzu'><q id='R4yzu'><span id='R4yzu'><b id='R4yzu'><form id='R4yzu'><ins id='R4yzu'></ins><ul id='R4yzu'></ul><sub id='R4yzu'></sub></form><legend id='R4yzu'></legend><bdo id='R4yzu'><pre id='R4yzu'><center id='R4yzu'></center></pre></bdo></b><th id='R4yzu'></th></span></q></dt></tr></i><div id='R4yzu'><tfoot id='R4yzu'></tfoot><dl id='R4yzu'><fieldset id='R4yzu'></fieldset></dl></div>
    1. <legend id='R4yzu'><style id='R4yzu'><dir id='R4yzu'><q id='R4yzu'></q></dir></style></legend>

        如何在 Oracle 中查看 PL/SQL 存储函数体

        How to see PL/SQL Stored Function body in Oracle(如何在 Oracle 中查看 PL/SQL 存储函数体)
          <bdo id='HAJTE'></bdo><ul id='HAJTE'></ul>

        • <tfoot id='HAJTE'></tfoot>

            <legend id='HAJTE'><style id='HAJTE'><dir id='HAJTE'><q id='HAJTE'></q></dir></style></legend>
              <tbody id='HAJTE'></tbody>

            <small id='HAJTE'></small><noframes id='HAJTE'>

            • <i id='HAJTE'><tr id='HAJTE'><dt id='HAJTE'><q id='HAJTE'><span id='HAJTE'><b id='HAJTE'><form id='HAJTE'><ins id='HAJTE'></ins><ul id='HAJTE'></ul><sub id='HAJTE'></sub></form><legend id='HAJTE'></legend><bdo id='HAJTE'><pre id='HAJTE'><center id='HAJTE'></center></pre></bdo></b><th id='HAJTE'></th></span></q></dt></tr></i><div id='HAJTE'><tfoot id='HAJTE'></tfoot><dl id='HAJTE'><fieldset id='HAJTE'></fieldset></dl></div>
                1. 本文介绍了如何在 Oracle 中查看 PL/SQL 存储函数体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在 Oracle 数据库 pAdCampaign.fGetAlgoGroupKey 中有一个存储函数.怎么看这个函数的代码?

                  I have a stored function in Oracle database pAdCampaign.fGetAlgoGroupKey. How to see the code of this function.?

                  推荐答案

                  如果是一个包,那么你可以通过以下方式获取源代码:

                  If is a package then you can get the source for that with:

                      select text from all_source where name = 'PADCAMPAIGN' 
                      and type = 'PACKAGE BODY'
                      order by line;
                  

                  Oracle 不会单独存储子程序的源代码,因此您需要查看它的包源.

                  Oracle doesn't store the source for a sub-program separately, so you need to look through the package source for it.

                  注意:我假设您在创建该包时没有使用双引号,但如果您使用了,请使用

                  Note: I've assumed you didn't use double-quotes when creating that package, but if you did , then use

                      select text from all_source where name = 'pAdCampaign' 
                      and type = 'PACKAGE BODY'
                      order by line;
                  

                  这篇关于如何在 Oracle 中查看 PL/SQL 存储函数体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to redirect the output of DBMS_OUTPUT.PUT_LINE to a file?(如何将 DBMS_OUTPUT.PUT_LINE 的输出重定向到文件?)
                  How do I get column datatype in Oracle with PL-SQL with low privileges?(如何使用低权限的 PL-SQL 在 Oracle 中获取列数据类型?)
                  Get a list of all functions and procedures in an Oracle database(获取 Oracle 数据库中所有函数和过程的列表)
                  Why cannot I create triggers on objects owned by SYS?(为什么我不能在 SYS 拥有的对象上创建触发器?)
                  Returning result even for elements in IN list that don#39;t exist in table(即使对于表中不存在的 IN 列表中的元素也返回结果)
                  Reset Sequence in oracle 11g(oracle 11g 中的重置序列)

                  <tfoot id='Vbn0K'></tfoot>

                  <small id='Vbn0K'></small><noframes id='Vbn0K'>

                      <i id='Vbn0K'><tr id='Vbn0K'><dt id='Vbn0K'><q id='Vbn0K'><span id='Vbn0K'><b id='Vbn0K'><form id='Vbn0K'><ins id='Vbn0K'></ins><ul id='Vbn0K'></ul><sub id='Vbn0K'></sub></form><legend id='Vbn0K'></legend><bdo id='Vbn0K'><pre id='Vbn0K'><center id='Vbn0K'></center></pre></bdo></b><th id='Vbn0K'></th></span></q></dt></tr></i><div id='Vbn0K'><tfoot id='Vbn0K'></tfoot><dl id='Vbn0K'><fieldset id='Vbn0K'></fieldset></dl></div>
                          <tbody id='Vbn0K'></tbody>

                          • <bdo id='Vbn0K'></bdo><ul id='Vbn0K'></ul>
                            <legend id='Vbn0K'><style id='Vbn0K'><dir id='Vbn0K'><q id='Vbn0K'></q></dir></style></legend>