如何在sqlplus中运行PACKAGE.FUNCTION

 我来答
oowood
2016-02-19 · TA获得超过1781个赞
知道大有可为答主
回答量:2196
采纳率:81%
帮助的人:1217万
展开全部
可以使用select命令执行,注意packge里面不要有关于数据状态的语句,如果所引用的函数是一个独立的PL / SQL函数,请不要使用函数。
执行示例:
定义:
create or replace PACKAGE ztest_package IS
function ztest_f(
staff_no varchar2,
start_date date ,
remarks varchar2
)
return varchar2;
END;
执行:
select ztest_package.ztest_f('1',null,'2') from dual;
或者将上面的语句保存为a.sql
SQL> @ c:\shp\a.sql
huanglenzhi
推荐于2016-04-03 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
采纳数:117538 获赞数:517171
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。

向TA提问 私信TA
展开全部
ORA-06571 function name does not guarantee not to update
database

Cause There are two possible causes for this message:

?A SQL statement references a packaged PL/SQL function that does not
contain a pragma that prevents the database from being updated.
?A SQL
statement references a stand-alone, PL/SQL function that contains an instruction
to update the database.

Action If the referenced function is a
packaged PL/SQL function: Recreate the PL/SQL function with the required pragma;
be certain to include the "Write No Database State" (WNDS) argument in the
argument list of the pragma.

If the referenced function is a stand-alone
PL/SQL function: Do not use the function.
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
大别山的蜗牛
高粉答主

2016-01-23 · 一只互联网搬运的蜗牛
大别山的蜗牛
采纳数:6928 获赞数:12024

向TA提问 私信TA
展开全部
在sqlplus中运行PACKAGE.FUNCTION,这3种方法应该如何去改.

create or replace PACKAGE ztest_package IS
function ztest_f(
staff_no varchar2,
start_date date ,
remarks varchar2
)
return varchar2;
END;
/

create or replace PACKAGE BODY ztest_package IS
function ztest_f(
staff_no IN varchar2,
start_date IN date ,
remarks IN varchar2
)
return varchar2
AS
rtn_varchar2 varchar2(2);
begin
rtn_varchar2 := '00';
return (rtn_varchar2);
end;
END;
/
方法一:
select ztest_package.ztest_f('1',to_date('20020202','yyyymmdd'),'2') from dual;

方法二:
declare
vv varchar2;
begin
:vv := ztest_package.ztest_f('1',null,'2');
end;
/
方法三:
SET SERVEROUTPUT ON
exec :vv1 :=ztest_package.ztest_f('1',null,'2');
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式