博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PLS-00306: 调用 'SYNCRN' 时参数个数或类型错误
阅读量:7314 次
发布时间:2019-06-30

本文共 732 字,大约阅读时间需要 2 分钟。

System.Data.OracleClient.OracleException (0x80131938):

ORA-00604: 递归 SQL 级别 1 出现错误 ORA-06550: 第 1 行, 第 7 列:

PLS-00306: 调用 'SYNCRN' 时参数个数或类型错误 ORA-06550: 第 1 行, 第 7 列:

PL/SQL: Statement ignored 在 System.Data.OracleClient.OracleConnection.CheckError

 

解决方法:

alter session set current_schema=CTXSYS; 

create or replace procedure syncrn (
  ownid IN binary_integer,
  oname IN varchar2,
  idxid IN binary_integer,
  ixpid IN binary_integer,
  rtabnm IN varchar2,
  srcflg IN binary_integer,
  smallr IN binary_integer
)
  authid definer
  as external
  name "comt_cb"
  library dr$lib
  with context
  parameters(
    context,
    ownid  ub4,
    oname  OCISTRING,
    idxid  ub4,
    ixpid  ub4,
    rtabnm OCISTRING,
    srcflg ub1,
    smallr ub1
);

转载于:https://www.cnblogs.com/woxpp/p/6768253.html

你可能感兴趣的文章
STM32的命名规范
查看>>
福大软工1816 · 团队现场编程实战(抽奖系统)
查看>>
自定义标签 Jquery
查看>>
rpm的一些用法
查看>>
记一次郁闷的更新
查看>>
Tomcat access log配置(二)
查看>>
cocos2d JS 本地缓存存储登陆记住账号密码->相当于C++中的UserDefault
查看>>
Cocos Creator cc.Node.点击事件
查看>>
String
查看>>
【caffe-windows】 caffe-master 之 卷积核可视化(利用matlab)
查看>>
Python 批量读取文件夹下的图片,并保存在文档下
查看>>
asp.net + jquery + json 实例[转]
查看>>
使用内省的方式操作JavaBean
查看>>
Azure 网站和通配符域
查看>>
C++中的类模版
查看>>
2017-2-23 C#基础 for循环
查看>>
2017-3-22 HTML 表单 、框架
查看>>
Axure 第一次交互 实现跳转页面
查看>>
Axure 矩形交互样式与单选按钮组设置
查看>>
死亡之树
查看>>