<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 存储函数体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                  Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)
                  How to select the first row for each group in MySQL?(如何在MySQL中为每个组选择第一行?)
                  MySQL - Fetching lowest value(MySQL - 获取最低值)
                  Add and link mysql libraries in a cmakelist.txt(在 cmakelist.txt 中添加和链接 mysql 库)
                  What is a good database design (schema) for a attendance database?(考勤数据库的良好数据库设计(架构)是什么?)

                  <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>