#错误码

在YashanDB的容错机制中,对于需要用户及时感知到的错误,提供一套统一的错误消息代码进行抛出,格式如下:

错误码编号(Error Number):由'YAS-'+五位数字组成,五位数字按不同模块划分区间。

错误码消息(Error Message):错误信息描述,在不同的错误场景下,系统通过变量进行针对该项错误具体信息的消息传递。

错误号索引

1000以下:

00001 00101 00401

1000-3000:

01001 01401 02000 02100 02200 02400

3000-5000:

03001 03500 04000 04200 04300

5000以上:

05001 06000 08000

# COMMON

# YAS-00001

Message:warning: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-00002

Message:internal error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-00003

Message:invalid parameter, reason: %s

Action:根据信息检查参数。

# YAS-00004

Message:feature "%s" has not been implemented yet

Action:特性待支持,请更新版本或联系我们的技术支持。

# YAS-00005

Message:invalid %s type: %u

Action:非法类型,请修改输入类型。

# YAS-00006

Message:null pointer

Action:内部错误,请联系我们的技术支持解决。

# YAS-00007

Message:no %s method for %s %s

Action:不支持当前类型间运算,请修改输入类型。

# YAS-00008

Message:type convert error : %s

Action:不支持当前类型间转换,请修改输入类型。

# YAS-00009

Message:invalid comparison between %s and %s

Action:不支持当前类型间比较,请修改输入类型。

# YAS-00010

Message:result of string concatenation is too long

Action:字符串连接结果过长,请缩短输入字符串。

# YAS-00011

Message:divided by zero

Action:除数不能为0,请修改。

# YAS-00012

Message:numeric overflow

Action:输入的值过大,请修改。

# YAS-00013

Message:value is larger than %s allowed

Action:输入的值过大,请修改。

# YAS-00014

Message:illegal conversion from %s to %s

Action:不支持当前类型间转换,请参考数据类型转换章节描述。

# YAS-00015

Message:the value of parameter %s is invalid, %s

Action:输入参数非法,请修改。

# YAS-00016

Message:invalid section %s, expect %s

Action:输入参数非法,请修改。

# YAS-00017

Message:invalid unit %s, expect %s

Action:输入参数非法,请修改。

# YAS-00018

Message:parameter id %d does not match with index %u

Action:输入参数非法,请修改。

# YAS-00019

Message:ini file "%s" is already loaded, please don't load it again

Action:内部错误,请联系我们的技术支持解决。

# YAS-00020

Message:ini file has not been loaded, please load ini file first

Action:内部错误,请联系我们的技术支持解决。

# YAS-00021

Message:failed to get parameter item by name, section "%s", parameter "%s" does not exist

Action:该名字的参数不存在,请按照现已支持param重新输入。

# YAS-00022

Message:failed to get parameter name by id of unit, section "%s", unit "%s", parameter id "%u" does not exist

Action:该ID的参数不存在,请按照现已支持param重新输入。

# YAS-00023

Message:the format code appears twice

Action:格式符只允许出现一次。

# YAS-00024

Message:value is less than %s allowed

Action:输入数值不在报错类型范围内,请按照对应数据类型范围重新输入。

# YAS-00025

Message:value is larger than specified precision allowed for this column

Action:输入数值不在报错类型范围内,请按照对应数据类型范围重新输入。

# YAS-00026

Message:year may only be specified once

Action:年份类的格式符只允许出现一次。

# YAS-00027

Message:month may only be specified once

Action:月份类的格式符只允许出现一次。

# YAS-00028

Message:hour may only be specified once

Action:小时类的格式符只允许出现一次。

# YAS-00029

Message:AM/A.M. or PM/P.M. is required

Action:请输入AM或PM等时段信息。

# YAS-00030

Message:HH24 and AM/PM cannot be used at the same time

Action:24小时制不能跟AM同时使用,请去掉一个。

# YAS-00031

Message:value exceeding bit range allowed

Action:数值超过BIT类型最大值,请减小输入值。

# YAS-00032

Message:parameter "%s" cannot be modified on session level

Action:内部错误,请联系我们的技术支持解决。

# YAS-00033

Message:unsupported unicode character %#X

Action:该字符不是unicode字符,请修改后再输入。

# YAS-00034

Message:parameter "%s" cannot be modified on system level

Action:内部错误,请联系我们的技术支持解决。

# YAS-00036

Message:failed to calculate md5

Action:内部错误,请联系我们的技术支持解决。

# YAS-00037

Message:day of week may only be specified once

Action:跟天数相关的格式符只能出现一次。

# YAS-00038

Message:feature '%s' has not been supported in this edition

Action:个人版/标准版功能限制,请联系我们的技术支持解决。

# YAS-00039

Message:parameter %s cannot be set repeatedly

Action:配置文件中删除重复配置。

# YAS-00040

Message:data value out of range

Action:请输入在数据范围内的值。

# YAS-00041

Message:invalid TLV data

Action:无效的TLV数据,请输入正确的数据。

# YAS-00042

Message:write TLV data out of boundary

Action:在边界外写TLV 数据,请在边界内写入。

# YAS-00043

Message:read TLV data out of boundary

Action:在边界外读取 TLV 数据,请在边界内读取。

# YAS-00044

Message:"%s" has not been supported

Action:该操作目前暂不支持。

# YAS-00045

Message:illegal data format

Action:内部错误,请联系我们的技术支持解决。

# YAS-00046

Message:the %s buffer size is too small

Action:内部错误,请联系我们的技术支持解决。

# YAS-00047

Message:%s is not allowed

Action:该操作不被允许,请修改相关用法。

# YAS-00048

Message:fault point: %s is not hit

Action:内部错误,请联系我们的技术支持解决。

# YAS-00049

Message:'' must be followed by four hexdecimal characters or another ''

Action:参考对应函数文档,检查指定的unicode编码是否正确。

# YAS-00050

Message:the date format is too long for the internal buffer

Action:输入的日期格式串太长,请缩减后再重新输入。

# YAS-00101

Message:cannot allocate % PRId64 bytes for %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-00102

Message:cannot create memory object %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-00103

Message:no free block in %s

Action:剩余内存大小不足,可通过修改相应POOL的配置参数的方式,预分配更多的内存空间。 常见的pool资源不足场景如下:

  • 报distribute pool不足时,可通过调整参数SHARE_POOL_SIZE。
  • 报application pool不足时,可调整参数WORK_AREA_POOL_SIZE。
  • 报application area不足时,可调整参数WORK_AREA_HEAP_SIZE。
  • 报share pool不足时,可调整参数SHARE_POOL_SIZE。
  • 报dictionary cache不足时,可通过调整参数SHARE_POOL_SIZE。
  • 报sql main pool不足时,可通过调整参数SHARE_POOL_SIZE。
  • 报sql pl pool不足时,可通过调整参数SHARE_POOL_SIZE。
  • 报driver memory pool不足时,可通过调整yex_server.ini配置文件中的参数YDBC_BUFFER_SIZE,具体操作请查阅调整内存池大小

其他pool不足场景涉及YashanDB内部配置,请联系我们的技术支持处理。

# YAS-00104

Message:allocate unexpected size from memory pool

Action:数据太大超过一个block大小,请减小输入。

# YAS-00105

Message:out of memory to allocate %s of size = % PRId64

Action:内部错误,请联系我们的技术支持解决。

# YAS-00106

Message:failed to memory copy of %s, src = %p, size = % PRId64 , dst = %p, size = % PRId64

Action:内部错误,请联系我们的技术支持解决。

# YAS-00107

Message:failed to memory move of %s, src = %p, size = % PRId64 , dst = %p, size = % PRId64

Action:内部错误,请联系我们的技术支持解决。

# YAS-00109

Message:work stack overflow, try to push %d bytes

Action:内部错误,请联系我们的技术支持解决。

# YAS-00110

Message:worker thread stack overflow, size allowed cannot exceed %u bytes

Action:内部错误,请联系我们的技术支持解决。

# YAS-00111

Message:failed to set allocation option %s

Action: 设置内存分配器相关参数失败,请排查用法或环境问题。

# YAS-00112

Message:failed to attach shm

Action: 内部错误,请联系我们的技术支持解决。

# YAS-00113

Message:buddy allocator %s is out of memory

Action: 内部错误,请联系我们的技术支持解决。

# YAS-00114

Message:illegal block size for %s

Action: 内部错误,请联系我们的技术支持解决。

# YAS-00115

Message: failed to allocate % PRId64 bytes memory quota for %s"

Action:内存不足,请根据提示信息降低并发度。

# YAS-00201

Message:failed to snprintf, src size = %u, dst size = %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-00202

Message:invalid string, reason: %s

Action:根据提示,检查输入的string语法错误。

# YAS-00203

Message:const string length exceeds %u

Action:输入常量字符串长度超过允许范围。

# YAS-00206

Message:length in indicators exceeds the binding size

Action:内部错误,请联系我们的技术支持解决。

# YAS-00207

Message:end of text expected but %s found

Action:SQL语句输入语法错误,请检查。

# YAS-00208

Message:binary string '%s' out of range

Action:输入的二进制字符串超过允许范围。

# YAS-00209

Message:invalid string '%s', reason: %s

Action:根据提示,输入合法的字符串。

# YAS-00210

Message:duplicate %s found

Action:不能创建同名对象。

# YAS-00211

Message:no data found

Action:未找到数据。

# YAS-00212

Message:index %u is out of [%u, %u]

Action:内部错误,请联系我们的技术支持解决。

# YAS-00213

Message:source string's length(%u) must less than the buffer size(%u)

Action:内部错误,请联系我们的技术支持解决。

# YAS-00214

Message:too many type processor array

Action:内部错误,请联系我们的技术支持解决。

# YAS-00215

Message:length of concat texts exceeds the buffer limit

Action:内部错误,请联系我们的技术支持解决。

# YAS-00216

Message:invalid charset name "%s"

Action:请输入合法的字符集名字。

# YAS-00217

Message:bool string must be "TRUE" or "FALSE"

Action:请输入合法的bool字符串。

# YAS-00218

Message:string conversion failed

Action:string转换失败,请输入合法的string。

# YAS-00219

Message:the formatted string length(%u) is longer than the buffer size(%u)

Action:内部错误,请联系我们的技术支持解决。

# YAS-00220

Message:utf8 sequence is wrong

Action:UTF8字符输入错误,请检查。

# YAS-00221

Message:utf8 character buffer is too small

Action:UTF8字符输入错误,请检查。

# YAS-00222

Message:nlssort rule %s under charset %s is invalid

Action:不支持的nlssort规则, 请检查输入语法。

# YAS-00223

Message:invalid hex number

Action:请输入正确的16进制数字。

# YAS-00224

Message:Codepage is Invalid

Action:请配置正确的Codepage文件。

# YAS-00225

Message:utf16 sequence is wrong

Action:UTF16字符输入错误,请检查。

# YAS-00226

Message:utf16 character buffer is too small

Action:UTF16字符输入错误,请检查。

# YAS-00227

Message:invalid national charset name "%s"

Action:请输入合法的国家字符集名字。

# YAS-00228

Message:character set mismatch

Action:字符集不匹配,请检查。

# YAS-00229

Message:character set conversion failed, exceeds the buffer size(%u)

Action:请检查进行字符集转换操作的字符串是否超过了32000字节的运算上限。

# YAS-00230

Message:gbk sequence is wrong

Action:GBK字符输入错误,请检查。

# YAS-00231

Message:gbk character buffer is too small

Action:GBK字符输入错误,请检查。

# YAS-00301

Message:file operation "%s" failed, %s

Action:请检查对应文件的状态是否正确或根据操作系统错误码决定修复操作。

# YAS-00302

Message:file %s is invalid because %s

Action:请检查文件名称的长度或根据操作系统错误码决定修复操作。

# YAS-00303

Message:ini file %s error, file size is %u, limitation is %u

Action:请根据操作系统错误码决定修复操作。

# YAS-00304

Message:%s is an invalid disk device/file, reason: %s

Action:请检查设备名称或根据操作系统错误码决定修复操作。

# YAS-00305

Message:out of space on device

Action:请检查磁盘空间或根据操作系统错误码决定修复操作。

# YAS-00306

Message:device is busy

Action:设备繁忙,请重试。

# YAS-00307

Message:%s inifile %s error

Action:请根据操作系统错误码决定修复操作。

# YAS-00308

Message:error inifile text %s

Action:请根据操作系统错误码决定修复操作。

# YAS-00310

Message:invalid file path %s

Action:请检查文件路径或根据操作系统错误码决定修复操作。

# YAS-00311

Message:failed to create file %s, %s

Action:请检查是否文件已存在、磁盘空间不足或根据操作系统错误码决定修复操作。

# YAS-00312

Message:failed to lock file %s, %s

Action:请根据操作系统错误码决定修复操作。

# YAS-00313

Message:failed to open file %s, %s

Action:请检查对应文件的状态是否正确或根据操作系统错误码决定修复操作。

# YAS-00314

Message:failed to remove file %s, %s

Action:请检查文件是否存在或根据操作系统错误码决定修复操作。

# YAS-00315

Message:failed to rename file %s to %s, %s

Action:请检查对应文件的状态是否正确或根据操作系统错误码决定修复操作。

# YAS-00316

Message:failed to save file, file name is %s

Action:请检查对应文件的状态是否正确或根据操作系统错误码决定修复操作。

# YAS-00317

Message:ini file unloaded

Action:请检查对应文件的状态是否正确或根据操作系统错误码决定修复操作。

# YAS-00318

Message:failed to create directory %s, %s

Action:请检查路径是否正确或根据操作系统错误码决定修复操作。

# YAS-00319

Message:failed to open directory %s, %s

Action:请检查路径是否正确或根据操作系统错误码决定修复操作。

# YAS-00320

Message:failed to close directory %s, %s

Action:请检查路径是否正确或根据操作系统错误码决定修复操作。

# YAS-00321

Message:failed to remove directory %s, %s

Action:请检查路径是否正确或根据操作系统错误码决定修复操作。

# YAS-00322

Message:failed to dump to file

Action:该错误码仅在多级错误码中出现,请参考底层错误码action。

# YAS-00323

Message:the file system does not support punch hole

Action:选择合适的文件系统,支持的文件系统可以参考CREATE_TABLESPACE

# YAS-00324

Message:the page size of file system must be %s

Action:选择满足page size的文件系统,支持的文件系统可以参考CREATE_TABLESPACE

# YAS-00325

Message:write file failed

Action:UTL_FILE写文件错误。

# YAS-00326

Message:invalid fileType

Action:请检查输入的文件句柄是否已经打开且是UTL_FILE包的文件句柄。

# YAS-00327

Message:invalid open mode

Action:请检查打开的模式是否在UTL_FILE指定的打开模式中。

# YAS-00328

Message:read file failed

Action:UTL_FILE读文件错误。

# YAS-00329

Message:the specified search offset is invalid, %s

Action:读文件的指定偏移位置需要在文件的有效范围内。

# YAS-00330

Message:invalid path

Action:无效的文件路径。

# YAS-00331

Message:invalid file name

Action:无效的文件名字。

# YAS-00332

Message:access denied

Action:请检查是否有访问路径的权限。

# YAS-00333

Message:invalid max lineSize

Action:UTL_FILE支持的一行长度要在1-32000之间。

# YAS-00334

Message:no data found

Action:从文件的指定偏移开始找不到数据。

# YAS-00335

Message:close file error, because %s

Action:关闭文件句柄失败。

# YAS-00336

Message:too many open files , exceed %d

Action:打开文件数量太多,超过设置的SESSION_MAX_OPEN_FILES。

# YAS-00337

Message:only support directory begin with / or .

Action:不支持的文件路径格式。

# YAS-00338

Message:s3 request failed, uri %s, error no %u, message %s

Action:根据对应的错误信息排查s3服务异常。

# YAS-00339

Message:failed to create s3 %s

Action:请先排查系统内存资源,如内存资源充足,请联系我们的技术支持解决。

# YAS-00340

Message:the datafile name must not contain the string %s

Action:修改数据文件名,然后重试该操作。

# YAS-00401

Message:failed to init tcp environment, %s

Action:根据具体错误信息,调整系统配置。

# YAS-00402

Message:failed to %s, %s

Action:根据具体报错信息和系统错误码,调整系统配置或数据库参数。

# YAS-00403

Message:tcp listener count %u exceeds %u

Action:减少参数LISTEN_ADDR设置的监听地址个数。

# YAS-00404

Message:address %s is an invalid %s URL/Ip address/hostname

Action:检查IP地址是否合法。

# YAS-00405

Message:protocol error, failed to connect to %s, because %s

Action:协议错误,请检查部署环境的网络或客户端版本是否配套,检查连接信息或联系我们的技术支持解决。

# YAS-00406

Message:connection is closed

Action:连接已关闭,请退出并重新连接服务器。

# YAS-00407

Message:failed to send, %s

Action:检查部署环境的网络或服务端进程是否关闭。

# YAS-00408

Message:failed to receive, %s

Action:检查部署环境的网络或对端进程是否关闭。

# YAS-00409

Message:failed to epoll, %s

Action:检查部署环境的网络或对端进程是否关闭。

# YAS-00410

Message:protocol error, %s

Action:协议错误,根据信息检查SQL语句。

# YAS-00411

Message:failed to set %s, %s

Action:检查部署环境系统参数或联系我们的技术支持解决。

# YAS-00412

Message:unsupported link type %u

Action:协议类型错误,请检查部署环境的网络或客户端版本是否配套,检查连接信息或联系我们的技术支持解决。

# YAS-00413

Message:%s timeout

Action:网络超时,检查部署环境的网络质量。

# YAS-00414

Message:failed to create local listener, path %s, %s

Action:检查数据库home目录下,instance/yasdb.ipc文件的权限。

# YAS-00415

Message:failed to create listener, host: %s:%u

Action:检测数据库的监听配置,根据具体报错信息和系统错误码,配置合理的监听。

# YAS-00416

Message:%s overflow, target %u limit %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-00417

Message:invalid message size %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-00418

Message:invalid destination %u

Action:节点ID已被删除,请重试。

# YAS-00419

Message:number of connections exceeds the limit, current: %u max: %u

Action:内部瞬时限制,系统将自动恢复,请忽略。

# YAS-00420

Message:discontinuous memory

Action:内部错误,请联系我们的技术支持解决。

# YAS-00421

Message:failed to handshake, %s

Action:请根据日志提示,排查节点配置。

# YAS-00422

Message:send message to node %s with link level %u timeout %ums, %s

Action:发送超时,请重试。

# YAS-00423

Message:ICS manager does not start

Action:内部错误,系统将自动恢复,请忽略。

# YAS-00424

Message:invalid link id %u_%u_%u

Action:无效通讯链路ID,请重试。

# YAS-00425

Message:node(%u) has been removed

Action:该节点已被删除,请重试。

# YAS-00426

Message:ICS link %u_%u_%u already in use

Action:内部瞬时错误,系统将自动恢复,请忽略。

# YAS-00427

Message:take the link %u_%u_%u failed: %s

Action:请根据报错内容进行处理:

  • 报not reserved时,属内部错误,请联系我们的技术支持解决。
  • 报take link timeout时,为等待有效链路超时,请重试。

# YAS-00428

Message:failed to create listener, ipv6 host: [%s]:%u

Action:检测数据库的监听配置,根据具体报错信息和系统错误码,配置合理的监听。

# YAS-00429

Message:failed to get link address

Action:获取套接字关联的地址失败,请检查网络状态。

# YAS-00430

Message:ICS node(%u) is stopping

Action:正在停止对应节点的网络通讯,请忽略。

# YAS-00501

Message:spin lock is not available now

Action:内部错误,请联系我们的技术支持解决。

# YAS-00502

Message:failed to lock with error code %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-00503

Message:failed to create thread %s, %s

Action:检查操作系统资源。

# YAS-00504

Message:failed to create semaphore

Action:内部错误,请联系我们的技术支持解决。

# YAS-00505

Message:failed to get current environment "%s", %s

Action:在系统文档中查找操作系统错误并执行所需的操作。

# YAS-00506

Message:system call %s error, errno = %d

Action:在系统文档中查找操作系统错误并执行所需的操作。

# YAS-00507

Message:date/timestamp value overflow

Action:修改日期的值在有效范围内(DATE: 0001-01-01 00:00:00 ~ 9999-12-31 23:59:59, TIMESTAMP: 0001-01-01 00:00:00.000000 ~ 9999-12-31 23:59:59.999999)。

# YAS-00508

Message:time value overflow

Action:修改时间的值在有效范围内(00:00:00 ~ 23:59:59.999999)。

# YAS-00509

Message:failed to load dynamic library %s, %s

Action:请检查动态链接库路径。

# YAS-00510

Message:failed to close dynamic library %s

Action:请根据错误信息检查关闭动态链接库失败的原因。

# YAS-00511

Message:failed to get symbol %s, %s

Action:请根据错误信息检查获取符号失败的原因。

# YAS-00512

Message:failed to init dynamic library %s

Action:请检查动态链接库是否安装。

# YAS-00513

Message:failed to create mutex, error code %d, %s

Action:请根据系统错误信息检查失败原因。

# YAS-00517

Message:worker pool is closed

Action:内部错误,请联系我们的技术支持解决。

# YAS-00518

Message:worker pool parameters are set incorrectly

Action:worker 池设置错误,请检查参数是否正常。

# YAS-00519

Message:failed to check dynamic library %s, %s

Action:请使用符合要求的动态链接库版本。

# YAS-00601

Message:failed to encryption error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-00602

Message:failed to check encryption key : %s

Action:加解密时请检查密钥文件是否正确。

# YAS-00603

Message:input size %u is invalid

Action:内部错误,请联系我们的技术支持解决。

# YAS-00604

Message:failed to compress data, %s

Action:执行数据压缩失败,检查压缩数据是否合法。

# YAS-00605

Message:failed to decompress data, %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-00606

Message:compression type is invalid

Action:请输入正确的压缩算法名称。

# YAS-00607

Message:encryption algorithm error, %s

Action:加密算法错误,请根据报错内容选择合适的加密算法。

# YAS-00608

Message:failed to init ssl error: %s, %s

Action:请配置正确的SSL参数。

# YAS-00609

Message:invalid ecdh: %s

Action:请配置正确的ECDH参数。

# YAS-00610

Message:failed to connect ssl : %s

Action:请配置正确的证书等参数后重新连接。

# YAS-00611

Message:encrypt mode mismatched, expect %s, but actual %s

Action:请配置环境上加密库,使其与数据文件中加密方式保持一致。

# YAS-00612

Message:failed to generate guid

Action:生成GUID失败,请重新生成一次GUID。

# YAS-00613

Message:failed to init public key error: %s, %s

Action:公钥加载失败,请检查公钥文件配置。

# YAS-00614

Message:uKey %s failed

Action:UKEY操作失败。

# YAS-00615

Message:too many uKey devices

Action:有多个当前名称的UKEY设备。

# YAS-00616

Message:no uKey device

Action:没有UKEY设备。

# YAS-00617

Message:failed to verify ukey sign error: %s, %s

Action:验证UKEY签名失败。

# YAS-00618

Message:failed to %s, error: %s

Action:构建公钥失败。

# YAS-00619

Message:failed to init tlcp error: %s

Action:请配置正确的TLCP参数。

# YAS-00701

Message: invalid yason type value: %d

Action: 错误的YASON类型,请检查YASON数据是否有效。

# YAS-00702

Message: index out of bounds in yason: the len is %d but the index is %d

Action: 访问YASON数据时越界,请检查YASON数据是否有效。

# YAS-00703

Message: yason type mismatched, expect %s, but actual %s

Action: YASON类型不匹配,请检查类型是否正确。

# YAS-00704

Message: yason exceeds max size(%d)

Action: YASON数据过大,请减小输入的数据后重试。

# YAS-00705

Message: yason string is too long, length: %d

Action: YASON字符串过长,请减小字符串长度后重试。

# YAS-00706

Message: yason binary is too long, length: %d

Action: YASON二进制数据过长,请减小二进制数据长度后重试。

# YAS-00707

Message: invalid varint in yason

Action: 无效的变长int编码,请检查YASON数据是否有效。

# YAS-00708

Message: the number of elements reaches the element count(%d)

Action: 数组或对象内元素数量已满,不能输入更多元素。

# YAS-00709

Message: inconsistent element count, expected %d, actual %d

Action: 数组或对象内设置的元素数量与实际数量不一致,请检查元素数量。

# YAS-00710

Message: nesting too deeply

Action: YASON嵌套次数过多,请减小输入数据的嵌套次数后重试。

# YAS-00711

Message: inner builder is not finished

Action: YASON内部嵌套结构未完成,请检查并正确使用builder。

# YAS-00712

Message: JSON syntax error at line %d column %d: %s

Action: JSON语法错误,请检查输入JSON语法后重试。

# YAS-00713

Message: too many children in the current object or array

Action: 当前对象或数组内的元素过多,最多支持65535个元素。

# YAS-00714

Message: yason data length %d mismatch the actual data length %d

Action: 请检查YASON数据长度是否匹配。

# YAS-00715

Message: invalid yason bool data

Action: bool值必须是0或1,请检查数据。

# YAS-00716

Message: invalid yason date/time data

Action: 时间超出范围,请检查时间范围。

# YAS-00717

Message: invalid yason number data

Action: YASON number类型数据最长20字节,请检查number长度。

# YAS-00718

Message: invalid yason string data

Action: 请检查YASON数据是否包含非法的utf-8 unicode字符。

# YAS-00719

Message: unordered or duplicated yason object keys

Action: YASON object数据的key无序或重复,请检查数据。

# YAS-00720

Message: input contains invalid unicode escape

Action: JSON或路径表达式里包含了非法unicode转义,请检查并正确使用转义。

# YAS-00721

Message: path expression syntax error

Action: 路径表达式语法错误,请检查输入路径表达式语法后重试。

# YAS-00722

Message: found no result

Action: 路径表达式查询结果没有值。

# YAS-00723

Message: found multiple results

Action: 路径表达式查询得到多个值。

# YAS-00724

Message: function step requires wrapping

Action: 路径表达式中使用函数步骤必须使用WITH [ARRAY] WRAPPER。

# DISTRIBUTED

# YAS-01200

Message:node: %u-%u failed to get session: %u

Action:您操作的会话为无效会话,请检查您的会话ID是否正确。

# YAS-01201

Message:failed to get node: %u

Action:您操作的节点为无效节点,请检查您的节点ID是否正确。

# YAS-01202

Message:node in group: %u is abnormal

Action:该节点组内节点故障,请排查节点组状态。

# YAS-01204

Message:the transaction has been fully rolled back because of the %s

Action:当前会话事务已被回滚,请重新执行相关操作。

# YAS-01205

Message:this is a fault point: %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-01206

Message:node in group: %u is switchover

Action:该节点组内主节点正在主备切换,请切换成功后重试。

# YAS-01207

Message:not sure whether the commit is successful

Action:请根据事务相关文档检查事务是否提交成功。

# YAS-01208

Message:no available endpoint could be found

Action:找不到可用的节点,请检查节点状态。

# YAS-01209

Message:message is invalid, message cmd: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01210

Message:execute batch failed, reason: %s

Action:分布式批量绑定执行失败,请根据错误描述采取适当的处理方法。

# YAS-01211

Message:metadata inconsistency exists, indicating a possible switchover or failover occurred, please check if there are remaining DDL publish tasks

Action:检查是否有DDL推送任务残留,若存在,回滚与该对象相关的事务。

# YAS-01212

Message:node: %u-%u session worker is not enough

Action:该节点上的max_workers配置不足,请结合配置参数文档调整。

# YAS-01213

Message:"session send command(%s) to node: %u-%u failed from node: %u-%u, %s"

Action:排查失败可能的原因:

  • 网络故障,可以通过操作系统命令排除网络故障,或参考内部网络相关视图DV$DIN_NODE,DV$DIN_LINK等。

  • 系统资源争抢,可以通过操作系统命令排除cpu、内存问题等,或参考数据库性能相关视图等。

  • 配置不合理角度,资源配置能否满足实际并发量,可以参考资源管理中的会话管理部分对并发任务进行管理。

# YAS-01350

Message:unexpected type(%d) of TLV tag of %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01351

Message:message TLV tag of %s is missing

Action:内部错误,请联系我们的技术支持解决。

# YAS-01352

Message:unknown message TLV tag(%d) of %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01353

Message:duplicate message TLV tag(%d) of %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01354

Message:expected message TLV tag(%d) of %s but actually got %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-01355

Message:scaling out, DDL and DCL is blocked

Action:节点扩容中,禁止执行分布式DDL和分布式DCL,请等待扩容完成后再执行。

# YAS-01356

Message:scaling out and unserviceable

Action:节点扩容中,无法对外提供服务,请等待扩容完成后再执行。

# YAS-01357

Message:scaling out fail, please clean up scaling out task and try again

Action:扩容异常失败,请清理扩容任务后重试。

# YAS-01358

Message:%s expected in json data

Action:请修改请求语句的错误后重试。

# YAS-01359

Message:chunks number %d exceeds the limit

Action:请求迁移的chunk数过多,请减少chunk数后重试。

# YAS-01360

Message:the specified chunk id %d does not exist

Action:请求迁移的chunk id不存在,请修改后重试。

# YAS-01361

Message:same chunk id %d appears more than once

Action:保证一次请求同一个chunk只指定一次后重试。

# YAS-01362

Message:the specified group %d does not exist

Action:请求的目标group不存在,请修改后重试。

# YAS-01363

Message:cannot remove all groups from dataspace

Action:请求将删除所有group,请减少删除的group数后重试。

# YAS-01364

Message:array of %s in json data is empty

Action:请填写数组中的元素后重试。

# YAS-01367

Message:default table type is conflict

Action:请检查配置参数DEFAULT_TABLE_TYPE,保持一致后重试。

# YAS-01368

Message:the account is dropped

Action:该用户属于残留不可用,请手动删除后重试。

# YAS-01369

Message:scale group/redistribute only support DN

Action:该操作仅支持对DN组实行。

# YAS-01370

Message:current handler has been release

Action:当前HANDLER已经被释放,请等待系统切换或关闭完成。

# YAS-01371

Message:set system parameter failed, %s

Action:修改配置参数失败,请按报错提示进行检查。

# YAS-01372

Message:the result of setting system parameters is unpredictable, %s

Action:修改配置参数结果不可预期,请按报错提示进行检查,并检查配置参数修改结果。

# YAS-01400

Message:invalid cluster manager message type: %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-01401

Message:invalid cluster manager timer type: %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-01402

Message:invalid group id: %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-01403

Message:group already exists: %d

Action:该组早已存在,请勿重复添加。

# YAS-01404

Message:group is not found for group id: %d

Action:集群信息正在同步,请稍后重试。

# YAS-01405

Message:group is empty: %d

Action:组内没有节点,请添加节点或删除组。

# YAS-01406

Message:group is not found for type: %d

Action:集群信息正在同步,请稍后重试。

# YAS-01407

Message:node already exists: %d-%d

Action:该节点早已存在,请勿重复添加。

# YAS-01408

Message:node is not found for node id: %d-%d

Action:集群信息正在同步,请稍后重试。

# YAS-01409

Message:primary node not found for group: %u

Action:请确认是否存在主节点,若存在,请稍后重试;若不存在,请进行分布式集群故障排查,待主节点恢复后再进行重试。

# YAS-01410

Message:endpoint is not found: %d

Action:集群信息正在同步,请稍后重试。

# YAS-01411

Message:cluster manager wait message timeout: %d

Action:内部瞬时错误,系统自动恢复,用户无需处理。

# YAS-01413

Message:cluster id cannot be modified

Action:集群全局唯一id,不允许外部修改。

# YAS-01414

Message:unexpected type of cluster manager message tag

Action:内部错误,请联系我们的技术支持解决。

# YAS-01415

Message:cluster manager TLV tag is missing

Action:内部错误,请联系我们的技术支持解决。

# YAS-01416

Message:unknown cluster manager TLV tag(%d) of %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01417

Message:duplicate cluster manager TLV tag(%d) of %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01418

Message:expected TLV tag(%d) of %s but actually got %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-01419

Message:invalid cluster manager address parameter

Action:配置文件的CM_ADDR配置值无效,请检查配置文件。

# YAS-01420

Message:the node is not primary

Action:内部瞬时错误,系统自动恢复,用户无需处理。

# YAS-01421

Message:the cluster version is latest

Action:内部瞬时错误,系统自动恢复,用户无需处理。

# YAS-01422

Message:no valid node for pulling cluster information

Action:内部瞬时错误,系统自动恢复,用户无需处理。

# YAS-01423

Message:normal node not found for %s type

Action:请确认当前集群下,该类型节点是否有正常节点,若存在,请稍后重试;若不存在,请进行分布式集群故障排查,待节点恢复正常后再进行重试。

# YAS-01424

Message:no valid MN node for node register

Action:配置文件中的CM_ADDR的信息是否正确。

# YAS-01425

Message:register failed until timeout

Action:报错节点向主MN注册超时,确保主MN与该节点网络正常后,重新执行。

# YAS-01426

Message:failed to register verify

Action:报错节点向其他集群的主MN申请注册,请检查配置文件中的CM_ADDR地址是否正确。

# YAS-01427

Message:invalid cluster manager notify type(%s)

Action:内部错误,请联系我们的技术支持解决。

# YAS-01428

Message:cluster manager is not inited

Action:CM模块未初始化,请稍后重试。

# YAS-01429

Message:cluster manager has not been started

Action:CM模块未启动,请稍后重试。

# YAS-01430

Message:unexpected type of cluster manager notify

Action:内部错误,请联系我们的技术支持解决。

# YAS-01431

Message:cluster manager notify target nodes not found

Action:内部错误,请联系我们的技术支持解决。

# YAS-01432

Message:pull failed until timeout

Action:该节点向主节点拉取信息超时,确保主MN与该节点网络正常后,重新执行。

# YAS-01433

Message:invalid cluster manager update node type(%s)

Action:内部错误,请联系我们的技术支持解决。

# YAS-01434

Message:the node(%u-%u) is abnormal

Action:集群中有节点或网络异常,请将节点或网络修复后,重新执行。

# YAS-01435

Message:node not found for %s type

Action:集群信息正在同步,请稍后重试。

# YAS-01436

Message:invalid cluster manager probe type(%s)

Action:内部瞬时错误,系统自动恢复,用户无需处理。

# YAS-01437

Message:cluster manager operation can only be executed on the primary mn

Action:集群管理的操作只允许在主MN节点执行。

# YAS-01438

Message:group is not found for type: %s

Action:集群信息正在同步,请稍后重试。

# YAS-01439

Message:list itemSize is not match, expect:%u, out:%u

Action:内部错误,请联系我们的技术支持解决。

# YAS-01440

Message:set data path for node(%u-%u) repeatedly, current path: %s

Action 请勿反复设置节点数据路径。

# YAS-01441

Message:invalid cluster manager get node list param, role:%s, type:%s, groupId:%u, state:%s, output type:%s

Action 内部错误,请联系我们的技术支持解决。

# YAS-01442

Message:node not found by role:%s, type:%s, groupId:%u, state:%s, output type:%s

Action 请确认当前集群状态下,是否有符合查找条件的节点,请稍后再重试。

# YAS-01443

Message:group(%u) type(%s) is not support delete

Action 该组类型不支持删除组操作。

# YAS-01444

Message:failed to delete group(%u), the number of groups must not be less than 1

Action 集群中任一类型的组数量不可删除至0个,如有需要,请使用强制删除组命令。

# YAS-01445

Message:the task(%s) % PRId64 is not support %s

Action:该任务类型暂不支持对该类型节点进行操作。

# YAS-01446

Message:failed to remote(%u-%u,%u) alter ha param, error code: %u, error msg: %s

Action:修改HA参数失败,请检查该节点是否正常。待确定节点正常后,重新执行该任务。

# YAS-01447

Message:unsupport alter local(%u-%u) ha param

Action:不支持修改节点自身的增删HA参数,请检查传入的节点ID是否正确。

# YAS-01448

Message:invalid cluster manager task type

Action:内部错误,请联系我们的技术支持解决。

# YAS-01449

Message:failed to get %s task info, error msg: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01450

Message:notify state %s to cn or mn timeout %ld ms

Action:内部错误,请联系我们的技术支持解决。

# YAS-01451

Message:failed to notify state %s to cn or mn

Action:内部错误,请联系我们的技术支持解决。

# YAS-01600

Message:pub push node is empty

Action:推送节点为空,请检查当前的集群状态。

# YAS-01601

Message:pub queue exceeds max size

Action:推送队列已满,请查询推送视图查看推送当前任务情况。

# YAS-01602

Message:pub task id: %lu is not matched

Action:推送任务ID不匹配,请查询推送视图后重试。

# YAS-01603

Message:part nodes have not been committed successfully, please wait for the synchronization to complete

Action:语句执行成功但部分节点还未同步,请检查是否有节点异常,如无异常或异常已恢复,请等待各节点同步完成。

# YAS-01604

Message:distributed commit failed and the operation will be rolled back

Action:分布式提交失败,回滚当前操作。

# YAS-01650

Message:user oid is mismatched

Action:本次执行失败,当前系统有异常DDL未恢复,待恢复完成后再重试。

# YAS-01651

Message:the number of abnormal DDL exceeds upper limit

Action:异常DDL数量超过上限,请等待系统恢复正常后再执行。

# YAS-01652

Message:invalid partition num, expected: %d, actual: %d

Action:分区数不正确,请输入期望的分区数后再执行。

# YAS-01653

Message:profile oid is mismatched

Action:本次执行失败,当前系统有异常DDL未恢复,待恢复完成后再重试。

# YAS-01700

Message:the task type %u is invalid

Action:内部错误,请联系我们的技术支持解决。

# YAS-01701

Message:the task type name '%s' is invalid

Action:错误任务类型名,请确认该类型名是否有效。

# YAS-01702

Message:the root task id % PRId64 is invalid

Action:根任务号错误,请确认输入参数是否正确。

# YAS-01703

Message:the status of task % PRId64 is error: %s

Action:当前任务状态不满足操作所需条件,请确认。

# YAS-01704

Message:the task manager is not started

Action:任务管理模块未启动,请稍后重试。

# YAS-01705

Message:the task message error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-01706

Message:the task % PRId64 operation '%s' conflict with before '%s'

Action:任务与前面任务冲突,请确认处理。

# YAS-01707

Message:too many tasks run at the same time

Action:已经有太多任务在处理,请稍后重试。

# YAS-01708

Message:the task % PRId64 operation '%s' has been canceled

Action:任务已经被取消或中断,请确认重试。

# YAS-01709

Message:the task % PRId64 is not found

Action:未找到该任务,请确认后重试。

# YAS-01710

Message:task operation can only be executed on the primary mn

Action:任务管理的操作只允许在主MN节点执行。

# YAS-01711

Message:the %s task remote execute fail, error code: %u

Action:远程任务执行失败,请确认后重试。

# KERNEL

# YAS-02001

Message:failed to create database, reason: %s

Action:参考底层错误码action。

# YAS-02002

Message:maximum number of control items is %u

Action:ctrl文件个数超过限制,不要增加ctrl文件超过上限。

# YAS-02003

Message:cannot set datafile autoextend of memory mapped tablespace

Action:不要给MMS表空间设置autoextend属性。

# YAS-02004

Message:failed to write file '%s'

Action:写文件失败,查看底层错误码明确具体原因。

# YAS-02005

Message:invalid file: %s, the reason: %s

Action:数据文件损坏,尝试使用备库修复或备份恢复。

# YAS-02006

Message:maximum number of archive logs is %u

Action:归档文件超出限制,尝试归档清理。

# YAS-02007

Message:no free extent in tablespace %s

Action:表空间空间不足,请打开表空间自动扩展或给表空间添加空闲存储介质文件。

# YAS-02008

Message:maximum block count of segment is %u

Action:当前segment超出大小限制,尝试清理segment或改用分区表。

# YAS-02009

Message:no free cursors in cursor pool

Action:当前并发数太高导致cursor不足,请同时增大系统参数SHARE_POOL_SIZE和CURSOR_POOL_SIZE来增加可用的游标缓存区大小。

# YAS-02010

Message:user '%s' does not exist

Action:用户不存在,请输入正确的用户名。

# YAS-02011

Message:no free blocks in large pool

Action:当前并发数太高导致large pool不足,请稍后重试。

# YAS-02012

Message:%s does not exist

Action:对象不存在,请输入正确的对象名。

# YAS-02013

Message:name is already used by an existing object

Action:输入一个没有被使用过的名字,或修改或删除已存在的对象。

# YAS-02014

Message:maximum number of row size is %u

Action:超过最大行长度限制,请减少当前行大小,或对表做拆分。

# YAS-02015

Message:too many pending transactions

Action:并发事务数太多,请稍后重试。

# YAS-02016

Message:no free undo blocks

Action:没有可用的undo页面以供使用,请稍后重试。

# YAS-02018

Message:no free items in %s pool

Action:锁区空间不足,请稍后重试。

# YAS-02019

Message:number of user exceeds limit

Action:超过最大用户数限制,请清理用户后重试。

# YAS-02020

Message:snapshot too old

Action:增大参数UNDO_RETENTION的值,或使用更大的undo表空间。

# YAS-02021

Message:invalid ROWID

Action:检查rowid格式,输入正确的rowid格式,rowid格式:objectId,spaceId,fileid,blockid,dir。

# YAS-02022

Message:savepoint %s does not exist

Action:savepoint点不存在,请输入正确的savepoint点。

# YAS-02023

Message:deadlock detected while waiting for resource

Action:资源冲突发生死锁,等待数据库自行处理,请稍后重试。

# YAS-02024

Message:lock wait timeout, wait time %u milliseconds

Action:上锁超时,请稍后重试。

# YAS-02025

Message:no free space in virtual memory pool

Action:virtual memory pool空间不足,请稍后重试。

# YAS-02026

Message:the database cannot recover to a consistent status

Action:redo文件损坏,使用恢复手段恢复例如备份恢复。

# YAS-02027

Message:the incoming address %s banned by user profile %s

Action:登录IP被禁止登录,请修改用户profile或者更换IP重试。

# YAS-02028

Message:cannot serialize access for this transaction

Action:可串行化事务冲突,请稍后重试。

# YAS-02029

Message:SET TRANSACTION must be the first statement of transaction

Action:SET TRANSACTION必须是事务的第一条语句。

# YAS-02030

Message:unique constraint%s violated

Action:删除唯一性约束或不要插入这一行。

# YAS-02031

Message:no matching unique or primary key for this column-list

Action:使用ALL_CONS_COLUMNS目录视图查找正确的列名称。

# YAS-02032

Message:column type is incompatible with referenced column type

Action:为引用列选择兼容的数据类型,而且外键中字符列的排序规则必须与主键中相应列的排序规则匹配。

# YAS-02033

Message:foreign key constraint (%s.%s) violated: parent key not found

Action:删除外键或添加匹配的主键。

# YAS-02034

Message:foreign key constraint (%s.%s) violated: child found

Action:删除子表中依赖父表的数据或禁用约束后重试该操作。

# YAS-02035

Message:sequence %s.NEXTVAL %s and cannot be instantiated

Action:更改sequence,以便可以请求新值。

# YAS-02036

Message:the database is already open

Action:如果要在实例上打开新数据库,请先关闭该实例,然后启动该实例并重试该操作。

# YAS-02037

Message:the database must be mounted and not open

Action:确保数据库的状态后重试该操作。

# YAS-02038

Message:column %s already exists

Action:已有同名列,删除原列或将原列改名后再次尝试,或更改语句中冲突的列名。

# YAS-02039

Message:maximum number of columns indexed is %d

Action:减少索引中涉及的列的列数,使其不高于提示的数值。

# YAS-02040

Message:index(%s.%s) or index partition is unusable

Action:删除指定的索引,或重建指定的索引,或重新生成不可用的索引分区。

# YAS-02041

Message:cannot create segments in undo, cache or swap tablespace

Action:检查表空间名称并重新指定表空间。

# YAS-02042

Message:cannot execute %s when the database is rolling back

Action:数据库回滚时无法执行具体报错描述中的DDL操作,请等待数据库完成回滚后再次尝试。

# YAS-02043

Message:columns have been indexed

Action:列上已存在索引,删除列上原来的索引或修改新建索引使用的列后再次尝试。

# YAS-02044

Message:file '%s' already exists

Action:已有同名文件,删除或重命名原来的文件或修改当前语句中冲突的文件名后再次尝试。

# YAS-02045

Message:file '%s' does not exist

Action:指定正确类型的现有文件的名称或编号。

# YAS-02046

Message:cannot drop the first file of tablespace %s

Action:无法删除用于创建表空间的第一个数据文件。

# YAS-02047

Message:the tablespace '%s' is offline

Action:使表空间online。

# YAS-02048

Message:file '%s' is not a member of tablespace %s

Action:使用正确的数据文件或临时文件重试该选项。

# YAS-02049

Message:file '%s' is not empty

Action:无法删除非空数据文件。

# YAS-02050

Message:the database is busy, try again later

Action:等待其他对database的操作完成后重试。

# YAS-02051

Message:such a referential constraint already exists in the table

Action:表中已有这样的外键约束,删除原外键约束或修改语句中的依赖关系后重试。

# YAS-02052

Message:cannot drop index used for enforcement of unique/primary key

Action:删除约束而不是索引。

# YAS-02053

Message:unique/primary keys in table referenced by foreign keys

Action:删除其他表中依赖于该表的外键约束后再次尝试。

# YAS-02054

Message:cannot drop all columns in a table

Action:确保在执行删除列操作后,表中至少保留一列。

# YAS-02055

Message:role '%s' does not exist

Action:该角色不存在,请指定已存在的角色名。

# YAS-02056

Message:lock wait timeout with NOWAIT specified

Action:如有必要,请重试或增加超时时间。

# YAS-02057

Message:table can have only one primary key

Action:表只能拥有一个主键约束,选择需要的主键,删除其他主键约束。

# YAS-02058

Message:%s size exceeds limit %u

Action:基于列的键长度超过上限,修改列长度使其不高于上限值,或将键定义到满足条件的列上。

# YAS-02059

Message:control file version %d.%d.%d is incompatible with YashanDB version %d.%d.%d

Action:请使用兼容的软件版本重新启动数据库,如需升级软件版本,请走升级流程。

# YAS-02060

Message:maximum number of column count is %u

Action:如果错误是CREATE命令的结果,请减少命令中的列数并重新提交。如果错误是ALTER TABLE命令的结果,则有两个选项: 1) 如果表包含未使用的列,则在添加新列之前执行 ALTER TABLE 删除未使用的列;2) 减少命令中的列数并重新提交。

# YAS-02061

Message:number of MAXSIZE must be between % PRIu64 and % PRIu64

Action:请输入一个有效的MAXSIZE 值。

# YAS-02062

Message:object has been truncated or dropped

Action:对象被删除,请不要操作该对象,或恢复该对象后再次尝试。

# YAS-02063

Message:read-only transaction in current session

Action:内部错误,请联系我们的技术支持解决。

# YAS-02064

Message:the tablespace is not empty

Action:请使用INCLUDING CONTENTS 选项删除表空间下的对象。

# YAS-02065

Message:cannot drop built-in tablespace

Action:此操作不允许。

# YAS-02066

Message:index in the tablespace is used by foreign key of other tablespace

Action:在做上述操作之前,先把关联的外键约束删除。

# YAS-02067

Message:cannot drop the default tablespace of user

Action:执行上述操作前,重新设置用户的默认表空间。

# YAS-02068

Message:datafile %u-%u has been dropped

Action:请检查文件是否存在。

# YAS-02069

Message:column contains NULL values, cannot alter to NOT NULL

Action:将表中列的NULL值更新为非空值后再将列设置为NOT NULL。

# YAS-02070

Message:table must be empty to add NOT NULL column

Action:去掉NOT NULL选项执行语句,或给列设置一个不为空的默认值。

# YAS-02071

Message:the database is already mounted

Action:无需再次mount数据库。

# YAS-02072

Message:the database is not mounted

Action:请先mount数据库。

# YAS-02073

Message:failed to save head of redo file %s

Action:文件系统出现错误,导致redo文件写失败,请检查系统错误。

# YAS-02074

Message:cannot recover to current redo file, the redo files may be discontinuous

Action:可能是在全量恢复时没有清理旧的redo文件,而且redo文件已经和归档日志不连续了。请清理旧的redo文件,或保证归档和旧的redo是连续的,或执行PITR恢复。 如果上一次PITR恢复没有执行完成或执行失败,然后继续使用该数据库,有可能出现该错误,这种情况只能清理环境重新执行PITR的操作。

# YAS-02075

Message:the minimum size of redo file is % PRIu64

Action:redo日志文件大小的最小值受DB_BLOCK_SIZE,MAX_SESSIONS和REDO_BUFFER_SIZE三个参数的影响,根据需要调整配置参数或创建大于最小size的redo文件。最小的redo文件的详细计算公式可参考ALTER_DATABSE

# YAS-02076

Message:the count of redo log files cannot be less than %u

Action:请创建不少于最少数量的redo文件。

# YAS-02077

Message:redo log file '%s' is in use

Action:如果redo的状态是CURRENT,执行日志切换,然后执行checkpoint,使这个redo的状态变为INACTIVE之后再执行上述操作。redo文件的状态可以通过V$LOGFILE查看。

# YAS-02078

Message:the database is not open

Action:先open数据库。

# YAS-02079

Message:archive log mode must be enabled when %s

Action:请先打开归档模式再执行上述操作。

# YAS-02080

Message:STORE-IN (tablespace list) can only be specified for a LOCAL index on a Hash part table

Action:只有哈希分区表上的本地索引可以使用STORE-IN子句,该语句不满足此条件,请勿使用STORE-IN子句。

# YAS-02081

Message:column %s does not exist

Action:检查列名拼写是否有误。

# YAS-02082

Message:maximum number of rowid count is %u

Action:请确保rowid的个数不超过最大的rowid数量。

# YAS-02083

Message:built-in object %s cannot be altered

Action:不允许更改内置对象。

# YAS-02084

Message:built-in object %s cannot be dropped

Action:不允许删除内置对象。

# YAS-02085

Message:built-in object %s cannot be truncated

Action:不允许清空内置对象。

# YAS-02087

Message:invalid archive log path: %s

Action:请输入正确的归档路径。

# YAS-02088

Message:maximum number of redo files is %u

Action:请不要创建超过最大数量的redo文件。

# YAS-02089

Message:maximum number of datafile count is %u

Action:请不要创建超过最大数量的数据文件。

# YAS-02090

Message:maximum number of tablespace count is %u

Action:请不要创建超过最大数量的表空间。

# YAS-02091

Message:number of savepoint exceeds limit

Action:结束当前事务或释放无用的savepoint。

# YAS-02092

Message:maximum size of undo each use is %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-02093

Message:tablespace '%s' does not exist

Action:操作的表空间不存在,确认并修正表空间名字后重新执行。

# YAS-02094

Message:current session has been killed or canceled

Action:连接已断开,尝试重新连接。

# YAS-02095

Message:maximum size of open virtual memory is %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-02096

Message:sequence param %s error, %s

Action:请输入一个有效的sequence属性数值。

# YAS-02097

Message:cannot create %s on expression with datatype %s

Action:列的数据类型不支持创建索引或排序键,修改列的数据类型,或不要在此列上创建索引或排序键。

# YAS-02099

Message:btree index level exceeds limit %u

Action:数据规模超出了建索引的上限,将数据进行分区或尝试更换索引列。

# YAS-02100

Message:must end current transaction before executing the operation

Action:执行COMMIT或ROLLBACK结束当前事务后重试。

# YAS-02101

Message:too many local sessions participating in global transaction

Action:内部错误,请联系我们的技术支持解决。

# YAS-02102

Message:no prepared transaction found with ID % PRIu64

Action:指定GTID的分布式事务未找到,查询V$2PC_PENDING视图。

# YAS-02103

Message:distributed transaction branch already attached

Action:内部错误,请联系我们的技术支持解决。

# YAS-02104

Message:local transaction does not exist

Action:内部错误,请联系我们的技术支持解决。

# YAS-02105

Message:distributed transaction branch with ID % PRIu64 already exists

Action:内部错误,请联系我们的技术支持解决。

# YAS-02106

Message:distributed transaction status error, expect %s

Action:分布式事务状态非法,查询V$2PC_PENDING视图确认分布式事务状态。

# YAS-02107

Message:maximum number of partbound size is %u

Action:根据列数据大小调整分区键。

# YAS-02108

Message:maximum number of partition count is % PRIu64

Action:重新设计分区表,使得分区数量不超上限。

# YAS-02109

Message:underlying table of a LOCAL partitioned index must be partitioned

Action:非分区表不支持建LOCAL分区索引,修正语句后重试。

# YAS-02110

Message:maximum number of extending data buffer is reached

Action:Buffer Cache扩展已至上限,不能再执行ALTER SYSTEM 语句进行扩展操作。

# YAS-02111

Message:extend size of buffer must be between % PRIu64 and % PRIu64

Action:请输入一个有效的Buffer Cache扩展size数值。

# YAS-02112

Message:number of partitions of LOCAL index must equal that of the underlying table

Action:建立LOCAL索引分区数量需与分区表的分区数保持一致,指定正确的分区数后重试。

# YAS-02113

Message:partitioned columns must be a subset of the key column of the unique index

Action:若用户需要创建一个分区索引且表的分区键列不是索引列的子集,则必须创建为非唯一索引;否则,请修改表分区键或索引列,以确保分区键列构成索引列的子集。

# YAS-02114

Message:invalid or incorrectly formatted GTID

Action:指定分布式GTID错误,更正后重试。

# YAS-02115

Message:partition key does not map to any partition

Action:不要插入此条记录,或添加一个范围包括此记录的分区,或修改分区规则以包含此记录。

# YAS-02116

Message:forbid phase1 in autonomous transaction

Action:自治事务无法转换为分布式事务,等待或重试。

# YAS-02117

Message:specified number is not a valid system change number

Action:请输入一个有效的SCN值。

# YAS-02118

Message:partition maintenance operations may only be performed on partitioned object

Action:确认语句中指定的索引是否已经分区。

# YAS-02119

Message:number of expressions is not equal to the number of partitioning

Action:指定分区查询时表达式个数需要与分区键包含的列数相等,请修改语句中的表达式个数。

# YAS-02120

Message:the partition number is invalid or out-of-range

Action:请输入一个有效的分区号。

# YAS-02121

Message:specified partition %s does not exist

Action:请用正确的分区名称重试。

# YAS-02122

Message:redo log file or archive log file with asn %u is not found

Action:检查redo文件或归档文件是否存在、存储设备是否在线、文件是否在正确的位置、然后继续尝试。

# YAS-02123

Message:redo file is corrupted, block id %u, asn %u

Action:找到正确的redo文件再次尝试、备份集进行恢复,或重新创建备库。

# YAS-02124

Message:cannot load redo data from point (reset id %u, asn %u, block id %u, lfn % PRIu64 )

Action:检查redo文件是否存在、存储设备是否在线、文件是否在正确的位置、然后继续尝试。

# YAS-02125

Message:partitioned key is not a subset of unique constraint keys

Action:表上已存在唯一约束项,分区键需要是唯一约束列的子集,重定义唯一约束项的列,或重新指定分区键。

# YAS-02126

Message:specified distributed transaction should be force commit without scn

Action:内部错误,请联系我们的技术支持解决。

# YAS-02127

Message:type of partition does not match the table

Action:请用正确的分区类型重试。

# YAS-02128

Message:invalid partition: %s

Action:输入正确的分区名称。

# YAS-02129

Message:partition bound value already exists in partition %d

Action:重新设置分区边界值并尝试。

# YAS-02130

Message:cannot drop hash partition or subpartition

Action:不能删除哈希分区或子分区,请勿执行此操作。

# YAS-02131

Message:cannot drop all partitions of the table

Action:不能删除表的所有分区,请至少保留一个分区。

# YAS-02132

Message:cannot drop column %s

Action:不能删除此列,具体原因请参考报错信息。

# YAS-02133

Message:primary key and unique constraints must have at least one same column

Action:请依据报错信息重新定义约束项的列。

# YAS-02134

Message:the count of indexes in a table exceeds the limit %d

Action:减少索引数量。

# YAS-02135

Message:partitioned table contains partitions in a different tablespace

Action:查找父表不在当前删除表空间上的表分区,请先删除其父表后重试。

# YAS-02136

Message:partitioned index contains partitions in a different tablespace

Action:查找父索引不在当前删除表空间上的索引分区,请先删除其父索引后重试。

# YAS-02137

Message:parameter %s mismatch the value when create database, expect %d

Action:参数值与创建数据库时的值不匹配,请参考预期值修改语句。

# YAS-02138

Message:forbid to alter specified parameter

Action:此操作不允许。

# YAS-02139

Message:the count of AC in a table exceeds the limit %d

Action:单表上的AC数量已超过上限,请减少至不高于上限值。

# YAS-02140

Message:partition bound value '%s' is invalid, expected size not more than %u, actual size is %u

Action:确保边界值的长度不超过相应分区列的长度。

# YAS-02141

Message:control file size must between %u and %u

Action:修改控制文件相关参数的值或检查控制文件大小,然后重试操作。

# YAS-02142

Message:cannot drop partitioning column

Action:此操作不允许。

# YAS-02143

Message:invalid username/password, login denied

Action:请按照正确的格式输入有效的用户名和密码组合。

# YAS-02144

Message:cannot specify %s tablespace as %s tablespace

Action:指定一个永久表空间作为默认表空间。

# YAS-02145

Message:userId %u is already used or invalid

Action:内部错误,请联系我们的技术支持解决。

# YAS-02146

Message:the minimum size of double write file is % PRIu64

Action:可以减小参数DBWR_COUNT或DBWR_BUFFER_SIZE的值,也可以调大双写文件的大小,双写文件的大小约束可以参考CREATE DATABASE

# YAS-02147

Message:the block %d-%d-%d is corrupted

Action:主库上开启坏块自动修复功能,尝试自动修复,或使用备份集恢复。

# YAS-02148

Message:%s - table definition has changed

Action:如果是旧快照、然后提交或回滚事务并继续工作;如果对象创建时间戳仍然大于系统时间,则导出对象的数据,删除对象,重新创建对象,使其具有新的创建时间戳,导入对象的数据,并继续工作。

# YAS-02149

Message:flashback is not allowed for the table type %s

Action:检查表类型是否支持闪回。

# YAS-02150

Message:cannot flashback the table in the middle of a transaction

Action:结束当前事务后再进行闪回操作。

# YAS-02151

Message:flashback too many tables, limit %d

Action:请减少进行flashback表的数目。

# YAS-02152

Message:total row size %u exceeds block capacity

Action:请减少行的长度。

# YAS-02153

Message:cannot drop a user that is currently connected

Action:确保用户未登录,然后重试此操作。

# YAS-02154

Message:CASCADE must be specified to drop '%s'

Action:请指定CASCADE,然后重试此操作。

# YAS-02155

Message:synonym translation is no longer valid

Action:修改同义词定义,使同义词指向一个合法的目标对象。

# YAS-02156

Message:unable to create referential integrity constraint on temporary table

Action:不能给临时表添加外键约束。

# YAS-02157

Message:unable to partition temporary table

Action:不能创建分区临时表。

# YAS-02158

Message:cannot create an object with a name matching private temporary table prefix

Action:请指定创建私有临时表或将表名中的前缀'YAS$PTT_'去除。

# YAS-02159

Message:unable to create temporary object in a non-temporary tablespace %s

Action:请更改表的类型或表空间后重新创建。

# YAS-02160

Message:unable to create non-temporary object in a temporary tablespace

Action:请更改表的类型或表空间后重新创建。

# YAS-02161

Message:no free space in global temporary table cache

Action:请TRUNCATE部分会话的全局临时表后重试此操作。

# YAS-02162

Message:tablespace '%s' already exists

Action:请对新的表空间使用其他名称。

# YAS-02163

Message:the number of private temporary tables of current session exceeded the maximum value

Action:删除当前会话的部分私有临时表后重试此操作。

# YAS-02164

Message:the number of ip list exceeded the maximum value %u

Action:请修改IP黑白名单的配置重试。

# YAS-02165

Message:attempt to execute unsupported DDL statement on global temporary table in use

Action:该表正在被使用,不允许执行当前操作,请稍后重试。

# YAS-02166

Message:unable to create index on private temporary table

Action:此操作不允许。

# YAS-02167

Message:unable to alter private temporary table

Action:此操作不允许。

# YAS-02168

Message:forbid 2-phase when involving temporary tables

Action:不能对临时表执行分布式事务,请检查SQL所在环境。

# YAS-02169

Message:unable to execute flashback on temporary table

Action:此操作不允许。

# YAS-02170

Message:create a private temporary table with a name not matching 'YAS$PTT_' prefix

Action:请指定创建非私有临时表或为表名加上前缀'YAS$PTT_'。

# YAS-02171

Message:looping chain of synonyms

Action:请检查同义词链接对象。

# YAS-02172

Message:database is not created completely

Action:请采取适当的操作以重新创建数据库或新的控制文件。

# YAS-02173

Message:The minimum size of data buffer part is % PRIu64

Action:请输入一个有效的data buffer size。

# YAS-02174

Message:built-in object %s cannot be commented

Action:内建对象无法注释,请勿执行此操作。

# YAS-02175

Message:temporary table does not support comment

Action:临时表无法添加注释,请勿执行此操作。

# YAS-02176

Message:'%s' is a duplicate column name

Action:删除重复的列名称或使用新的列名称重试此操作。

# YAS-02177

Message:specified %s cannot be dropped

Action:默认用户角色无法删除,请勿执行此操作。

# YAS-02178

Message:ALTER INDEX or INDEX PARTITION %s may not be combined with other operations

Action:请确保PARTITION是ALTER INDEX语句中指定的唯一操作。

# YAS-02179

Message:a partitioned index may not be coalesced as a whole

Action:请一次coalesce一个索引分区。

# YAS-02180

Message:file size specified is smaller than minimum required

Action:请增加文件大小。

# YAS-02181

Message:password file missing or disabled

Action:重新生成密码文件。

# YAS-02182

Message:failed to gather statistics, reason: %s

Action:按照报错信息解决对应问题后重试。

# YAS-02183

Message:must use RESETLOGS option for database open

Action:使用RESETLOGS选项打开数据库。

# YAS-02184

Message:RESETLOGS option is only valid after an incomplete database recovery

Action:在不指定RESETLOGS的情况下重试。

# YAS-02185

Message:cannot drop nonexistent primary key

Action:指定删除主键不存在,请重新指定存在的主键。

# YAS-02186

Message:cannot drop nonexistent unique key

Action:指定删除唯一键不存在,请重新指定存在的唯一键。

# YAS-02187

Message:cannot drop constraint - nonexistent constraint

Action:确保输入正确的约束名。

# YAS-02188

Message:this unique/primary key is referenced by some foreign keys

Action:在删除该键之前,删除对该键的所有引用。

# YAS-02189

Message:ADD PARTITION is not permitted on Interval partitioned objects

Action:禁止对INTERVAL分区对象执行此操作。插入一行以创建新分区。

# YAS-02190

Message:file contains used data beyond requested resize value

Action:在调整文件大小之前,删除或移动该区域中包含区段的段,或选择一个调整大小值,以便在被调整的区域中只有空闲空间。

# YAS-02192

Message:the object is not in the recycle bin

Action:只有回收站中的对象可以被清除。

# YAS-02193

Message:the account is locked

Action:等待PASSWORD_LOCK_TIME或联系DBA。

# YAS-02194

Message:cannot perform DDL/DML on objects in the recycle bin

Action:不允许对回收站对象进行DDL或DML操作。

# YAS-02195

Message:the tablespace has been used by interval partitioned table

Action:不允许删除或移动间隔分区表使用的表空间。

# YAS-02196

Message:maximum length of chunk boundary is %u

Action:超过了分区键边界值的最大字符长度,请缩短后重试。

# YAS-02197

Message:unable to partition temporary table

Action:不能创建分区临时表。

# YAS-02198

Message:operation not supported on private/global temporary table

Action:不能在私有/全局临时表上执行此操作。

# YAS-02199

Message:cannot allocate % PRIu64 bytes from %s allocator

Action:适当调大建议的内存分配器容量。

# YAS-02200

Message:unsupported feature with temporary table

Action:确保操作的表类型,临时表不支持此功能。

# YAS-02201

Message:a partitioned index may not be rebuilt as a whole

Action:一次重建一个分区的索引(使用ALTER index Rebuild partition),或删除并重新创建整个索引。

# YAS-02202

Message:the sequence number cannot be greater than the recovery begin point

Action:减小输入的sequence number,不能超过V$DATABASE中rcy_point的ASN值。

# YAS-02203

Message:unable to create index on view

Action:无法在视图上创建索引。

# YAS-02204

Message:invalid allocator type: %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-02205

Message:the control files are invalid

Action:控制文件被损坏,可能数据库发生严重错误。请联系我们的技术支持解决。

# YAS-02206

Message: specified index does not exist or cannot be used to enforce the constraint

Action: 指定合适的索引。

# YAS-02207

Message:unsupported table type for shrink

Action:确认操作的表类型,列存表不支持shrink操作。

# YAS-02208

Message:lock conflict in consistent write

Action:等待另外的一致性写入完成后,再次尝试该过程。

# YAS-02209

Message:ROW MOVEMENT is not enabled

Action:启用行移动并重新发出此命令。

# YAS-02210

Message:specified index cannot be used to enforce the constraint

Action:指定合适的索引或允许自动生成索引。

# YAS-02211

Message:invalid lob locator

Action:(1)请确保LOB LOCATOR已正确初始化。(2)确保LOB数据存在,然后重试。

# YAS-02212

Message:forbid to create system table

Action:不允许创建系统表。

# YAS-02213

Message:insufficient privileges

Action:请让数据库管理员或指定的安全管理员授予用户必要的特权。

# YAS-02214

Message:cannot GRANT/REVOKE privileges or roles to/from yourself

Action:无法向自己授予或收回权限或角色,请勿执行此操作。

# YAS-02215

Message:cannot grant privileges or roles to "%s"

Action:只允许向用户或角色授予权限或角色。

# YAS-02216

Message:invalid privilege or role specified

Action:请输入有效的权限名称。

# YAS-02217

Message:privilege %s is not a %s privilege

Action:授予正确的权限类型。

# YAS-02218

Message:cannot GRANT to a role WITH OPTION

Action:执行授权而不使用授权选项。

# YAS-02219

Message:GRANT WITH %s OPTION only applies to %s privileges

Action:请输入有效的授权选项值。

# YAS-02220

Message:cannot REVOKE privileges you did not grant

Action:请勿撤销这些权限。

# YAS-02221

Message:privilege not granted to %s

Action:确保已授予要撤销的权限。

# YAS-02222

Message:privilege/role has already been granted to user or role

Action:请勿向同一个对象授予重复的权限。

# YAS-02223

Message:grant record is not found

Action:内部错误,请联系我们的技术支持解决。

# YAS-02224

Message:cannot REVOKE privileges from system build-in user or role

Action:此操作不允许。

# YAS-02225

Message:%s is not a USER

Action:请输入一个有效的用户名。

# YAS-02226

Message:%s is not a ROLE

Action:请输入一个有效的角色名。

# YAS-02227

Message:cannot purge index not dropped, name %s

Action:此操作不允许。

# YAS-02228

Message:table with LOBs contains segments in different tablespaces

Action:LOB列与所属表的表空间不相同时,不允许直接删除LOB的表空间,请先删除表后,再执行本操作。

# YAS-02229

Message:table with lobfrags contains segments in different tablespaces

Action:LOB列分区与所属表的表空间不相同时,不允许直接删除LOB分区的表空间,请先删除表后,再执行本操作。

# YAS-02230

Message:fetch out of sequence

Action:(1)检查是否在打开游标后执行了DDL导致游标失效。(2)检测是否在游标数据取完后继续操作。(3)检查游标是否合法,例如对一个没有返回数据的游标执行fetch。

# YAS-02231

Message:partitioning key maps to a partition outside maximum permitted number of partitions

Action:确保分区键落在1048575分区或子分区内。

# YAS-02232

Message:the operation is not permitted on a view

Action:视图只能进行选择操作。

# YAS-02233

Message:read offset % PRIu64 exceeds the %s file size % PRIu64

Action:检视redo文件或归档日志是否和数据库匹配,或联系我们的技术支持解决。

# YAS-02235

Message:%s logic space is full

Action:表中数据量已经到达上限。

# YAS-02236

Message: roleId %u is already used

Action: 重新指定角色名。

# YAS-02237

Message: number of role exceeds limit

Action: 角色数量超出上限,请清除角色后重试。

# YAS-02238

Message:number of shrink space size must be between % PRIu64 and % PRIu64

Action:请输入一个有效的表空间收缩值。

# YAS-02239

Message:the password has expired

Action:更改密码或与数据库管理员联系,以了解选择符合强制配置文件的新密码的规则。

# YAS-02240

Message:failed to archive redo

Action:归档线程出现了异常,redo文件不能正常归档。具体异常原因可以查看V$DIAG_INCIDENT,归档线程异常的故障编号为212,可以使用ERROR_NUMBER=212过滤出归档线程异常的事件。也可以查看运行日志明确具体原因。

# YAS-02241

Message:table version mismatch

Action:请检查节点间表的元数据版本,等待元数据自动恢复,稍后重试。

# YAS-02242

Message:%s is invalid, reason: %s

Action:根据错误提示修正,输入有效的值。

# YAS-02243

Message:the file is performing health check

Action:等待并稍后重试。

# YAS-02244

Message:the value of parameter %s is invalid

Action:请输入有效的检查项参数值。

# YAS-02245

Message:user %s lacks CREATE SESSION privilege; logon denied

Action:授予用户“创建会话”权限。

# YAS-02246

Message:offline immediate disallowed unless media recovery enabled

Action:使表空间正常脱机或关闭中止。重新考虑您的备份策略。如果要存档日志,则可以执行此操作。

# YAS-02247

Message:file %u cannot be read at this time

Action:检查文件的状态。使其online后重试。

# YAS-02248

Message:offline datafile cannot be dropped

Action:将文件online后重试。

# YAS-02249

Message:cannot offline built-in tablespace

Action:内置表空间不允许offline。

# YAS-02250

Message:invalid option for alter a temporary tablespace

Action:临时表空间不允许进行ALTER操作。

# YAS-02251

Message:file %u is %s

Action:若文件已经处于offline/online状态,则不能offline/online;若文件处于recover状态,等待recover完成后重试。

# YAS-02252

Message:cannot offline datafiles of built-in or temporary tablespace

Action:内置/临时表空间的文件不允许offline。

# YAS-02253

Message:tablespace %s is residual, cannot restored online

Action:残留的表空间需要手动删除。

# YAS-02254

Message:check constraint (%s.%s) violated

Action:不要插入违反约束的值。

# YAS-02255

Message:cannot validate constraint (%s.%s)- check constraint violated

Action:删除添加检查约束的列中的不符合检查约束的值,然后重试。

# YAS-02256

Message:cannot resize datafile of memory mapped tablespace

Action:此操作不允许。

# YAS-02257

Message:[%s] not found in %s

Action:输入有效的检查项名称重试运行检查。

# YAS-02258

Message:cannot create journal table %s.%s

Action:删除重名对象。

# YAS-02259

Message:maximum number of databucket count is %u

Action:将DATA BUCKET的数量减少到最大值以下。

# YAS-02260

Message:databucket '%s' already exists

Action:指定不同的DATA BUCKET名称并重试。

# YAS-02261

Message:databucket '%s' is not found in tablespace %s

Action:指定属于该表空间的DATA BUCKET进行删除。

# YAS-02262

Message:databucket '%s' is not empty

Action:清空DATA BUCKET中的表后重试。

# YAS-02263

Message:cannot shrink memory mapped tablespace

Action:此操作不允许。

# YAS-02264

Message:failed to read block %u-%u-%u

Action:请等待并重试。

# YAS-02265

Message:databucket of tablespace '%s' exhausted

Action:为表空间创建一个新的DATA BUCKET。

# YAS-02266

Message:the database is not in upgrade mode

Action:数据库当前不在升级模式。

# YAS-02267

Message:the database mode conflicts with the connection type

Action:如果您不是SYS用户,请尝试在数据库升级完成后再次连接。如果您是SYS用户,请重试。

# YAS-02268

Message:%s "%s.%s" has errors

Action:对于存储过程,问题可能是语法错误或对其他不存在的过程的引用。对于视图,问题可能是视图的定义查询中对不存在的表的引用,也可能是引用不存在或无法访问类型的表。根据问题修复错误或根据需要创建引用的对象。

# YAS-02269

Message:only SELECT and READ allowed to grant on views

Action: 视图只能进行查询操作。

# YAS-02270

Message:cannot create private temporary table for another user

Action:只允许为当前会话连接的用户创建临时表。

# YAS-02272

Message:trigger %s already exists on another table, cannot replace it

Action:删除同名触发器,然后重新创建。

# YAS-02273

Message:cannot reference a trigger of a different type

Action:将引用的触发器创建为相同类型的触发器。

# YAS-02274

Message:cyclic trigger dependency is not allowed

Action:不要创建可能形成循环依赖的触发器。

# YAS-02275

Message:cannot create this trigger type on this type of %s

Action:改为在表上创建DML触发器。

# YAS-02276

Message:trigger %s is invalid and re-validation failed

Action:解决触发器里的编译错误,禁用触发器或删除触发器。

# YAS-02277

Message:error during execution of trigger %s

Action:根据返回的具体信息检查操作中涉及的触发器。

# YAS-02279

Message:cannot modify column datatype with current constraint(s)

Action:删除约束或不执行违反约束的操作。

# YAS-02280

Message:column to be modified must be empty to %s

Action:清空列中的值后重试。

# YAS-02281

Message:cannot decrease column length because some values are too big

Action:删除表中超过目标字符长度的值后重试。

# YAS-02282

Message:column to be modified to NOT NULL is already NOT NULL

Action:不要为非空列增加NOT NULL属性。

# YAS-02283

Message:cannot enable - null values found

Action:删除空值后重试。

# YAS-02284

Message:column to be modified to NULL cannot be modified to NULL

Action:如果主键或检查约束强制实施NOT NULL约束,则删除该约束。

# YAS-02285

Message:column type incompatible with referenced column type

Action:为引用列选择兼容的数据类型。此外,外键中字符列的排序规则必须与主键中相应列的排序规则匹配。

# YAS-02286

Message:unsupported feature in temporary table

Action:不支持对临时表执行当前操作,请检查SQL语句。

# YAS-02287

Message:audit policy cannot be dropped as it is currently enabled

Action:禁止审计策略后再删除。

# YAS-02288

Message:SET INTERVAL is not legal on this table

Action:只能在分区界值不包含MAXVALUE的范围分区表上进行INTERVAL和非INTERVAL分区类型转换。

# YAS-02289

Message:table is not partitioned by the interval

Action:只能在INTERVAL类型的范围分区表上修改分区表空间。

# YAS-02290

Message:column %u has been dropped by other session

Action:(1)重试操作。(2)表结构已发生变化,请检查更新SQL语句。

# YAS-02291

Message:cannot reference a trigger defined on another table

Action:不要在创建触发器时引用非本表上的触发器,请修改或删除引用的触发器后重试。

# YAS-02292

Message:cannot create triggers on objects owned by SYS

Action:不允许在SYS拥有的对象上创建触发器。

# YAS-02293

Message:cannot drop nonexistent supplemental logging

Action:不允许删除不存在的附加日志。

# YAS-02294

Message:supplemental logging has been enabled

Action:在添加新的附加日志记录之前,删除旧的附加日志记录。

# YAS-02295

Message:no index can be used by supplemental logging

Action:在此表上创建唯一索引。

# YAS-02296

Message:no primary key can be used by supplemental logging

Action:在此表上创建主键索引。

# YAS-02297

Message:cannot drop constraint used by supplemental logging

Action:不允许删除附加日志记录使用的约束。

# YAS-02298

Message:maximun length of DDL sql is 32K when supplemental logging enabled

Action:当附加日志开启后,DDL语句最大长度为32K。

# YAS-02299

Message:failed to get databucket %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-02300

Message:audit policy %s must have at least one audit option

Action:删除没有审计选项的审计策略,重新创建审计策略。

# YAS-02301

Message:audit policy %s already applied with the %s clause

Action:使用NOAUDIT命令移除已存在的审计策略。

# YAS-02302

Message:redo free space is not enough

Action:执行ALTER SYSTEM CHECKPOINT释放redo空闲空间。

# YAS-02303

Message:invalid tempfile clause for alter of permanent tablespace

Action:使用数据文件子句重试。

# YAS-02304

Message:cannot drop partitioned key column in a table

Action:不能删除表的分区键列,请勿执行此操作。

# YAS-02305

Message:the archive log %s version does not match the backup set version

Action:归档日志和备份集不是一个数据库产生的,需要清理或移除版本不匹配的归档日志,重新执行恢复,或使用的该归档版本匹配的备份集恢复。

# YAS-02306

Message:outline already exists

Action:重新命名outline名称,避免和已存在的outline重名。

# YAS-02307

Message:database is abnormal, cannot %s

Action:DBA 介入查看产生故障的原因,解决故障,消除故障状态后再继续执行业务。

# YAS-02308

Message:automatic diagnostic repository is not enabled, %s

Action:用户可根据实际需求打开自动诊断工具,修改配置参数DIAG_ADR_ENABLED。

# YAS-02309

Message:invalid redo file block size, must be an integer multiple of 512

Action:输入正确的redo文件块大小。

# YAS-02310

Message:tablespace limits exceeded in this edition

Action:个人版/标准版容量限制,请删除不需要的数据文件或关闭数据文件自动扩展或缩小数据文件的大小后重试。

# YAS-02311

Message:failed to convert database to normal due to %s

Action:请执行shutdown abort。

# YAS-02312

Message:cannot truncate datafile of undo tablespace

Action:请勿对undo datafile进行truncate操作。

# YAS-02313

Message:cannot shrink undo tablespace

Action:请勿对undo表空间进行shrink操作。

# YAS-02314

Message: REVERSE/NOREVERSE may not be specified in this context

Action: 删除违规的子句。可以在CREATE INDEX语句和ALTER INDEX REBUILD语句中将REVERSE指定为索引的属性(如果创建分区索引,则不能是单个分区的属性)。只能在ALTER INDEX REBUILD语句中指定NOREVERSE。

# YAS-02315

Message: failed to read user's restriction profile, user is %s

Action: 无法打开用户限制文件。

# YAS-02316

Message: failed to reuse password, please check the password restriction

Action: 无法使用已使用过的密码,请重新输入密码。

# YAS-02317

Message: failed to check password complexity for %s

Action: 密码输入不符合规范,请重新输入密码。

# YAS-02318

Message:drop LSC table or access constraint in offline tablespace is not allowed

Action:drop LSC表或AC时需确保其所在表空间非offline状态。

# YAS-02319

Message:cannot modify not null constraint in an ON DELETE/UPDATE SET NULL foreign key column

Action:请勿修改外键约束列的not null属性。

# YAS-02320

Message:unrecognized number version, must drop lsc table %s and create again

Action:列存表的number类型不兼容,请重建表或使用旧版本数据库。

# YAS-02321

Message:cannot build object in un-encrypted tablespace on encrypted table

Action:对处在加密表空间的表建对象时,请指定相关对象表空间也是加密的。

# YAS-02322

Message:can not create ac in un-encrypted tablespace on encrypted table

Action:对处在加密表空间的表建AC时,请指定AC所在表空间也是加密的。

# YAS-02323

Message:cannot encrypt built-in tablespace

Action:系统内置表空间不允许加密,请修改建库语句。

# YAS-02324

Message:invalid file id %u

Action:请输入合理的文件ID后重试。

# YAS-02325

Message:block id %u exceeds file size

Action:请输入正确的block,minblock或maxblock值后重试。

# YAS-02326

Message:invalid dump %s option, reason is %s

Action:请参考错误原因重试。

# YAS-02327

Message:dump backtrace timeout

Action 请检查打印堆栈会话所属机器后重试。

# YAS-02328

Message: table nologging is not allowed when standby exists

Action:请在单机情况下使用nologging表。

# YAS-02329

Message:%s is corrupted

Action:该表或关联表已损坏,请删除或清空损坏的表。

# YAS-02330

Message:the nologging table is not available at this time

Action:请勿对nologging表执行并发操作。

# YAS-02331

Message:%s is not allowed for nologging table

Action:请勿对nologging表执行该操作。

# YAS-02332

Message:object statistics are locked

Action:请解锁该对象的统计信息。

# YAS-02333

Message:unable to create no inmemory object in a memmory mapped tablespace

Action:请更改对象的inmemory选项或指定正确的表空间后重试。

# YAS-02334

Message:unable to create inmemory object in a non-memory mapped tablespace

Action:请更改对象的inmemory选项或指定正确的表空间后重试。

# YAS-02335

Message:the total number of dataspace has reached the upper limit

Action:数据空间的数目超过上限,需要先删除旧的数据空间才能再创建。

# YAS-02336

Message:object version mismatch

Action:DDL涉及的对象元数据版本发生变化,请等待元数据自动恢复,稍后重试。

# YAS-02337

Message:failed to columnar index operate, reason: %s

Action 请参考错误原因重试。

# YAS-02338

Message:datatype or length of a table partitioning column may not be changed

Action:此操作不允许。

# YAS-02339

Message:no lock on the current row

Action:当前行没有加锁。

# YAS-02340

Message:offset is larger than lob length

Action:偏移位大于LOB长度。

# YAS-02341

Message:unusable index exists on unique/primary constraint key

Action:删除或重建对应索引。

# YAS-02342

Message:index with unusable partition exists on unique/primary constraint key

Action:删除对应索引或重建对应索引分区。

# YAS-02343

Message:invalid or redundant resource

Action:请确认profile资源正确。

# YAS-02344

Message:profile %s does not exist

Action:请选择正确的profile。

# YAS-02345

Message:default profile cannot be dropped

Action:默认的profile不能被drop。

# YAS-02346

Message:invalid profile limit %s

Action:请确认输入的profile资源参数限制合法。

# YAS-02347

Message:the number of profile exceeds limit

Action:profile数量超出限制,请删除部分profile再新增。

# YAS-02348

Message:missing or invalid profile name

Action:请使用合法的profile名字。

# YAS-02349

Message:cannot modify nonexistent primary key

Action:无法修改不存在的主键,请确保要修改的主键存在。

# YAS-02350

Message:cannot modify nonexistent unique key

Action:无法修改不存在的唯一键,请确保要修改的唯一键存在。

# YAS-02351

Message:cannot modify constraint - nonexistent constraint

Action:确保输入了正确的约束名。

# YAS-02352

Message:such unique or primary key already exists in the table

Action:请勿对同列创建多个唯一约束或主键约束。

# YAS-02353

Message:indexes cannot use both DESC and REVERSE

Action:请勿在反向索引中使用DESC。

# YAS-02354

Message:cannot modify function index column datatype

Action:请勿修改函数索引列的类型。

# YAS-02355

Message:must specify table name for nested table column or attribute

Action:表中含有Nested Table UDT列或属性,请为其定义存储子句,参考CREATE TABLE中的nested_table_clauses。

# YAS-02356

Message:cannot create constraint on column of datatype %s

Action:修改列的定义类型或移除列的约束。

# YAS-02357

Message:datatype or length of a partitioned key cannot be changed

Action:分区列的数据类型和长度不允许被修改,请勿执行此操作。

# YAS-02358

Message:privilege of object owner cannot be changed

Action:对象owner拥有的对应权限不能被修改。

# YAS-02359

Message:column %s exceeds maxsize %u %s

Action:请参考错误原因重试。

# YAS-02360

Message:user version mismatch

Action:用户元数据版本发生变化,请等待后台推送自动恢复,稍后重试。

# YAS-02361

Message:new maxsize of tablespace set %lu is smaller than former %lu

Action:新设置的表空间集最大空间需要大于等于原有最大空间。

# YAS-02362

Message:new maxsize of tablespace set % PRIu64 exceeds the limit % PRIu64

Action:将表空间集的大小减到最大值以下。

# YAS-02363

Message:cannot create columnar index on expression with datatype %s

Action:列的数据类型不支持创建列式索引,修改列的数据类型,或不要在此列上创建列式索引。

# YAS-02364

Message:table is in setting logging async

Action:该表正在转换为日志模式,请稍后尝试。

# YAS-02365

Message:debug is running and cannot support other cmd type

Action:debug模式运行中不支持其他命令。

# YAS-02366

Message:debug current session has been killed or canceled

Action:调试器连接已断开,尝试重新连接。

# YAS-02367

Message:create nologging index is not allowed for logging table

Action:请勿在logging表上创建nologging索引。

# YAS-02368

Message:unsupported column type

Action:不支持设置此列类型的直方图统计信息。

# YAS-02369

Message:new size %lu is larger than tablespace set maxsize %lu

Action :调整表空间集的实际size必须小于它的最大size。

# YAS-02370

Message:parameter %s does not match initialization parameter, expect %s

Action :参数当前值与建库时指定的值不匹配,请修改后重试。

# YAS-02371

Message:kernel internal error

Action :内部错误,请联系我们的技术支持解决。

# YAS-02372

Message:sequence %s.CURRVAL is not yet defined in this session

Action :在获取对应sequence的currVal之前,请先获取对应sequence的nextVal。

# YAS-02373

Message:compressed tablespace cannot be created because datafile %s does not support compression

Action : 选择合适的文件系统或创建非压缩表空间。

# YAS-02374

Message:table is not partitioned by composite partition method

Action:请在组合分区表上操作。

# YAS-02375

Message:subpartition names specified are across multiple partitions

Action:请在同一分区下的子分区上操作。

# YAS-02376

Message:cannot drop all subpartitions of a partition

Action:禁止drop分区下的所有子分区。

# YAS-02377

Message:specified subpartition %s does not exist

Action:请输入正确的子分区名。

# YAS-02379

Message:only one of STORE IN or <partition-description> clause may be specified

Action:禁止同时指定store in和分区描述。

# YAS-02380

Message:datafile size exceeds maximum file size % PRIu64

Action:缩小数据文件大小后重试。

# YAS-02381

Message:diagnostic destination directory has been used by another process

Action :修改参数DIAGNOSTIC_DEST值与已启动的实例不相同后重启该实例。

# YAS-02382

Message:circular role grant detected

Action:请注意角色授予不能构成环,例如A拥有B角色,B同时拥有A角色。

# YAS-02383

Message:maximum number of tablespace sets is %u

Action:请不要创建超过最大数量的表空间集。

# YAS-02384

Message:only one partition can be added for hash partition table or missing partition bound for range/list partition table

Action:请确保哈希分区表每次只增加一个分区或为其他类型的分区指定分区边界。

# YAS-02385

Message:archived log %s not deleted, needed for %s

Action : 该归档可能会应用于某些场景,所以该文件不能被删除。

常见的归档删除失败的原因如下:

  • crash recovery:该归档可能用于宕机恢复,如果要删除该归档,请做一次checkpoint后重新尝试(执行SQL语句ALTER SYSTEM CHECKPOINT)。

  • backup:该归档可能用于备份集恢复,如果要删除该归档,请执行一次增量或全量备份,或修改配置参数ARCH_CLEAN_IGNORE_MODE。如果参数配置不忽略备份,某归档的NEXT_CHANGE#(查询V$ARCHIVED_LOG获取)小于最新备份集的CHECKPOINT_SCN(查询DBA_BACKUP_SET视图中获取),该归档才可以被删除,否则该归档不可以被删除。

  • standby:该归档可能用于备库,请检查备库同步是否异常,(查看V$ARCHIVE_DEST_STATUS获取主备同步信息。主备环境差异较大可能导致主备日志存在较大GAP,需要DBA介入修复GAP),等待该归档同步备库后再删除。或修改配置参数ARCH_CLEAN_IGNORE_MODE。如果参数配置不忽略备库,无论主库还是备库,只有HA集群的所有节点同步了该归档,该归档才可以删除,否则该归档不可以删除。

出现backup或standby的报错后,如果在未满足备份需要或备库同步的情况下仍想删除该归档,可以使用可选字段FORCE,该字段可能会导致备库不可用或使用备份集无法恢复到数据库最新状态,需要谨慎使用。

# YAS-02386

Message:expected to delete the archived logs until sequence %u, but failed when deleting sequence %u

Action : 仅删除了部分归档,其余的归档没有删除,删除失败的具体原因参考底层错误码。

# YAS-02387

Message:invalid partition description

Action : 请去除非法的分区描述子句,或确保操作的表为组合分区表。

# YAS-02388

Message:failed to synchronized tablespace

Action : 内部错误,请联系我们的技术支持解决。

# YAS-02389

Message: on-statement materialized join view error: %s

Action : 在创建物化视图时指定on statement与其他定义项冲突,请根据具体的描述修改创建SQL语句。

# YAS-02390

Message: ON COMMIT attribute is incompatible with other options

Action : 在创建物化视图时指定on commit与其定义项冲突,请根据物化视图创建规则修改创建SQL语句。

# YAS-02391

Message: interval must evaluate to a time in the future

Action : 指定物化视图下次刷新时间必须是未来时间,请重新修改SQL语句。

# YAS-02392

Message: cannot comment on the materialized view/access constraint

Action : 不允许对物化视图或AC添加注释,请勿对物化视图或AC添加注释。

# YAS-02393

Message: %s operation is not allowed on materialized views

Action : 不允许对物化视图进行指定操作。

# YAS-02394

Message: materialized views and/or their indices exist in the tablespace

Action : 删除表空间前先删除该表空间内的物化视图。

# YAS-02395

Message:invalid modification of columns, reason: %s

Action : 不允许这种需要改变底层存储的类型转换,请检测对应列是否是store as lob列。

# YAS-02396

Message:cannot add foreign key on columns stored as lob

Action : 不允许在store as lob列上添加外键。

# YAS-02397

Message:cannot specify this interval with existing high bounds

Action : 无法使用现有上限指定此间隔,请重新设定上界。

# YAS-02398

Message:partitioning method for LOCAL index is inconsistent with that of the underlying table

Action : 请检查表的分区类型,并重新创建本地索引。

# YAS-02399

Message: cannot rename a materialized view

Action : 不允许对物化视图重命名操作。

# YAS-02401

Message:converting to standby cannot be executed on standby database

Action:在主库上执行该操作。

# YAS-02402

Message:switchover cannot be executed on primary database

Action:在备库上执行该操作。

# YAS-02403

Message:failover cannot be executed on primary database

Action:在备库上执行该操作。

# YAS-02404

Message:replication receive timeout

Action:检查部署环境的网络质量。

# YAS-02405

Message:%s database is not open

Action:在对端数据库open时执行该操作,可以在对端数据库执行ALTER DATABASE OPEN 命令。

# YAS-02406

Message:database is not connected to %s

Action:检查对端数据库是否启动,配置参数ARCHIVE_DEST_n是否正确,网络状态是否正常。

# YAS-02407

Message:invalid format of parameter %s for ARCHIVE_DEST_%u

Action:检查配置格式是否正确,配置有效的参数值,配置参数的格式要求可以参考配置参数

# YAS-02408

Message:database is already connected to %s

Action:主库正常连接时不能执行failover操作,如有需要,可以执行switchover操作。

# YAS-02409

Message:expected message is (type %u, size %u), but received message is (type %u, size %u)

Action:检查网络通信设备。

# YAS-02410

Message:received message content is invalid

Action:检查网络通信设备。

# YAS-02411

Message:there is already a brain split between the archived logs

Action:该归档的生成节点已经与当前节点出现了日志不一致(发生了脑裂),这种情况下该归档是不能应用于当前节点的。请选取当前节点的归档日志或当前节点的正常的备库的归档日志进行注册。

# YAS-02413

Message:the specified standby database %s does not exist

Action:指定有效的备库名称或IP地址。

# YAS-02414

Message:failed to process request

Action:对端数据库执行本地请求时失败,查看底层错误码(对端数据库的报错会显示在本地数据库底层错误码里)或到对端数据库查看运行日志,分析失败原因。

# YAS-02415

Message:primary is already in another switchover progress

Action:switchover操作已经被执行,如有需要等待完成之后再重试。

# YAS-02416

Message:primary instance %u switchover failed

Action:查看底层错误或参阅告警日志和运行日志。

# YAS-02417

Message:database needs to be repaired

Action:备库出现异常,可以通过build database操作或备份集修复备库。可以参考备库异常修复

# YAS-02419

Message:replication mode is not enabled

Action:开启replication mode只需满足以下条件的中的一个即可。

  • 配置参数REPLICATION_ADDR不为空。
  • 配置参数ARCHIVE_DEST_n至少配置一个主备链路。

# YAS-02420

Message:once a crash recovery is executed, the primary cannot be converted to standby

Action:已经执行过了recover database,不能再手动降备。可以选择以主库角色open或重新执行restore操作,然后执行降备,再做recover database操作。具体操作步骤参考备库部署

# YAS-02421

Message:primary redo is not synchronized to the specified standbys

Action:备库异常,无法正常同步主库redo日志。该错误常见于以下场景:

  • 切换保护模式:先切换到最大可用模式,等日志同步后,再尝试切换到最大保护模式。

  • 打开数据库:数据库处于最大保护模式下,存在未同步的redo日志,数据库open可能会失败。这种情况,可以先修复同步备库,保证redo正常同步,然后再执行open数据操作。如果备库无法修复,可以将主库切换到最大可用模式后执行数据库open操作。

# YAS-02422

Message:standby upgrade failed

Action:备库升级失败,查看底层错误码明确具体原因。

# YAS-02423

Message:primary lsc static files is not synchronized to the specified standbys

Action:有关错误的详细信息,请参阅告警日志和运行日志。

# YAS-02424

Message:standby redo receiver is not ready

Action:备库的接收线程还没有准备好,无需操作,等待主库重连即可。

# YAS-02425

Message:parameter ARCHIVE_DEST_%u cannot be modified because %s

Action:根据错误提示进行修改或等待重新尝试。

# YAS-02426

Message:replication is not established

Action:主备没有建立连接,检查配置参数ARCHIVE_DEST_n查看主备配置。

# YAS-02427

Message:cannot %s, requires at least one synchronous standby

Action:新增同步备库的数量或选用正确的保护模式。

# YAS-02428

Message:failed to build database to %s

Action:查看底层错误码明确具体原因。

# YAS-02429

Message:failed to wait for standby %s to open

Action:查看底层错误码明确具体原因。

# YAS-02430

Message:election is not running

Action: 自动选主还未启动,等待启动完成。

# YAS-02431

Message:election error

Action:自动选主内部错误,无需处理。

# YAS-02432

Message:election disabled

Action:自动选主已被禁用,如有需要执行 "alter system ha_election_enabled=true" 开启自动选主。

# YAS-02433

Message:information of router has changed

Action:等待节点路由信息更新完成再去执行。

# YAS-02434

Message:failover cannot be executed on election

Action:开启自动选主的模式下不能手动执行failover,如有需要请执行switchover操作。

# YAS-02435

Message:find a new primary database when %s

Action:检查是否发生了自动选主,或手动failover选出了新的主库。

# YAS-02436

Message:failed to start election, reason: %s

Action:开启自动选主失败,请勿执行此操作。若要执行此操作,请确保数据库已经OPEN。

# YAS-02437

Message:election already started

Action:自选主已启动,无需多次启动。

# YAS-02438

Message:election does not support specifying standby name

Action:自选主不支持QUORUM_SYNC_STANDBYS和REQUIRED_SYNC_STANDBYS参数指定备库名。

# YAS-02450

Message:failed to wait for standby %u to replay

Action:检查备库状态是否正常,在主库上查询V$ARCHIVE_DEST_STATUS视图或备库上查询V$REPLICATION_STATUS视图查看备库状态。

# YAS-02451

Message:the standby database is normal or not repairable

Action:该备库是正常的无需修复,或该备库无法通过BUILD DATABASE REPAIR STANDBY操作修复,查询V$REPLICATION_STATUS视图查看STATUS和ERROR或查看底层错误码明确具体原因,如果备库状态是NEED REPAIR,那么只能通过BUILD DATABASE语句重建备库,具体操作步骤参考备库部署

# YAS-02452

Message:the standby database is not normal

Action:执行该操作的备库必须是一个正常的备库,在主库上查询V$ARCHIVE_DEST_STATUS视图或备库上查询V$REPLICATION_STATUS视图查看备库状态。

# YAS-02453

Message:%s of the database are different from the standby

Action:该数据库与目标数据库的文件不一致,无法修复备库,只能通过BUILD DATABASE语句重建备库,具体操作步骤参考备库部署

# YAS-02454

Message:the start time of standby process does not match, expected %s, actual %s

Action:备库的IP地址被占用或被重新拉起,检查备库是否正常,排查故障后,请重新执行该操作。

# YAS-02455

Message:failed to incremental build standby, reason: %s

Action:该错误常见于使用备库修复其他备库的GAP场景中,选取的备库不是同步备库,该备库的日志量更少,不能用于修复其他备库。可以查询V$ARCHIVE_DEST_STATUS视图的SYNCHRONIZED字段获取同步备库,如果该字段显示为YES,则该备库是同步备库,该备库可以用于修复其他备库的GAP。如果没有同步备库,只能使用主库去修复备库的GAP。

# YAS-02456

Message:the target database is not %s

Action:该操作的对象不对,查看该操作的使用说明。

# YAS-02457

Message:waiting for standby restart timeout

Action:BUILD DATABASE INCREMENTAL STANDBY 或 BUILD DATABASE REPAIR STANDBY操作会重启备库数据库,备库数据库启动失败的原因请查看运行日志。

# YAS-02458

Message:the %s of primary is different from standby

Action:两个数据库的元数据信息不一致,有可能是数据库不同源或是数据库的二进制版本不一致,更新二进制版本或检查集群配置是否出现不同集群混合连接。

# YAS-02459

Message:failed to repair standby, reason: %s

Action:该错误常出现的场景有:

  • 没有找到主备日志分叉点,无法进行脑裂修复,常见分叉点在归档日志中,主库或备库清理了该归档(排查是否归档清理配置不合理导致被自动清理),或归档文件被损坏。

该备库只能通过BUILD DATABASE语句重建备库,具体操作步骤参考备库部署

# YAS-02460

Message:there are too many %s different from the source database

Action:该错误场景的场景有:

  • 需要修复的数据页面太多,效率低,不建议采用该操作修复备库。
  • 需要修复的slice文件太多,效率低,不建议采用该操作修复备库。

该备库只能通过BUILD DATABASE语句重建备库,具体操作步骤参考备库部署

# YAS-02461

Message:failed to analyze difference block

Action:查看底层错误码明确具体原因。

# YAS-02462

Message:heartbeat link is busy

Action:查看底层错误码明确具体原因。

# YAS-02463

Message:standby is switching redo file and will try to reconnect later

Action:连接失败,备库正在切换日志文件,请等待。

# YAS-02464

Message:cannot drop more than one logfile at a time

Action:请逐个删除日志文件。

# YAS-02465

Message:cannot change protection mode, reason: %s

Action:此操作不允许。

# YAS-02466

Message:failed to confirm the actual database role

Action:请检查yasom和该主库对应的yasagent是否在线,并且yasom开启自动选主。

# YAS-02467

Message:the instance %u isn't master, master instance id %u

Action:选择合适的实例执行该操作。

# YAS-02468

Message:failed to mount standby instance

Action:查看底层错误码。

# YAS-02469

Message:in cluster mode, the value of VALID_FOR in ARCHIVE_DEST_%u cannot be STANDBY_ROLE or ALL_ROLES

Action:集群下,必须指定VAILD_FOR为PRIMARY_ROLE。

# YAS-02470

Message:no empty archive dest

Action:找不到空的archive dest,该节点HA链接数已达到上限。

# YAS-02471

Message:%s cannot be executed on primary database

Action:该操作不能在主库上执行,需要在备库上执行。

# YAS-02472

Message:redo apply has been canceled

Action:其他session执行了暂停回放的操作,回放操作被提前终止了。

# YAS-02473

Message:managed standby recovery is not active

Action:当前没有回放操作,不需要执行当前取消回放操作。可以查询V$RECOVERY_STATUS视图获取当前回放的运行状态。

# YAS-02474

Message:an incompatible recovery is active

Action:当前已经存在回放操作,无需再启动回放操作。可以查询V$RECOVERY_STATUS视图获取当前回放的运行状态。如果状态显示PAUSED,请重新执行该操作。

# YAS-02475

Message:the standby replay thread has crashed

Action:当前回放线程出现了故障,回放无法进行,查看运行日志或告警日志明确问题原因。修复故障并重启数据库后,重新执行该操作。

# YAS-02476

Message:the database has not enabled archive log registration

Action:归档注册仅在以下场景使用。

  • 沙箱备库,即备库数据库并且配置参数SANDBOX_STANDBY为TRUE时才能使用。
  • 与RESTORE操作结合使用,RESTORE操作之后注册归档,后续执行RECOVER时可以回放这些归档,让数据库恢复到期望的状态。

# YAS-02477

Message:the sandbox standby cannot be connected

Action:备库开启SANDBOX_STANDBY时不允许连接备库。

# YAS-02478

Message:recovery requesting unknown archived log for thread %u with sequence %u and starting SCN of % PRIu64

Action:指定的时间点或SCN过大,回放完毕后也达不到指定的时间点。如果有可用的归档日志副本,可以注册归档,重新执行restore操作。如果没有多余的归档,当前时间点是唯一的选择,继续执行resetlogs操作。

# YAS-02479

Message:the recovery of the standby database cannot be cancelled during %s

Action:switchover 或 failover 期间不允许暂停回放,等待升主操作完成。

# YAS-02480

Message:the ip address of REPLICATION_ADDR cannot be set to 0.0.0.0

Action:配置参数REPLICATION_ADDR不允许配置为0.0.0.0的格式,请重新配置合理的IP地址。

# YAS-02481

Message:the database cannot recover to the target %s, and the current %s of the database is %s

Action:指定的时间点或SCN过大,回放完毕后也达不到指定的时间点。如果有可用的归档日志副本,可以注册归档,重新执行restore操作。如果没有多余的归档,当前时间点是唯一的选择,继续执行resetlogs操作。

# YAS-02482

Message:cannot execute %s when switchover

Action:switchover过程中不能执行该操作,等待switchover完成后再执行该操作(查询V$DATABASE获取switchover的进度)。

# YAS-02483

Message:sync coast file module error: %s

Action:LSC表本地冷数据同步失败,请根据错误信息处理。

# YAS-02484

Message:the operation is not allowed in yasom election mode

Action:开启yasom仲裁选主后,涉及主备角色、保护模式切换的SQL语句将被拦截,只允许yasom对数据库的主备角色和保护模式进行自动管理。如果需要手动管理主备角色和保护模式,请关闭仲裁。

# YAS-02485

Message:the last position %s is smaller than applied position %s

Action:指定的position不能比已经应用的position小。

# YAS-02486

Message:the standby replay synchronization timeout

Action:等待备库与主库同步超时,检查主备网络是否正常,备库回放是否落后较大。如果备库回放慢,请检查备库的回放并行度,以及硬件性能是否与主库差距大。

# YAS-02487

Message:failed to synchronize redo to the specified standbys

Action:在设置最大保护模式时,因为部分同步备库出现断连或其他异常,导致主库redo无法同步到这些备库,设置最大保护模式失败。检查主备网络是否正常,备库状态是否异常。

# YAS-02501

Message:the %s is already in progress

Action:等待当前备份,恢复或表空间迁移流程结束,或使用kill session杀死备份线程。

# YAS-02502

Message:cannot perform file operations when database is %s

Action:等待备份或表空间迁移结束后,再执行文件类的操作。

# YAS-02503

Message:cannot backup database when %s

Action:备份前确保事务已经结束,并且数据库没有执行文件类的操作。

# YAS-02504

Message:database restore is not yet complete, cannot %s

Action:清理残留文件,重新执行RESTORE DATABASE或BUILD DATABASE。

# YAS-02505

Message:backupset with tag %s already exists

Action:设置一个唯一的备份集TAG。如需清理冲突TAG可查阅yasrman使用指导 > 删除备份集请按需谨慎操作

# YAS-02506

Message:maximum number of backup files is %u

Action:执行全量checkpoint,并清理归档文件,减少备份集归档文件数量。

# YAS-02507

Message:base incremental backup set does not exist

Action:先执行LEVEL 0的增量备份,创建增量备份基线。

# YAS-02508

Message:maximum number of incremental backup sets is %u

Action:执行LEVEL 0的增量备份,更新增量备份基线。

# YAS-02509

Message:database must be restored from backup created before %s

Action:检查UNTIL TIME子句或选择足够旧的备份集。

# YAS-02510

Message:database must be restored from backup older than SCN % PRIu64

Action:检查UNTIL SCN子句或选择足够旧的备份集。

# YAS-02511

Message:%s value exceeds maximum length of %u characters

Action:检查备份集路径长度。

# YAS-02512

Message:standby backup has been cancelled

Action:错误的详细信息请查看主库运行日志。

# YAS-02513

Message:standby must recover to LFN % PRIu64 before incremental backup

Action:等待备库回放到指定的LFN之后,再执行增量备份。

# YAS-02514

Message:the backup set version %u does not match the required version of the database %u

Action:检查备份集版本,或数据库二进制版本。

# YAS-02515

Message:resetlogs gap is found in the backup archive files

Action:进行一次全量checkpoint,再执行备份。

# YAS-02516

Message:FORCE option only supports full type backup

Action:检查备份类型。

# YAS-02517

Message:lock cluster redo timeout

Action:分布式备份需要对所有节点的redo加锁,超时的原因可能是redo磁盘太慢,或网络延迟太大。请避开业务高峰期并重试。

# YAS-02518

Message:failed to send data during remote backup

Action:远程备份发送数据失败,请检查备份进程状态和网络状况。

# YAS-02519

Message:backupset with tag %s does not exist

Action:指定的备份集TAG不存在,请检查TAG名是否正确。

# YAS-02520

Message:current yasrman version is lower than expected

Action:当前备份工具yasrman版本过低。

# YAS-02521

Message:yasrman remote %s error, unexpect message type

Action:内部错误,请联系我们的技术支持解决。

# YAS-02522

Message:backup space fail, reason is %s

Action:表空间迁移失败,请根据错误原因处理。

# YAS-02523

Message:received message content is invalid, request %d but receive %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-02524

Message:the backup set %s does not an independent incremental backup set

Action:独立增量备份指定的基线不属于独立增量备份,请通过DBA_BACKUP_SET视图确认该基线属性。

# YAS-02525

Message:failed to execute backup statements, reason: %s

Action:独立基线的增量备份语句解析失败,请检查语句是否合法。

# YAS-02526

Message:only incremental backups of LEVEL 0 can be specified as INDEPEND

Action:只有LEVEL 0的增量备份才可以指定为INDEPEND。

# YAS-02527

Message:the specified backup set does not match the target database ID

Action:恢复的目标数据库和生成备份集的数据库ID不符,请使用同一数据库产生的数据备份集执行增量恢复。

# YAS-02528

Message:the specified baseline does not an incremental backup set

Action:指定的基线备份集不是增量备份,请指定符合条件的备份集tag作为基线。

# YAS-02529

Message:after restoring the database, a new baseline backup is required

Action:数据库执行过restore操作之后,需要重做所有独立增量备份集的基线。

# YAS-02530

Message:the specified incremental backup set does not contiguous with the current database baseline

Action:指定的备份集与当前已恢复生成的数据库不连续,请使用同一数据库连续的增量备份集执行恢复流程。

# YAS-02531

Message:the current database does not in restore state

Action:当前数据库状态不符合独立备份集恢复条件,请确认是否执行过RECOVER或重新建库操作,否则需要重新恢复数据库。

# YAS-02532

Message:the backup set and the current database does not belong to the same incremental backup chain

Action:当前数据库与生成备份集的数据库restoretime不一致,请确认源库是否执行过RESTORE操作,否则需要重做基线。

# YAS-02533

Message:last indenpend incremental restore failed

Action:上次的独立增量恢复失败,请检查$YASDB_DATA/dbfiles目录下是否残留CTRL1.BAK文件,需手动将此类文件重命名为CTRL1,与配置文件指定的ctrl文件同名,然后重新执行RESTORE操作。

# YAS-02534

Message:only incremental backup sets can be continuously restored

Action:只有增量备份集才可应用于连续restore,请检查该备份集是否可用。

# YAS-02535

Message:database incremental restore does not completed

Action:上次增量RESTORE可能失败,导致数据库没有完整恢复。请检查RESTORE失败原因,如果是磁盘空间不足等环境原因,可以修复环境后,不清理数据库文件,重新执行增量RESTORE命令。或清理数据库残留文件后,使用其他备份集恢复数据库。

# YAS-02536

Message:crash recovery has been completed and cannot be executed again

Action:已经完成了crash recovery,不可以重复执行。如果有需要,可以重启至mount阶段继续执行recover操作或重新执行restore操作后再执行recover操作。

# YAS-02537

Message:the redo file of instance %u in the backup set cannot be restored, file name %s, sequence# %u, reset id %u

Action:具体原因看底层错误码。该错误常见于restore操作,出现该错误有以下几个必要条件:

  • 备份集中有备份redo文件,常见于共享集群备份、备库备份等,这类备份会备份current状态的redo文件。

  • 环境中已经存在一个同名的redo文件,且备份集中redo文件比该redo文件旧。

  • 备份集中的redo文件在该环境中没有找到对应的归档文件,或该归档文件已损坏。

满足以上三个条件时,备份集中的redo文件无法覆盖环境上已存在的同名文件,导致恢复失败。处理该异常的方案有:

  • 如果存在该归档的副本,可以拷贝到当前环境的归档目录下。

  • 如果没有该归档的副本,那么则无法恢复到最新redo文件的状态,需要DBA介入处理该redo文件,避免导致备份集恢复失败。

# YAS-02538

Message:there is a redo file with the same name that cannot be reused

Action:该文件不能被恢复备份集时复用,导致备份集的redo文件不能被恢复,具体的修复策略请查看上层错误码,通常是YAS-02537。

# YAS-02539

Message:the specified archive range is illegal, reason: %s

Action:指定的归档文件范围错误,请指定合法的边界,左边界小于右边界。

# YAS-02540

Message:no backup of archived log for thread %u with sequence %u found to restore

Action:指定的归档备份集中,无法获取对应节点和sequence的归档文件备份,请指定符合条件的备份集。

# YAS-02541

Message:specification does not match any archived log in the repository

Action:指定的归档范围没有符合条件的归档日志文件,请检查指定的归档范围是否合法。

# YAS-02542

Message:illegal statement, reason: %s

Action:指定的归档备份或恢复语句非法,请按照提示使用正确的语句。

# YAS-02543

Message:the target archive file is discontinuous, start sequence: %u

Action:当前数据库中的归档文件不连续,请检查当前数据已存在归档文件,或确认数据库使用过程中是否有开关归档操作。

# YAS-02544

Message:instance: %u, specification archive file sequence: %u does not exist in the repository

Action:指定的sequence对应的归档文件不存在于当前数据库中,请检查使用语句是否合法。

# YAS-02545

Message:database must be restored and not open before restoring archive log

Action:必须在已执行完数据库恢复但暂未执行RECOVER期间执行归档恢复。

# YAS-02546

Message:too many archive file need restore

Action:单次需要恢复的归档文件数量太大,请选择合适的归档日志恢复范围,切分之后执行多次恢复。

# YAS-02547

Message:there is a gap in the restored archived logs on instance %u, reason: %s

Action:指定恢复的归档日志范围内存在空缺,必须保证恢复之后的归档日志连续,请检查需要恢复的归档ASN的连续性。

# YAS-02548

Message:the specified backup set type does not match the target

Action:指定备份集类型和需要恢复的目标类型不匹配,请检查执行命令和备份集类型是否匹配。

# YAS-02549

Message:no valid database backup set was found

Action:执行PITR时没有找到有效的数据库备份集,请检查目前时间点之前是否执行过数据库备份,或检查DBID是否设置正确。

# YAS-02550

Message:the backup command does not match the current deployment mode

Action:请使用符合当前部署形态的备份命令。

# YAS-02551

Message:the tablespace %s was created by migration

Action:当前节点存在迁移创建的表空间内容,请重新创建增量备份基线LEVEL 0。

# YAS-02552

Message:invalid backupset %s, reason: %s

Action:指定的备份集不可用,请检查并指定正确的备份集文件。

# YAS-02570

Message:yasrman has been started by another process

Action:yasrman备份进程已启动,请等待当前备份进程结束或杀死该备份进程。

# YAS-02571

Message:cluster %s statement must be executed on cn node

Action:分布式备份必须连接CN节点执行。

# YAS-02572

Message:execute statement %s on cluster, but return null rows

Action:在分布式集群上执行查询节点SQL语句,但是结果为空,需检查集群运行状态。

# YAS-02573

Message:cluster node %s %d-%d running_state is not normal, current is %s

Action:分布式集群节点状态异常,需保证状态为normal。

# YAS-02574

Message:failed to %s, XBSA error code %u

Action:XBSA接口调用失败,请根据XBSA的错误码进行处理。

# YAS-02575

Message:failed to connect to yasrman, reason: %s

Action:远程备份或流式备份连接失败,请根据错误原因处理。

# YAS-02576

Message:backup set verification failed, reason: %s

Action:备份集校验失败,备份集文件已损坏。

# YAS-02577

Message:yasrman abnormal exit, reason: %s

Action:yasrman工具异常退出,具体原因参考报错相信信息。

# YAS-02600

Message:the topology status of cluster nodes has changed

Action:备份或恢复过程中集群拓扑状态发生变化,请检查集群其他节点运行是否正常。

# YAS-02601

Message:instance %u redo lock has been released due to timeout

Action:内部错误,共享集群当前生成的备份集可能存在一致性问题,需重新执行备份命令生成备份集。

# YAS-02602

Message:backup set and recovery database configuration does not match

Action:备份集与恢复目标数据库配置不符,请检查备份集规格和数据库配置规格。

# YAS-02603

Message:cluster instance %u failed to switch log during backup

Action:内部错误,请联系我们的技术支持解决。

# YAS-02604

Message:cluster instance %u failed to load point during backup

Action:内部错误,请联系我们的技术支持解决。

# YAS-02605

Message:the current instance is not master role

Action:在执行恢复操作前,请检查当前实例的角色。

# YAS-02606

Message:cluster instance %u failed to lock redo during backup

Action:内部错误,请联系我们的技术支持解决。

# YAS-02607

Message:instance %u switch redo file timeout

Action:内部错误,请联系我们的技术支持解决。

# YAS-02651

Message:cannot create rtree index on temporary table

Action : 请检查表的类型不为临时表,并重新创建rtree索引。

# YAS-02652

Message: subpartition descriptions cannot be specified during the SPLIT of a partition of a *-list or *-range partitioned table

Action : 不允许在split -list或-range时指定子分区的定义。

# YAS-02653

Message: value does not exist in partition %s

Action : 请检查分区边界值存在于要split的分区中。

# YAS-02654

Message: resulting partition name conflicts with that of an existing partition

Action : 请检查操作后的分区名与已有的分区名是否冲突。

# YAS-02655

Message: resulting list partition must contain at least one value

Action : 请检查操作后的list分区至少包含一个边界值

# YAS-02656

Message: could not split hash partition

Action : 不能split哈希分区,建议使用add partition。

# YAS-02657

Message: could not split at on list partition

Action : 请使用split values来split list分区。

# YAS-02658

Message: could not split values on range partition

Action : 请使用split at来split range分区。

# YAS-02659

Message:only one subpartition can be added for *-hash composite partition table or missing subpartition bound for *-range/list composite partition table

Action:请确保*-哈希组合分区表每次只增加一个子分区或为其他类型的子分区指定分区边界。

# YAS-02660

Message:too many slices in distributed transaction

Action:请减少在分布式事务中生成slice的数量。

# YAS-02661

Message:space is read only

Action : 表空间当前为只读状态,若表空间迁移已成功,请将表空间修改为读写状态。

# YAS-02662

Message:import datafile fail, reason is %s

Action : 迁移文件导入失败,请根据错误原因处理。

# YAS-02663

Message:reclaim segment not exists

Action : 内部错误,请联系我们的技术支持解决。

# YAS-02664

Message:untransportable tablespace, %s %s is not contained in tablespace set

Action : 表空间迁移自包含检测失败,请根据具体原因处理。

# YAS-02665

Message:cannot create object, bulk load or alter slice while moving space

Action : 表空间迁移期间不可create object, 进行bulk load或alter slice, 等待表空间迁移完成再进行操作。

# YAS-02666

Message:invalid migrate path, %s

Action : 不合法的表空间迁移目的路径,请查看具体路径规格。

# YAS-02667

Message:no insert/update/delete on table with constraint disabled and validated

Action : 请删除带有禁用和验证约束条件。

# YAS-02668

Message:cannot enable not null constraint with novalidate when contains null values

Action : 请勿以忽略检查的方式启用非空约束。

# YAS-02669

Message:cannot explicitly refresh a NEVER REFRESH materialized view

Action:不允许刷新被设置为NEVER REFRESH的物化视图,若有需要可以使用ALTER MATERIALIZED VIEW语句修改设置。

# YAS-02670

Message:error in materialized view refresh path

Action:物化视图刷新的过程中有错误,请根据具体的错误重试或修复表结构。

# YAS-02671

Message:outline %s is busy, try later

Action : outline 正在被其他session修改,稍后再试。

# YAS-02672

Message:tablespace %s is broken

Action : 不允许操作已损坏的表空间。

# YAS-02673

Message:space is read only while moving

Action : 表空间当前为只读状态,若表空间迁移已成功,请将表空间修改为读写状态。

# YAS-02674

Message:space ddl is forbidden, because %s

Action : 此时不允许执行表空间DDL,请稍后重试。

# YAS-02675

Message:extend datafile is forbidden, because %s

Action : 此时不允许扩展数据文件,请稍后重试。

# YAS-02676

Message: this physical attribute may not be specified for a table subpartition

Action : 请去掉此选项。子分区仅允许指定tablespace和segment creation选项。

# YAS-02677

Message: virtual partition is not operational, distribution information is incorrect

Action : 虚拟分区不可以操作,请检查分片数据是否正确。

# YAS-02678

Message: an unsupported partitioning method was specified in this context

Action : 组合分区中子分区不能为interval分区。请去掉interval选项。

# YAS-02679

Message: load global object id timeout, wait time %u milliseconds

Action :申请全局对象ID超时,请检查节点状态及网络连接是否正常。

# YAS-02680

Message:failed to register the archive logs because archive log %s does not match archive log %s

Action : 注册的归档与现有数据库的归档不连续,无法正常回放,注册正确的归档文件。

# YAS-02681

Message:archive log with sequence number %u has been registered

Action : 该归档的序列号已经被注册,如果有需要,可以使用OR REPLACE的字段,覆盖原有文件。

# YAS-02682

Message:failed to register archive log %s, reason: %s

Action : 注册归档失败。常见的原因有:

  • 归档的reset id较小。

    数据库的reset id是递增的,不能注册reset id比当前数据库小的归档文件(当前数据库的reset id可查看V$DATABASE)。

  • 归档文件与数据库不匹配。

    若归档文件的生成节点已与当前节点出现了日志不一致(发生了脑裂),则该归档不能应用于当前节点,请选取当前数据库的归档副本或脑裂之前的归档备份集进行注册。如需restore或手动注册新主库的归档,请确保该数据库是新主库,或由新主库的备份集恢复。

# YAS-02683

Message:tablespace %s is busy, try again later

Action : 表空间里的对象正在使用中,请稍后重试。

# YAS-02684

Message: cannot create a temporary table with EXTERNAL organization

Action : 外部表不能是临时表,请检查建表语句。

# YAS-02685

Message: operation not supported on external organized table

Action : 不能在外部表上执行此操作。

# YAS-02686

Message: column type not supported on external organized table

Action :存在外部表不支持的数据类型,请修改。

# YAS-02687

Message:reject limit reached

Action : 外部表数据错误,请参考错误日志。

# YAS-02688

Message:file name cannot contain a path specification: %s

Action : 文件名包含了目录分隔符,请修改。

# YAS-02689

Message:no file name specified in LOCATION clause

Action : location中没有文件名,请修改。

# YAS-02690

Message:no directory object specified for location %u in LOCATION clause

Action : 当前location没有相关的目录,请修改。

# YAS-02691

Message:length of file name exceeds limit %u

Action : 文件路径超过了限制,请修改。

# YAS-02692

Message:file %s in %s not found

Action : 文件在所属目录中不存在,请修改。

# YAS-02693

Message:cannot rename built-in tablespace

Action : 此操作不允许。

# YAS-02694

Message:cannot create savepoint if %s

Action:在报错所描述的情况下不允许创建savepoint。

# YAS-02695

Message: unable to drop minimal supplemental logging

Action : 最小附加日志当且仅当没有其他数据库级附加日志启用时才可以删除。查看V$DATABASE的SUPPLEMENTAL_LOG_DATA_PK,SUPPLEMENTAL_LOG_DATA_ALL列,删除其他数据库级附加日志后,重试。

# YAS-02696

Message: multiple specification of a supplemental logging attribute

Action : 去掉重复的字段。

# YAS-02697

Message:failed to parse access parameters

Action:根据错误信息修改外部表的访问参数。

# YAS-02698

Message:no directory object specified for %s file

Action:给日志文件指定目录。

# YAS-02699

Message: create index on access constraint is not allowed

Action : 不允许在AC上创建索引。

# YAS-02700

Message: failed to remove all objects in the tablespace specified

Action : 删除表空间内的对象后再删除表空间。

# YAS-02701

Message:some archive logs are not successfully deleted

Action:仅删除了部分归档,其余的归档没有删除,删除失败的具体原因参考底层错误码。

# YAS-02702

Message:%s

Action:收集全库/特定用户统计信息产生的报错信息,按照报错信息解决对应问题后重试。

# YAS-02703

Message:operation would exceed maximum size allowed for a LOB value, which is (4 gigabytes - 1) * DB_BLOCK_SIZE

Action:减少数据,使得插入后LOB的数据大小不超过(4G - 1) * DB_BLOCK_SIZE。

# YAS-02704

Message:table must be empty to modify indexed column datatype

Action:修改表中索引列的数据类型时,必须先将表清空。

# YAS-02705

Message:cannot set the ON COMMIT refresh attribute for the materialized view

Action:尝试修改物化视图的刷新模式。

# YAS-02706

Message:Local temporary tablespace contains YFS and local file system at the same time is not allowed

Action:不允许本地临时表空间同时包含YFS和本地文件系统路径。

# YAS-02707

Message:The error in instance %u is that %s

Action:在创建、更改、删除本地临时表空间时,实例由于报错所描述的情况无法继续进行。

# YAS-02708

Message:Local temporary tablespaces can only be used on clusters

Action:本地临时表空间只能在集群上使用。

# YAS-02709

Message:cannot open lob in readwrite mode without transaction

Action:无法在没有事务处理的情况下以读写模式打开LOB。

# YAS-02710

Message:cannot open lob in readwrite mode spanning transaction

Action:不能跨越事务处理以读写模式打开LOB。

# YAS-02711

Message:all open lobs should be closed when commit transaction

Action:在提交事务时不能存在未关闭的LOB,需要在提交事务前关闭所有打开的LOB。

# YAS-02712

Message:cannot write lob spanning transaction

Action:不能跨越事务处理写LOB。

# YAS-02713

Message:errors during revalidation of %s.%s

Action:刷新视图元数据时失败,失败原因参考底层错误码。

# YAS-02714

Message:the archive log file with ASN %u for instance %u has been deleted

Action:目标归档文件已经被删除,请检查归档文件自动清理参数配置。

# YAS-02715

Message:XA: duplicate transaction identifier

Action:请检查GTID是否重复。

# YAS-02716

Message:XA: invalid flag

Action:请使用正确的flag。

# YAS-02717

Message:XA: no current xa transaction

Action:确保本连接上XA事务存在。

# YAS-02718

Message:XA: transaction with specified identifier does not exist

Action:确保指定GTID存在。

# YAS-02719

Message:maximum number of local space tempfile count is %u

Action:请不要创建超过最大数量的本地临时文件,本地临时表空间的最大文件个数为表空间最大文件数除以实例个数并向下取整。

# YAS-02720

Message: operation not supported on materialized view

Action : 不能在物化视图上执行此操作。

# YAS-02721

Message: operation not supported on access constraint on HEAP/TAC

Action : 不能在HEAP/TAC表的AC上执行此操作。

# YAS-02722

Message: Attempt to generate name from parent name string and template name string failed as the combine named would have been longer than allowed

Action : 请缩短一级分区或模板中二级分区的名字长度。

# YAS-02723

Message: the database shutdown cannot be performed normally and database needs to be aborted. reason: %s

Action : 该报错表示数据库shutdown过程中遇到异常,无法一致性关闭数据库,也无法回退到开启状态,数据库进程将强制退出。通常有以下几种情况:

  • 最大保护模式下,由于备库异常,主库事务提交或checkpoint阻塞,shutdown无法正常执行。
  • 备库回放因为资源异常导致回放阻塞,shutdown无法正常执行。

# YAS-02724

Message: transaction comment length exceeds limit 256

Action : 缩减事务的COMMENT长度。

# YAS-02725

Message: cannot drop datafile of undo tablespace

Action : 此操作不允许。

# YAS-02726

Message: referenced table does not have a primary key

Action : 请检查主表是否存在主键约束。

# YAS-02727

Message: exceeded simultaneous SESSIONS_PER_USER limit

Action : 请检查用户对应profile配置sessions_per_user,确保用户会话连接数不超过最大可用并行连接数。

# YAS-02728

Message: temporary tablespace %s is empty

Action : 当前临时表空间为空,请向该临时表空间添加文件。

# YAS-02729

Message: missing or invalid encryption algorithm

Action : 请指定正确的加密算法。

# YAS-02730

Message: argument '%s' is invalid, reason: %s

Action : 请根据提示修改YStream入参格式。

# YAS-02731

Message: YStream server status is invalid, current status: %s

Action : 请确保YStream server处于预期的状态。

# YAS-02732

Message: YStream server %s is not found

Action : 请输入正确的名称,或者创建YStream server。

# YAS-02733

Message: YStream server %s already exists

Action : 请使用其他名称。

# YAS-02734

Message: too many YStream %s, limit %u

Action : 请不要超过给定的上限。

# YAS-02735

Message: cannot shrink the stream pool size while YStream servers are running

Action : 请在所有YStream server停止运行的情况下,进行stream pool的缩小。

# YAS-02736

Message: failed to %s, reason: %s

Action : YStream校验失败,请根据错误信息检查配置。

# YAS-02737

Message: COMMIT is not allowed in a subordinate session

Action : 在有XA事务绑定的连接内,不允许使用单机事务语句提交。

# YAS-02738

Message: instance %u cannot set protection mode

Action : 设置保护模式失败,查看底层错误明确失败原因。

# YAS-02739

Message: deduplicate transaction is too long

Action : 执行去重操作的事务过长,请减小去重事务的批量大小。

# YAS-02740

Message: Unable to %s table %s: does not appear to be a statistics table

Action : 请将stattab参数指定为DBMS_STATS.CREATE_STAT_TABLE建立的表名。

# YAS-02741

Message: cannot modify an object in parallel after modifying it

Action : 关闭parallel dml,重新执行业务,或者将语句分解为两个事务,将并行修改前的操作提交后再进行并行修改。

# YAS-02742

Message: cannot read/modify an object after modifying it in parallel

Action : 关闭parallel dml,重新执行业务,或者将语句分解为两个事务,将并行修改提交后再进行读写操作。

# YAS-02743

Message: cannot convert parallel transaction to xa

Action : 不支持将并行事务转换成XA事务,回滚当前事务,关闭parallel dml,重新执行业务。

# YAS-02744

Message: duplicated quota/floor clause for a tablespace

Action : 重复的quota或者floor子句,请不要对同一个表空间设置多个quota/floor值。

# YAS-02745

Message: tablespace quota error, reason: %s

Action : 请根据具体的错误原因处理该失败。

# YAS-02746

Message: cannot grant %s to a role

Action : 不能对角色授予该权限。

# YAS-02747

Message: violate the floor constraint on tablespace: %s

Action : 该操作会导致违反对应表空间的下限约束,请根据表空间具体使用情况配置用户下限预留空间。

# YAS-02748

Message: exceed the quota limit, tablespace: %s, user: %s

Action : 用户使用空间将超过在该表空间上的配额,分配失败,请调整用户表空间配额。

# YAS-02749

Message: violate the floor constraint on tablespace: %s, user: %s

Action : 用户在该表空间上的空间分配将违反该表空间为其他用户的下限保留约束,请检查表空间的下限配置情况。

# YAS-02750

Message: profileId %u is already used or invalid

Action : 内部错误,请联系我们的技术支持解决。

# YAS-02751

Message: cannot enable database supplemental logging when YStream server created

Action : 不能在已创建YStream服务的情况下,使能库级附加日志。建议在创建YStream服务前使能库级附加日志,或者对选定的表开启表级附加日志。

# YAS-02752

Message: cannot enable database supplemental logging during logical log parsing

Action : 在YStream解析逻辑日志的过程中遇到了使能库级附加日志的操作,无法继续解析后续日志。请确保YStream起始点之后的日志中,没有使能库级附加日志的操作。如果有,请重建YStream。

# YAS-02753

Message:cannot drop the default tablespace set of user

Action:执行上述操作前,重新设置用户的默认表空间集。

# YAS-02754

Message: import invalid histogram statistics, table name: %s, column name: %s

Action : 请重新导出该列的统计信息,然后导入。

# YAS-02755

Message: view WITH CHECK OPTION where-clause violation

Action : 操作的数据不满足视图的CHECK OPTION条件。

# YAS-02756

Message: %s privilege not allowed for tables

Action : 请在表上授权正确的对象级权限。

# YAS-02757

Message: only EXECUTE, UNDER privileges are valid for types

Action : 只能向自定义类型相关对象授予EXECUTE或UNDER对象级权限,请重试。

# YAS-02758

Message: cannot grant UNDER privilege on this object

Action : 不能对NOT FINAL的OBJECT类型授权UNDER权限,请重试。

# YAS-02759

Message: cannot revoke execute on a type with table dependents

Action : 请删除回收用户下使用自定义类型的表。

# YAS-02760

Message: Asynchronous operation already outstanding

Action : 已存在明显的异步操作,请排查XA接口使用方式是否符合XA协议规范。

# YAS-02761

Message: XID is not valid

Action : XID 无效,请提供有效的XID。

# YAS-02762

Message: Invalid arguments were given

Action : 提供了无效的参数,请提供有效的参数。

# YAS-02763

Message: Routine invoked in an improper context

Action : 在不合适的上下文中调用了例程,请在合适的上下文中调用例程。

# YAS-02764

Message: Resource manager unavailable

Action : 资源管理器不可用,请稍后重试。

# YAS-02765

Message: XID already exists

Action : XID 已存在,请先结束已有XA事务或者更换XID后重试。

# YAS-02766

Message: Resource manager doing work outside global transaction

Action : 资源管理器在全局事务之外工作,请排查XA接口使用方式是否符合XA协议规范。

# YAS-02767

Message: can not allocate %lu bytes from columnar vm swap

Action : 请适当调大COLUMNAR_VM_SWAP_SIZE配置后重试。

# YAS-03001

Message:output column of access constraint is missing

Action:根据CREATE ACCESS CONSTRAINT语法图添加y值列。

# YAS-03002

Message:access constraint can only be created on table

Action:只允许AC建在LSC表上。

# YAS-03003

Message:such column list already has access constraint

Action:指定不同的列、聚集函数或过滤条件并重试。

# YAS-03004

Message:maximum number of access constraint columns is %u

Action:减少AC中的列数。

# YAS-03005

Message:failed to ac build, ac id is % PRIu64

Action:强制转换失败,请联系我们的技术支持解决。

# YAS-03006

Message:cannot create access constraint on expression with %s datatype

Action:AC目前不支持该数据类型。

# YAS-03009

Message:table is referenced by some access constraints

Action:需要先drop ac才能drop表。

# YAS-03010

Message:cannot create access constraint from LSC table in a tablespace without data bucket

Action:为表空间创建DATA BUCKET后重试。

# YAS-03013

Message:cannot alter columns related to access constraint

Action:先删除AC再修改列属性。

# YAS-03014

Message:build ac is disabled

Action:使用ALTER TABLE语句开启build ac开关,参考ALTER TABLE文档中的enable_xfmr_clause。

# YAS-03015

Message:table definition changed during the creation of access constraint

Action:创建AC时表定义发生变更,请重新尝试。

# YAS-03201

Message:dataset is overflow, capacity %u, rows %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-03202

Message:column %u is read-only

Action:内部错误,请联系我们的技术支持解决。

# YAS-03203

Message:column %u is not found in dataset

Action:内部错误,请联系我们的技术支持解决。

# YAS-03204

Message:column id is invalid

Action:内部错误,请联系我们的技术支持解决。

# YAS-03205

Message:type mismatch for column %d , expect %s type, actual %s type

Action:内部错误,请联系我们的技术支持解决。

# YAS-03206

Message:first offset for var column %d is not zero, actual %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-03207

Message:column %u value '%s' is invalid, expected size not more than %u, actual size is %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-03208

Message:column %u is not nullable, but try to set null value

Action:内部错误,请联系我们的技术支持解决。

# YAS-03209

Message:column slice is not empty, op is not allowed

Action:内部错误,请联系我们的技术支持解决。

# YAS-03210

Message:build column %u cannot be attached

Action:内部错误,请联系我们的技术支持解决。

# YAS-03211

Message:column %u slice size is %u, other slice size %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-03212

Message:column %d is attached, cannot move

Action:内部错误,请联系我们的技术支持解决。

# YAS-03213

Message:column %u slice is empty

Action:内部错误,请联系我们的技术支持解决。

# YAS-03214

Message:row (%u, %u) not found for dataset

Action:内部错误,请联系我们的技术支持解决。

# YAS-03215

Message:column %u size is %u, value size is %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-03216

Message:slice does not have data, but some rows is not null

Action:内部错误,请联系我们的技术支持解决。

# YAS-03217

Message:destination dataset column count %u does not match with source dataset %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-03219

Message:dataset has columns %u, but sort column num %u which is overflow

Action:内部错误,请联系我们的技术支持解决。

# YAS-03220

Message:dataset invalid sort column id %u, max valid columnId is %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-03221

Message:dataset has %u rows, but sort buffer only has %u rows which is not enough

Action:内部错误,请联系我们的技术支持解决。

# YAS-03222

Message:dataset need to allocate % PRIu64 bytes of memory, which overflow 4GB

Action:内部错误,请联系我们的技术支持解决。

# YAS-03223

Message:invalid capacity of dataset

Action:内部错误,请联系我们的技术支持解决。

# YAS-03224

Message:invalid status %u of dataset

Action:内部错误,请联系我们的技术支持解决。

# YAS-03237

Message:column size %u is too large

Action:请参考产品规格-数据类型规格文档,确保数据在规格范围后重试。

# YAS-03242

Message:block {file: %u, id: %u} type expected to be %u, but type is %u now

Action:操作对象已被截断或删除,请重试。

# YAS-03243

Message:TAC table having column with invalid datatype "%s"

Action:TAC表当前不支持存储该类型的数据。

# YAS-03244

Message:maximum number of entry block is %u

Action:减少表中的数据量。

# YAS-03247

Message:read unextend block

Action:读取一个尚未扩展的块,请联系我们的技术支持解决。

# YAS-03248

Message:column %s dictionary is full

Action:字典项已达到上限,列中只能插入已存在的值。

# YAS-03249

Message:MCol metadata changed

Action:内部错误,请联系我们的技术支持解决。

# YAS-03402

Message:cannot allocate % PRId64 bytes from heap allocator

Action:内部错误,请联系我们的技术支持解决。

# YAS-03403

Message:stack overflow, try to allocate %d bytes

Action:内部错误,请联系我们的技术支持解决。

# YAS-03409

Message:decompress size is not expected

Action:内部错误,请联系我们的技术支持解决。

# YAS-03410

Message:cannot allocate object from scol data buffer, max object count is %u, %s allocator is not enough

Action:请按描述调整对应allocator大小。

# YAS-03413

Message:data corrupt: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-03414

Message:failed to wait for object to load

Action:内部错误,请联系我们的技术支持解决。

# YAS-03415

Message:compression type is invalid

Action:内部错误,请联系我们的技术支持解决。

# YAS-03418

Message:data bucket %s is offline

Action:正在使用的data bucket已经offline,请联系我们的技术支持解决。

# YAS-03419

Message:coast fatal error, operation is %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-03420

Message:data bucket %s is full

Action : 该databucket已写满,请增加新的databucket。如果其他databucket空间足够的情况下报该错误,则说明databucket的预留空间无法支持本次导入完成,可以适当调大BUCKET_RESERVED_SPACE,从而让导入选择其他剩余空间更多的databucket。

# YAS-03421

Message:serialize file corrupt, %s

Action : SCOL的临时交换文件损坏,请清理$YASDB_DATA/tmp目录下的SCOL_前缀的文件并重试。

# YAS-03450

Message:object not found in diskcache

Action:内部错误,请联系我们的技术支持解决。

# YAS-03451

Message:diskcache version incompatible, metadata version %u, current version %u

Action:磁盘缓存不兼容升级,请重建磁盘缓存。重建先将ENABLE_DISKCACHE配置项置为false,然后再置为true。

# YAS-03504

Message:only LSC can be sorted

Action:只允许对LSC表的列进行排序。

# YAS-03505

Message:LSC table "%s" accessor is not register, please make sure external lib "libyas_col_executor.so" already dlopen

Action:检查当前环境是否安装库libyas_col_executor.so。

# YAS-03508

Message:LSC table do not support "%s" data type

Action:LSC表当前不支持存储该类型的数据。

# YAS-03601

Message:meta item not found

Action:内部错误,请联系我们的技术支持解决。

# YAS-03703

Message:slice not found

Action:内部错误,请联系我们的技术支持解决。

# YAS-03705

Message:%s timeout, exceeded % PRIu32 seconds

Action:强制转换超时,请重试。

# YAS-03708

Message:failed to execute transformer task, task number is % PRIu64

Action:强制转换失败,请联系我们的技术支持解决。

# YAS-03710

Message:column %s's codec type is invalid

Action:使用该数据类型支持的编码类型。

# YAS-03711

Message:can not create LSC table in a tablespace without data bucket

Action:为表空间创建DATA BUCKET后重试。

# YAS-03714

Message:failed to bulkload because of backend convert failed, errorCode is %d, errorMessage is %s

Action:根据错误提示进行修改。

# YAS-03716

Message:rgd insert ctx is invalid, %s

Action:导入场景内部错误,请联系我们的技术支持解决。

# YAS-03717

Message:%s is not a valid coast slice file belong to this database

Action:内部错误,请联系我们的技术支持解决。

# YAS-03718

Message:lsc internal error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-03719

Message:object data has been transformed or object has been truncated or dropped

Action:扫描数据被转换或扫描对象已被截断或删除,请重试。

# YAS-03720

Message:transform data is disabled

Action:使用ALTER TABLE语句开启数据转换开关,参考ALTER TABLE文档中的enable_xfmr_clause。

# YAS-03721

Message:failed to get sliceLock because reach the upper limit count 33,824

Action:内部错误,请联系我们的技术支持解决。

# YAS-03722

Message:xfmr internal error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-03723

Message:current xfmr has been canceled

Action:内部错误,请联系我们的技术支持解决。

# YAS-03724

Message:compact data is disabled

Action:使用ALTER TABLE语句开启数据合并开关,参考ALTER TABLE文档中的enable_xfmr_clause。

# YAS-03725

Message:lock slice %s failed

Action:slice 加锁失败,请重试。

# YAS-03726

Message:cannot drop order key column

Action:不可删除order key的列。

# YAS-03728

Message:cannot execute bulkload if %s

Action:在打开自动提交或创建了savepoint后不允许进行冷数据插入,请关闭自动提交或删除savepoint后重试。

# YAS-03729

Message:cannot execute update/delete/merge without unique index filter if the table is doing bulkload in the same transaction

Action:事务内开启冷数据插入后,不允许对该表进行非唯一索引列过滤的update/delete/merge操作。

# YAS-03730

Message:bulkload failed and rollback the transaction

Action:本次冷数据的插入失败将整个事务进行了回滚。

# YAS-04001

Message:sql pool buffer too small

Action:调整SHARE_POOL_SIZE的大小。

# YAS-04002

Message:sql text too long

Action:SQL语句长度超限,修改语句使其小于产品规格-逻辑规格中定义的单个SQL语句长度。

# YAS-04003

Message:maximum number of open cursors is %d

Action:同时打开游标过多,请参考配置参数文档中的OPEN_CURSORS配置项,在资源允许的前提下调整配置项的值。

# YAS-04004

Message:failed to allocate statement

Action:用于SQL执行的statement申请失败,请检查是否存在过多连接。

# YAS-04005

Message:fetch not supported

Action:暂不支持此fetch方式。

# YAS-04006

Message:cannot insert NULL value to column %s

Action:无法在该列中插入NULL值。

# YAS-04007

Message:result set metadata changed

Action:该结果集元数据已发生变更。常见处理方式如下:

  • 如果是通过JDBC或者C驱动连接数据库,可能是DML的相关Prepare接口已过期,请重新生成。
  • 如果非驱动连接,重新执行DML语句;
  • 上述均无效时请联系我们的技术支持解决。

# YAS-04008

Message:%s size exceeding limit % PRIu32

Action:输入的参数值超过了变量允许的最大值,请减少参数值。

# YAS-04009

Message:buffer is not enough

Action:内部错误,请联系我们的技术支持解决。

# YAS-04010

Message:statement is eof

Action:(1)检测是否在游标数据取完后继续操作。(2)检查游标是否合法,例如对一个没有返回数据的游标执行fetch。

# YAS-04011

Message:plan cache internal error

Action:内部错误,请联系我们的技术支持解决。

# YAS-04012

Message:%s does not support batch execution

Action:暂不支持该批执行。

# YAS-04013

Message:PL/SQL debugger does not start

Action:请先启动PL调试器。

# YAS-04014

Message:illegal trapper protocol in PL/SQL debugger

Action:调试器协议错误,请联系我们的技术支持解决。

# YAS-04015

Message:at "%s", line %d

Action:PL执行异常,请检查异常点。

# YAS-04101

Message:sql too complex

Action:SQL语句过于复杂,请简化SQL语句。请检查SQL语句长度是否超过2M括号嵌套层数是否超过上限128层以及PX SENDER PLAN数量是否超过上限128个等。

# YAS-04102

Message:invalid symbol %c

Action:非法的符号,请输入合法的符号。

# YAS-04103

Message:incomplete bracket

Action:不完整的括号,请输入完整的括号。

# YAS-04104

Message:incomplete operator

Action:不完整的操作符,请输入完整的操作符。

# YAS-04105

Message:invalid number character %s

Action:非法的数值,请合法的数值。

# YAS-04106

Message:incomplete string

Action:不完整的字符串,请输入完整的字符串。

# YAS-04107

Message:string exceeding limit % PRIu64

Action:字符串长度超过了允许的最大长度,请减小字符串长度。

# YAS-04108

Message:name exceeding limit % PRIu32

Action:名称长度超过了允许的最大长度,请减小名称长度。

# YAS-04109

Message:name exceeding member limit % PRIu32

Action:名称成员超过了允许的最大数量,请减少名称成员数量。

# YAS-04110

Message:invalid variant name

Action:非法的变量名称,请合法的变量名称。

# YAS-04111

Message:key word in name

Action:名称中包含了关键字,请修改名称。

# YAS-04112

Message:invalid comment block text

Action:非法的块注释,请输入合法的。

# YAS-04113

Message:bracket expected

Action:缺失括号,请输入括号。

# YAS-04114

Message:need to specify the datatype

Action:缺失数据类型,请输入合法的数据类型。

# YAS-04115

Message:"%s" expected but missing

Action:缺失关键字,请输入缺失的关键字。

# YAS-04116

Message:number expected

Action:缺失数值,请输入数值。

# YAS-04117

Message:password text expected

Action:缺失密码,请输入密码。

# YAS-04118

Message:size expected

Action:缺失大小,请输入大小。

# YAS-04119

Message:string expected

Action:缺失字符串,请输入字符串。

# YAS-04120

Message:may not specify column datatypes in this CREATE TABLE

Action:请在建表时指定列的数据类型。

# YAS-04121

Message:invalid datatype

Action:非法的数据类型,请输入合法的数据类型。

# YAS-04128

Message:integer value required

Action:请输入整数类型数据。

# YAS-04129

Message:missing double quote in identifier

Action:请检查双引号的使用是否合法。

# YAS-04151

Message:remote instance too many connections

Action:连接过多,请断开部分连接后再重试。

# YAS-04152

Message:remote instance too many nodes

Action:内部错误,请联系我们的技术支持解决。

# YAS-04153

Message:remote instance invalid command: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-04154

Message:remote instance invalid node: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-04155

Message:%s timeout

Action:网络超时,请重试。

# YAS-04156

Message:remote instance connection expired

Action:集群连接过期,请重试

# YAS-04201

Message:number of WITH clause column names does not match number of elements

Action:请保证WITH子句的列名称数量与实际的列数量匹配。

# YAS-04202

Message: missing or invalid table name

Action:缺失表名,请输入表名称。

# YAS-04203

Message:clause "%s" is declared or conflict

Action:请检查子句是否重复定义。

# YAS-04204

Message:number of %s must be between % PRId64 and % PRId64

Action:请按照输出提示输入合法范围内的数值。

# YAS-04205

Message:EXPLAIN missing DML keyword

Action:请在EXPLIAN语句中输入DML子句。

# YAS-04206

Message:invalid size value

Action:非法的大小值,请输入合法的大小值。

# YAS-04207

Message:invalid integer value

Action:非法的整数,请输入合法的的整数。

# YAS-04208

Message:subquery expected

Action:缺失子查询,请输入子查询。

# YAS-04209

Message:unexpected word %s

Action:非法的单词,请检查SQL语句。

# YAS-04210

Message:invalid file name

Action:非法的文件名,请输入合法的文件名。

# YAS-04211

Message:invalid charset name

Action:非法的字符集名,请输入合法的字符集名GBK/UTF8/ASCII/ISO88591。

# YAS-04212

Message:invalid open mode

Action:非法的数据库开启模式,请输入合法的数据库开启模式。

# YAS-04213

Message:expression expected

Action:缺失表达式,请输入表达式。

# YAS-04214

Message:incomplete expression

Action:请输入完整的表达式。

# YAS-04215

Message:comparison expected

Action:缺失比较操作符,请输入比较操作符。

# YAS-04216

Message:incomplete comparison

Action:请输入完整的比较符。

# YAS-04217

Message:condition expected

Action:缺失条件,请输入条件子句。

# YAS-04218

Message:incomplete condition

Action:请输入完整的条件子句。

# YAS-04219

Message:unexpected subquery

Action:请检查输入语句是否满足语法树要求,出现了非法的子查询。

# YAS-04220

Message:incomplete select

Action:请输入完整的查询语句。

# YAS-04221

Message:invalid table alias

Action:非法的表别名,请输入合法的表别名。

# YAS-04222

Message:alter table expected

Action:缺失alter table,请输入alter table。

# YAS-04223

Message:duplicate clause for %s

Action:请删除重复的子句。

# YAS-04224

Message:extent clause is not supported for undo and swap tablespace

Action:请删除extent子句。

# YAS-04225

Message:invalid word %s

Action:请删除该单词。

# YAS-04226

Message:too many tables or views

Action:请删除多余的表或视图。

# YAS-04227

Message:too many subquery or select

Action:请删除多余的subquery或select。

# YAS-04228

Message:unexpected eof

Action:请检查SQL语句是否完整。

# YAS-04229

Message:invalid datatype

Action:请输入合法的数据类型。

# YAS-04230

Message:invalid number of partitions specified in PARTITIONS clause

Action:请将分区数量指定为介于1和(1M-1)之间的数值。

# YAS-04231

Message:keyword expected

Action:缺失关键字,请输入关键字。

# YAS-04232

Message:duplicate column name

Action:请输入不重复的列名。

# YAS-04233

Message:duplicate partition/subpartition name

Action:请输入不重复的分区名。

# YAS-04234

Message:non-existent partitioning key column

Action:请输入合法的分区键列。

# YAS-04235

Message:maximum number of partitioning key columns is %d

Action:分区键列的个数已经超过最大上限,请减少分区键列的个数。

# YAS-04236

Message:partition bound list contains too many elements

Action:请输入数量正确的分区边界列。

# YAS-04237

Message:partition bound list contains too few elements

Action:请输入数量正确的分区边界列。

# YAS-04238

Message:partition bound element must be one of %s

Action:请输入合法的分区边界值。

# YAS-04239

Message:DEFAULT partition must be the last partition specified

Action:请在最后声明DEFAULT分区。

# YAS-04240

Message:partition bound is too high

Action:请输入合法的分区边界。

# YAS-04241

Message:list value specified twice in partitions %s, %s

Action:请输入非重复的边界。

# YAS-04242

Message:a %s column cannot serve as a partitioning column

Action:请输入合法的分区列。

# YAS-04243

Message:invalid identifier %s

Action:请输入合法的标识符。

# YAS-04244

Message:maximum number of part bound text size is %u

Action:请减小分区边界的文本大小。

# YAS-04245

Message:invalid interval field

Action:请输入合法的interval字段。

# YAS-04246

Message:incomplete join

Action:请输入完整的join子句。

# YAS-04247

Message:invalid table type

Action:请修改为YashanDB认可的表类型HEAP/TAC/LSC。

# YAS-04248

Message:unexpected for update

Action:请检查输入的for update子句是否合法。

# YAS-04249

Message:Ac outColumn exists in inColumn

Action:请确保Ac outColumn不在inColumn中。

# YAS-04250

Message:unexpected symbol %c

Action:请检查符号是否合法。

# YAS-04251

Message:%s expected

Action:缺失关键字,请输入关键字。

# YAS-04252

Message:duplicate field in record, argument list, variable list or exception

Action:请输入非重复的变量。

# YAS-04253

Message:PL/SQL compiling errors:

Action:请检查PL语句中的语法错误,重新输入。

# YAS-04254

Message:plsql block stack overflow

Action:PL嵌套层次过深,请简化PL语句。

# YAS-04255

Message:too many plsql lines

Action:请减少PL语句的行数。

# YAS-04256

Message:missing or invalid index name

Action:请输入合法的索引名称。

# YAS-04257

Message:missing or invalid synonym identifier

Action:请输入合法的同义词名称。

# YAS-04258

Message:missing or invalid view name

Action:请输入合法的视图名称。

# YAS-04259

Message:missing or invalid sequence name

Action:请输入合法的序列名称。

# YAS-04260

Message:missing or invalid access constraint name

Action:请输入合法的AC约束名称。

# YAS-04261

Message:invalid password: %s

Action:请输入合法的密码。

# YAS-04262

Message:interval expression is not a constant of the correct type

Action:请确保为interval指定一个常量值,且与分区列的数据类型相匹配。

# YAS-04263

Message:range partitioned table with INTERVAL clause has more than one column

Action:检查SQL语句,确保interval分区列仅指定了一个列。

# YAS-04264

Message:invalid data type for partitioning column of an interval partitioned table

Action:请确保interval分区表的分区列为数值或时间类型。

# YAS-04265

Message:MAXVALUE cannot be specified for an interval partition table

Action:interval分区表不允许使用MAXVALUE。

# YAS-04266

Message: no valid column was found as the default partition column

Action:请修改表定义,确保至少有一个合适数据类型的列能作为分区键。

# YAS-04267

Message:column name expected

Action:缺失列名,请输入列名称。

# YAS-04268

Message:invalid object category for comment

Action:请输入合法的comment类型。

# YAS-04269

Message:comment length exceeds limit 4000

Action:请按照提示信息减少comment的长度。

# YAS-04270

Message:interval precision is out of range

Action:请输入合法的interval精度。

# YAS-04271

Message:uniform size value must be less than file size

Action:请输入合法的空间扩展大小。

# YAS-04272

Message:the number of control files specified must be between %u and %u

Action:请合理配置控制文件的数量。

# YAS-04273

Message:invalid clause for %s

Action:请输入合法的子句。

# YAS-04274

Message:the interval must be more than zero

Action:请确保输入的interval值大于0。

# YAS-04275

Message:invalid date string

Action:请输入合法的日期字符串。

# YAS-04276

Message:the compile indication %s cannot be specified here

Action:请将参数变量输入在合法位置。

# YAS-04277

Message:this operator cannot be used with lists

Action:请不要在该操作符内使用列表。

# YAS-04278

Message:unable to flashback to before drop or truncate for multiple tables

Action:请不要对多表使用flashback to before drop or truncate子句。

# YAS-04279

Message:table partition cannot flashback to before drop

Action:请不要对表分区使用flashback to before drop。

# YAS-04280

Message:maximum number of partitioned columns is %d

Action:请按照提示信息减少分区列的数量。

# YAS-04281

Message:non-existent partitioned column

Action:请输入合法的分区列。

# YAS-04282

Message:a %s column cannot serve as a partition column

Action:不允许使用该数据类型的列作为分区键,请修改列类型,或重新指定其他的列。

# YAS-04283

Message:maximum number of chunk bound text size is %u

Action:请减小chunk bound文本的大小。

# YAS-04284

Message:invalid sequence number of archive log or redo file

Action:请输入合法的序列数量,序列个数必须大于0。

# YAS-04285

Message:duplicate table cannot be distributed

Action:请不要对复制表指定distributed。

# YAS-04286

Message:constant string separator expected

Action:修改分隔符为一个常量字符串。

# YAS-04287

Message:multiple definition sort parameter

Action:请删除多余的排序参数定义。

# YAS-04288

Message:circular view definition encountered

Action:视图的基表或基图已被删除,请注意删除顺序。

# YAS-04289

Message:invalid password string

Action:非法的密码,请重新输入。

# YAS-04290

Message:too many %s expressions

Action:表达式过多,请检查表达式数量。

# YAS-04291

Message:invalid compression, %s

Action:无效的压缩格式,请检查。

# YAS-04292

Message:invalid encoding, %s

Action:无效的编码格式,请检查。

# YAS-04293

Message:cannot create col table when charset is not UTF8 or GB18030

Action:请切换字符集为UTF8或GB18030。

# YAS-04294

Message:maximum length of check condition is %d

Action:请确保输入的列的自定义约束长度小于最大限制。

# YAS-04295

Message:maximum length of column default is %d

Action:请确保输入的列的默认值长度小于最大限制。

# YAS-04296

Message:only one clause allowed per query block

Action:请确保在每个查询块中只出现一个该类型子句。

# YAS-04297

Message:invalid ALTER TABLE option

Action:请检查语句语法,指定有效选项后重试。

# YAS-04298

Message:";" or "return" expected but missing

Action:请输入合法的cousor子句。

# YAS-04299

Message:missing or invalid unified audit option

Action:请检查SQL语句,修改语句的语法错误。

# YAS-04300

Message:invalid MCOL TTL value, must be positive

Action:请修改可变数据的生命周期为合法的INTERVAL YEAR TO MONTH或INTERVAL DAY TO SECOND类型数据。

# YAS-04301

Message:ambiguous column

Action:请不要输入有歧义的列。

# YAS-04303

Message:unexpected %s

Action:请删除多余object。

# YAS-04304

Message:the count of column is mismatched

Action:请输入数量匹配的列。

# YAS-04305

Message:one column expected

Action:请删除多余列。

# YAS-04307

Message:too many result set columns

Action:请删除多余列。

# YAS-04308

Message:result set column is mismatched

Action:请输入数量匹配的列。

# YAS-04309

Message:arguments count must be between % PRIu32 and % PRIu32

Action:请按照输出提示输入合法范围内的参数。

# YAS-04310

Message:invalid order column

Action:请输入合法的排序列。

# YAS-04311

Message:cannot be compared

Action:请输入可比较的值。

# YAS-04312

Message:invalid number of arguments

Action:请输入合法数量的参数。

# YAS-04313

Message:each query block allows only one clause

Action:请删除多余的子句。

# YAS-04314

Message:no selected expression exists

Action:缺失查询列,请输入查询列。

# YAS-04315

Message:expression argument null

Action:请输入非NULL值。

# YAS-04316

Message:not a single-group group function

Action:请输入合法的group列。

# YAS-04317

Message:aggregate function cannot be nested

Action:请不要输入嵌套的聚集函数。

# YAS-04318

Message:sequence number not allowed here

Action:请在合法位置输入序列。

# YAS-04319

Message:too many aggregations

Action:请减少聚集函数的个数。

# YAS-04320

Message:query column data types(%s, %s) is mismatched

Action:请确保数据类型匹配。

# YAS-04321

Message:const expression expected

Action:请输入常量表达式。

# YAS-04322

Message:invalid datatype

Action:请输入合法的数据类型。

# YAS-04323

Message:arguments count must be % PRIu32

Action:请按照输出提示输入合法的参数数量。

# YAS-04324

Message:not a selected expression

Action:请输入查询列中的表达式。

# YAS-04325

Message:unique limit is not allowed in subQuery

Action:请不要在子查询中单独使用limit子句。

# YAS-04327

Message:invalid timestamp value

Action:请输入合法的timestamp值。

# YAS-04328

Message:can only select from fixed tables/views

Action:只允许对非物理表进行查询,不允许进行修改。

# YAS-04329

Message:conversion from %s to %s with default return value is not allowed

Action:请删除多余的default子句。

# YAS-04330

Message:must name this expression with a column alias

Action:请对这个表达式输入别名。

# YAS-04331

Message:DISTINCT is forbidden in this function

Action:请删除DISTINCT子句。

# YAS-04332

Message:snapshot expression is not allowed here

Action:请在合法位置使用snapshot表达式。

# YAS-04333

Message:this argument must be a literal or bind variable

Action:请输入常量表达式。

# YAS-04334

Message:bind variables are not allowed for data definition operations

Action:请检查SQL语句,并修改语句的语法错误。

# YAS-04335

Message:FOR UPDATE of this query expression is not allowed

Action:请不要在此查询中使用FOR UPDATE子句。

# YAS-04336

Message:boolean expression expected

Action:请输入布尔类型的表达式。

# YAS-04337

Message:invalid negative expression

Action:请输入非负值的表达式。

# YAS-04340

Message:cannot create a synonym with same name as object

Action:请重新输入不重名的同义词。

# YAS-04341

Message:subquery nested too deeply

Action:请减少子查询的嵌套层数。

# YAS-04342

Message:arg2 must be one of 0 or 1

Action:arg2请输入0或1。

# YAS-04343

Message:missing expression

Action:缺失表达式,请输入表达式。

# YAS-04344

Message:multi-table update is not supported

Action:暂不支持多表update。

# YAS-04345

Message:multi-table delete is not supported

Action:暂不支持多表delete。

# YAS-04346

Message:ambiguous table

Action:请输入没有歧义的表名。

# YAS-04347

Message:cannot select %s from , or sample, a join view without a key-preserved table

Action:请不要在对没有保留键的join view查询ROWID,或使用sample子句。

# YAS-04348

Message:transactional private temporary table %s is not allowed here

Action:请在合法位置使用事务级私有临时表。

# YAS-04349

Message:This statement is temporarily unable to execute due to an internal error

Action:该语句因内部错误暂时无法执行。

# YAS-04350

Message:window frame is not allowed here

Action:请在合法位置使用窗口函数。

# YAS-04351

Message:missing window specification for this function

Action:参考对应函数文档,检查指定的窗口语句是否正确。

# YAS-04352

Message:invalid NLS parameter string used in SQL function

Action:请输入合法的NLS参数。

# YAS-04353

Message:cannot use an object modified in current transaction

Action:请不要在当前事务中使用已修改的对象。

# YAS-04355

Message:ALTER SLICE is not enabled

Action:内部错误,请联系我们的技术支持解决。

# YAS-04356

Message:private temporary table is not allowed here

Action:请不要在此处使用私有临时表。

# YAS-04357

Message:%s length % PRIu32 exceed max string length % PRIu64

Action:请按照提示信息减小列别名的长度。

# YAS-04358

Message:missing ORDER BY expression in window frame

Action:请输入ORDER BY表达式。

# YAS-04359

Message:CONNECT BY clause required in this query block

Action:请输入CONNECT BY子句。

# YAS-04360

Message:CONNECT BY ROOT operator is not supported in the START WITH or in the CONNECT BY condition

Action:请不要在此处使用CONNECT BY ROOT。

# YAS-04361

Message:Specified pseudocolumn or operator is not allowed here

Action:请不要在此处指定伪列或运算符。

# YAS-04362

Message:%s function is not allowed here

Action:请不要在此处使用该函数。

# YAS-04363

Message:illegal parameter in %s function

Action:请输入合法的参数。

# YAS-04364

Message:NOCYCLE keyword is required with CONNECT_BY_ISCYCLE pseudocolumn

Action:缺失关键字,请输入关键字NOCYCLE。

# YAS-04365

Message:%s is not allowed here

Action:请删除多余子句。

# YAS-04366

Message:multiple assign to one parameter

Action:请删除多余赋值语句。

# YAS-04367

Message:Column check constraint cannot reference other columns

Action:请不要在列check约束中引用其他列。

# YAS-04368

Message:date or system variable wrongly specified in CHECK constraint

Action:请不要在check约束中指定date或system变量。

# YAS-04369

Message:SAMPLE percentage must be in the range [0.000001,100)

Action:请确保采样百分比为有效值后重试。

# YAS-04371

Message:unsupport %s in distributed database

Action:分布式不支持该语句。

# YAS-04372

Message:maximum number of chunk count is %u

Action:请按照提示信息减少chunk的数量。

# YAS-04373

Message:chunks must be more than nodegroups

Action:请按照提示信息增加chunk的数量。

# YAS-04374

Message:duplicate nodegroup id

Action:请删除重复的nodegroup id,重新输入。

# YAS-04375

Message:invalid nodegroup id

Action:GROUP_ID无效,请查询DV$NODE视图获得正确的GROUP_ID后重新输入。

# YAS-04376

Message:sort column does not exist

Action:缺失排序列,请输入排序列。

# YAS-04377

Message:a %s column cannot serve as a sort column

Action:请输入数据类型合法的列作为排序列,CLOB,BLOB,NCLOB,BIT,ROWID,CURSOR,JSON,UDT等类型不允许用作排序列。

# YAS-04378

Message:both added and dropped cannot be same auditing option

Action:选择ADD和DROP中的一个操作。

# YAS-04379

Message:invalid alteration of datatype

Action:请输入合法的数据类型。

# YAS-04380

Message:cannot enable/disable transformer for %s

Action:只允许对LSC表进行enable/disable transformer。

# YAS-04381

Message:modified column type is incompatible with column default value

Action:请输入与列默认值兼容的数据类型。

# YAS-04382

Message:audit policy does not have a simple rule condition

Action:请对审计策略条件使用简单的规则表达式,参考CREATE AUDIT POLICY语法文档中的audit_condition。

# YAS-04383

Message:tablespace set maxsize cannot be smaller than size

Action:表空间集最大自动扩展空间需要大于等于预分配空间。

# YAS-04384

Message:only const type supported

Action:选项设置为常量。

# YAS-04385

Message:wrong number or types of arguments in call to %s

Action:验证出错,请输入可以支持的数据类型。

# YAS-04386

Message:too many columns in %s table

Action:减少access constraint定义列。

# YAS-04387

Message:bound should be a const number

Action:bound值修改为常数。

# YAS-04388

Message:bound is out of range

Action:bound值超出范围,修改bound值。

# YAS-04389

Message:invalid AC type

Action:内部错误,请联系我们的技术支持解决。

# YAS-04390

Message:the filter used is not supported

Action:修改acceess constraint的filter条件。

# YAS-04391

Message:the arguments used in filter is not supported

Action:修改acceess constraint的filter条件。

# YAS-04392

Message:invalid aggregate function used in AC

Action:修改acceess constraint的聚合列的聚合函数类型。

# YAS-04393

Message:duplicated aggregate function

Action:重复聚合列, 修改acceess constraint的聚合列。

# YAS-04394

Message:the argument of aggregate function in AC should be a column

Action:聚合列只支持单列,修改acceess constraint的聚合列。

# YAS-04395

Message:AC type %s does not match table type %s

Action:表类型不支持创建access constraint。

# YAS-04396

Message:query slice of part table without partition name

Action:未给该分区表的slice指定分区名。

# YAS-04397

Message:missing or invalid standby name

Action:请输入合法的备库名称。

# YAS-04398

Message:duplicate %s

Action:不能有重复的名称。

# YAS-04399

Message:only pure functions can be indexed

Action:输入的表达式不符合表达式函数索引规范,请重新输入正确的表达式。

# YAS-04400

Message:data type %s expected, but %s got

Action:校验阶段发现类型不匹配,需要按照提示信息输入有效类型。

# YAS-04401

Message:data type %s expected, but %s got

Action:执行阶段发现类型不匹配,需要按照提示信息输入有效类型。

# YAS-04402

Message:query expression return multiple rows

Action:请输入正确的子查询语句。

# YAS-04403

Message:explain too complex

Action:请简化SQL语句。

# YAS-04404

Message:serialize too complex

Action:内部错误,请联系我们的技术支持解决。

# YAS-04405

Message:aggregation variant size too large

Action:内部错误,请联系我们的技术支持解决。

# YAS-04406

Message:deserialize %s broken

Action:内部错误,请联系我们的技术支持解决。

# YAS-04407

Message:deserialize subquery expression null

Action:内部错误,请联系我们的技术支持解决。

# YAS-04408

Message:deserialize dataset null

Action:内部错误,请联系我们的技术支持解决。

# YAS-04409

Message:deserialize user id mismatch

Action:内部错误,请联系我们的技术支持解决。

# YAS-04410

Message:deserialize dictionary version mismatch

Action:内部错误,请联系我们的技术支持解决。

# YAS-04412

Message:value error, %s

Action:请按照对应数据类型规格输入有效的值。

# YAS-04413

Message:serialize invalid stage

Action:内部错误,请联系我们的技术支持解决。

# YAS-04414

Message:stage %u not found

Action:内部错误,请联系我们的技术支持解决。

# YAS-04415

Message:updating partition key column would cause a partition change

Action:此操作不允许。

# YAS-04421

Message:The mode is not supported

Action:此操作不允许。

# YAS-04422

Message:too many expressions

Action:typeof函数嵌套层数不能大于6层,请修改SQL语句。

# YAS-04423

Message:inconsistent datatypes: expected %s got %s

Action:请按照提示信息输入有效类型。

# YAS-04424

Message:argument '%s' is out of range

Action:请按照参数规格输入有效的值。

# YAS-04425

Message:data size exceeds limit %ld

Action:请按照提示信息输入有效的值。

# YAS-04426

Message:the argument value is out of range

Action:输入的参数无效,请参考内置函数内置高级包,修改参数并重新执行。

# YAS-04427

Message:row set in the source tables is not stable

Action:此操作不允许。

# YAS-04428

Message:missing or illegal character following the escape character

Action:正则表达式使用错误,请修改SQL语句。

# YAS-04429

Message:escape character must be character string of length 1

Action:正则表达式使用错误,请修改SQL语句。

# YAS-04431

Message:regexp function error: %s

Action:正则表达式使用错误,请修改SQL语句。

# YAS-04432

Message:cannot find parameter

Action:内部错误,请联系我们的技术支持解决。

# YAS-04433

Message:invalid window frame value: %s

Action:窗口函数使用错误,请修改SQL语句。

# YAS-04434

Message:serialize nameExpr itemCount should not exceed 4

Action:内部错误,请联系我们的技术支持解决。

# YAS-04435

Message:connect by loop in user data

Action:层次查询报错,请检查输入数据。

# YAS-04436

Message:restart insert on duplicate

Action:内部错误,请联系我们的技术支持解决。

# YAS-04437

Message:parallel execution resource is busy

Action:内部错误,请联系我们的技术支持解决。

# YAS-04438

Message:parallel server error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-04439

Message:invalid tempfile or datafile clause for creating tablespace

Action:检查文件子句是否和表空间属性一致,即临时表空间与SWAP表空间使用TEMPFILE,普通表空间使用DATAFILE。

# YAS-04440

Message:invalid sql statement

Action:检查SQL语句是否符合要求。

# YAS-04442

Message:partial multibyte character

Action:部分多字节字符,请修改SQL语句重新执行。

# YAS-04443

Message:Implicit result cannot be returned through this statement

Action:return_result使用错误,请修改SQL语句。

# YAS-04444

Message:explain error, %s

Action:explain过程出错,具体错误根据错误提示信息决定。

# YAS-04445

Message:%s

Action:connect by使用出错,具体错误根据错误提示信息决定。

# YAS-04446

Message:not enough threads for distributed execution, please check MAX_PARALLEL_WORKERS and MAX_SESSIONS configuration

Action:分布式线程不足,请检查MAX_PARALLEL_WORKERS和MAX_SESSIONS是否配置过小,一条SQL语句在一个节点上所需的线程数等于PX数量乘以并行度。

# YAS-04447

Message:maximum number of stages count is %u

Action:SQL语句生成计划所需stages数量超过最大值%u。

# YAS-04449

Message:write table queue message id out of sequence. endpoint %u, isLocal %u, queue id %u, route %u->%u, expect %u, actual %u

Action:表队列发送数据,校验乱序,请重试。

# YAS-04450

Message:acknowledge table queue message id out of sequence. endpoint %u, isLocal %u, queue id %u, route %u->%u, expect %u, actual %u

Action:表队列回应数据,校验乱序,请重试。

# YAS-04451

Message:receive duplicated table queue control message. endpoint %u, queue id %u, route %u->%u, cmd %s

Action:表队列收到重复的控制命令,请重试。

# YAS-04452

Message:table queue heap is full, cannot insert more

Action:内部错误,请联系我们的技术支持解决。

# YAS-04453

Message:table queue heap is empty, cannot delete more

Action:内部错误,请联系我们的技术支持解决。

# YAS-04454

Message:not enough threads for parallel execution

Action:并行线程不足,请将MAX_PARALLEL_WORKERS调大,或将并行数改小。如果是INSERT并行报错,可以关闭PARALLEL DML后重新执行。

# YAS-04455

Message:unexpected table type, expect %s table, actual: %s table

Action:内部错误,请联系我们的技术支持解决。

# YAS-04457

Message:send runtime filter timeout

Action:runtime filter发送超时,请检查网络状态。

# YAS-04458

Message:column mapping failed: %s

Action:未支持的改写语句,请联系我们的技术支持解决。

# YAS-04459

Message:value error, %s size exceeds the max size of STRING

Action:请按照对应数据类型规格输入有效的值。

# YAS-04460

Message:invalid auditing option for %s

Action:使用有效的对象审计选项。

# YAS-04461

Message:query view is not allowed if database is not open

Action:将所有实例切换至OPEN状态

# YAS-04462

Message:gb18030 sequence is wrong

Action:GB18030字符输入错误,请检查。

# YAS-04463

Message:gb18030 character buffer is too small

Action:GB18030字符输入错误,请检查。

# YAS-04464

Message: consumer group limit less than px resource request

Action:请增大当前资源组的parallel_server_limit,或调大对应实例的maxParallelWorkers及PQ_POOL_SIZE(隐藏参数,默认值128M)参数。

# YAS-04465

Message: sort tree level exceeds limit %u

Action:排序树构建层数超过上限

# YAS-04466

Message: invalid cipher type passed

Action:传递的密码类型无效

# YAS-04467

Message: %s length not match

Action:加密高级包参数长度不匹配

# YAS-04468

Message: no cipher type specified

Action:没有传递的密码类型

# YAS-04469

Message: client identifier is too long

Action:指定的client identifier过长,请保证不超过64字节。

# YAS-04470

Message: recursive query with loop, the max recursion depth is %u"

Action:超过了预设的递归CTE遍历访问深度,数据集中可能出现死循环或者层次过大,请排查原语句和数据集关系。

# YAS-04471

Message:output limit should be between 1 and % PRIu64

Action:json转换为字符串的长度不符合要求。

# YAS-04472

Message:%s requires a constant %s

Action:此处需要输入常量。

# YAS-04473

Message:json binary data exceeds limit % PRIu64

Action:超出可处理的json对象数据上限。

# YAS-04474

Message:invalid json value

Action:json解析失败,该对象不符合标准json格式,请检查您输入的json格式。

# YAS-04475

Message:json object or array depth exceeds limit 100

Action:json对象或数组递归嵌套深度最多为100,请减少您的嵌套深度。

# YAS-04476

Message:json data exceeds limit 32000

Action:json_query查询结果超出上限,请调整您的查询语句缩小查询结果。

# YAS-04477

Message:decode error, must be a JSON variable

Action:内部错误,请联系我们的技术支持解决。

# YAS-04478

Message:array step contains unexpected characters

Action:确认您的路径表达式的数组查询步骤中是否包含非法字符。

# YAS-04479

Message:missing array step option

Action:确认您的路径表达式的数组查询步骤中是否缺少索引。

# YAS-04480

Message:index step requires integer input

Action:确认您的路径表达式的数组查询步骤是否包含了非整形数字。

# YAS-04481

Message:object step contains unexpected characters

Action:确认您的路径表达式的对象查询步骤中是否包含非法字符。

# YAS-04482

Message:invalid character %s in object field name

Action:确认您的路径表达式的域查询步骤中是否包含非法字符。

# YAS-04483

Message:',' or bracket expected but missing

Action:请确认您输入的json字符串中是否有数组或对象以非法字符结尾。

# YAS-04484

Message:json query return multiple result but without array wrapper

Action:json查询包含多个结果,请添加 with array wrapper 以显示所有结果。

# YAS-04485

Message:invalid json escape character

Action:请确认您输入的json字符串中是否包含非法转义字符。

# YAS-04486

Message:unexpected step after function step

Action:请检查您的路径表达式,路径表达式函数查询步骤后不允许再出现任何步骤。

# YAS-04487

Message:function step cannot return without wrapper

Action:包含函数步骤的json查询需要添加 with array wrapper 以显示结果。

# YAS-04488

Message:control character must use \u to insert

Action:请修正您输入的json字符串中的控制字符,改为\u格式进行输入。

# YAS-04489

Message:invalid array step in path expression

Action:请检查您的路径表达式的数组查询步骤是否符合语法。

# YAS-04490

Message:unknown json token

Action:请检查您的输入中是否包含非法的json关键字。

# YAS-04491

Message:invalid json number

Action:请修正您输入数据中不符合json格式的number类型成员。

# YAS-04492

Message:source unicode cannot transform to utf-8 character

Action:请修正您输入数据中无法转换为UTF-8格式的unicode输入。

# YAS-04493

Message:json_exists or json_query without wrapper cannot contain function step

Action:请删除路径表达式中的函数查询步骤,json_exists函数或不带with wrapper参数的json_query函数中不支持函数查询。

# YAS-04495

Message:Json Syntax Error at line %d column %d

Action:字符串解析json对象过程中出现语法错误,请根据已提示的字符串错误位置和错误原因调整字符串。

# YAS-04496

Message:create json large memory pool failed

Action:内部错误,请联系我们的技术支持解决。

# YAS-04497

Message:create json large memory context failed

Action:内部错误,请联系我们的技术支持解决。

# YAS-04498

Message:json result set too complex

Action:json结果集过于复杂,请简化json查询语句。

# YAS-04501

Message:too many materialized area

Action:物化区超过65535个。SQL语句中减少物化查询。

# YAS-04503

Message:adopting plan no project vars

Action:内部错误,请联系我们的技术支持解决。

# YAS-04504

Message:too many project vars

Action:内部错误,请联系我们的技术支持解决。

# YAS-04505

Message:too many joins, maximum number is %u

Action:join数量超过最大限制。改写SQL减少连接表的数量。

# YAS-04506

Message:failed to create hash struct

Action:内部错误,请联系我们的技术支持解决。

# YAS-04507

Message:hash input null pointer.

Action:内部错误,请联系我们的技术支持解决。

# YAS-04508

Message:missing value for partitioning column for sharded table

Action:DML操作必须指定分区键的值,请检查更新数据。

# YAS-04509

Message:only support sharded or duplicated table

Action:SQL语句去掉非复制表和非分区表。

# YAS-04510

Message:cannot update partitioning column for sharded table

Action:不支持更新分区键的值,请检查更新数据。

# YAS-04511

Message:cannot find corresponding px mode

Action:内部错误,请联系我们的技术支持解决。

# YAS-04512

Message:cannot find matched px

Action:内部错误,请联系我们的技术支持解决。

# YAS-04513

Message:unexpect distributed rule apply to plan

Action:内部错误,请联系我们的技术支持解决。

# YAS-04514

Message:distribute optimizer does not support with details '%s'

Action:内部错误,请联系我们的技术支持解决。

# YAS-04515

Message:too many window functions, maximum number is %u

Action:减少SQL语句中的窗口函数。

# YAS-04516

Message:statistics estimation issue

Action:内部错误,请联系我们的技术支持解决。

# YAS-04517

Message:too many parallel

Action:并行度指定过高,最高并行度上限为255,请调低并行度。

# YAS-04518

Message:too many materialized columns

Action:内部错误,请联系我们的技术支持解决。

# YAS-04519

Message:sql too complex,optimizer memory is insufficient

Action:优化所需的内存不足,请增加 SHARE_POOL_SIZE 大小。

# YAS-04520

Message:maximum number of expanded filter conditions exceeded

Action:优化器内部错误,请检查SQL语句,减少关联filter个数后重试,或联系我们的技术支持解决。

# YAS-04521

Message:In columnstored table, %s

Action:按照错误信息修改列存中rownum的使用形式。

# YAS-04522

Message:invalid hint leading

Action:无效的leading,请修改hint。

# YAS-04523

Message:%s

Action:根据提示修改connect by用法。

# YAS-04524

Message:GROUPING SETS/ROLLUP/CUBE is out of range

Action:grouping set/rollup/cube在统一改写为grouping sets时超出内存限制,减少group by后面列的个数。

# YAS-04801

Message:noaudit command with except clause is not allowed

Action:移除NOAUDIT语句中的EXCEPT子句。

# YAS-04802

Message:missing or invalid option

Action:修改语句的语法错误。

# YAS-04803

Message:invalid outline name

Action:根据命名规范重新定义大纲名称。

# YAS-04804

Message:only supported const options

Action:请对选项值加单引号。

# YAS-04805

Message:for float(M, D), double(M, D), M must be >= D

Action:参数M必须大于或等于参数D。

# YAS-04806

Message:for double(p), p must be %d <= p <= %d

Action:参数p的范围必须在[0,53]。

# YAS-04807

Message:invalid number for float/double width or precision

Action:请输入有效的浮点类型的宽度或精度的数字。

# YAS-04808

Message:invalid slice id: %s slice id must be an integer less than 4294967295

Action:请输入小于4294967295的slice id。

# YAS-04809

Message:incorrect order of unified audit options

Action:请按照正确顺序添加不同类别的审计项。

# YAS-04810

Message:not the same sql type

Action:两个SQL语句类型必须相同。

# YAS-04811

Message:only lsc table allow query slice

Action:请使用LSC表进行slice查询。

# YAS-04812

Message:invalid lob storage option specification

Action:请指定正确的lob storage选项,参考CREATE TABLE中的lob_clause子句描述。

# YAS-04813

Message:maximum number of audit policy is %u

Action:创建的审计策略超过限制,删除不需要的审计策略再创建。

# YAS-04814

Message:ORDER BY is forbidden in this function

Action:median窗口函数的over子句中禁止使用order by。

# YAS-04815

Message:name missing for subpartition in template

Action:创建的二级分区模板时请命名。

# YAS-04816

Message:insert values cannot exceed %d groups

Action:不能同时插入超过32768组数据。

# YAS-04817

Message: duplicate option specified

Action: 请去掉SQL语句中的重复选项。

# YAS-04818

Message: must use DROP MATERIALIZED VIEW to drop "%s.%s"

Action : 请使用DROP MATERIALIZED VIEW语法删除指定物化视图。

# YAS-04819

Message: invalid %s bucket: %s"

Action : 请根据错误信息调整data bucket语法。

# YAS-04820

Message: invalid partition name

Action : 不能使用该分区名,请使用正确的分区名。

# YAS-04821

Message: invalid subpartition name

Action : 不能使用该子分区名,请使用正确的子分区名。

# YAS-04822

Message: one partition must be split into two or more partitions

Action : 分区split必须分裂出2个以上分区。

# YAS-04823

Message: last resulting partition cannot contain bounds

Action : 分区split结果中最后一个分区不能定义分区边界。

# YAS-04824

Message: missing VALUES keyword

Action : 请加上VALUES。

# YAS-04825

Message: expecting VALUES LESS THAN or AT clause

Action : 请加上LESS THAN。

# YAS-04826

Message: a partition may be split into exactly two new partitions

Action : 请检查是否split成2个分区。

# YAS-04827

Message:cannot select ROWID from, or sample, a view with DISTINCT, GROUP BY, etc.

Action:无法从特定视图中查询ROWID或采样(sample),特定视图指集合操作,DISTINCT,GROUP BY等子句视图。

# YAS-04828

Message:invalid parameter count

Action:请确认绑定参数个数是否正确。

# YAS-04829

Message:invalid option specified for a HASH partition or subpartition of a LOB column

Action:不支持在哈希分区或LOB的二级分区下配置该属性。

# YAS-04830

Message:for float(p), p must be %d <= p <= %d

Action:参数p的范围必须在[0,126]。

# YAS-04831

Message:PIVOT clause is not allowed in CTE

Action:CTE内禁止使用PIVOT语法,请检查该部分输入。

# YAS-04832

Message:invalid duplicated param: %s

Action:匿名块内禁止出现同名绑定参数。

# YAS-04833

Message:unsupported %s in cluster database

Action:该语句不适用于共享集群。

# YAS-04851

Message:invalid column terminator %s

Action:仅支持指定单字节的CSV文件分隔符。

# YAS-04852

Message:invalid column enclosure %s

Action:仅支持指定单字节的CSV文件包围符。

# YAS-04853

Message:invalid file format %s

Action:用于导入的数据文件需要后缀名。

# YAS-04854

Message:parameter %s is out of range

Action:请将options语句里的参数修改为符合要求的值,参考LOAD DATA

# YAS-04855

Message:invalid fields format

Action:读取到的数据文件属性定义关键字非法。

# YAS-04856

Message:invalid infile

Action:为INFILE指定一个已存在的CSV文件名称。

# YAS-04857

Message:column %s duplicated

Action:导入表中的列至多声明一次。

# YAS-04858

Message:partKey does not exist

Action:向分区表导入数据,要求在表中声明所有分区键。

# YAS-04859

Message:table column mismatch csv column

Action:该列期待导入的对应数据文件位置无数据,建议使用TRAILING NULLCOLS参数。

# YAS-04860

Message:unknown parameter name %s

Action:输入的参数无效,请参考LOAD DATA

# YAS-04861

Message:the count of csv column exceeds limit %u

Action:用于导入的数据文件的列数上限为4096列。

# YAS-04862

Message:the count of table exceeds limit %u

Action:单条语句中最多支持16个表导入。

# YAS-04863

Message:the count of input file exceeds limit %u

Action:单条语句中最多支持250个数据文件导入。

# YAS-04864

Message:column %s does not exist in the load table %s

Action:条件子句中指定的列未出现在语句的表声明中。

# YAS-04865

Message:table %s duplicated

Action:用于导入的表至多声明一次。

# YAS-04866

Message:input file %s duplicated

Action:用于导入的数据文件至多声明一次。

# YAS-04867

Message:duplicate parameter %s

Action:options中支持的每个参数至多声明一次。

# YAS-04868

Message:invalid options parameter value

Action:options中参数值不合法。

# YAS-04869

Message:invalid user/password format

Action:检查命令语句,确保按照user/password格式输入用户及口令。

# YAS-04870

Message:the password length is too long

Action:请输入有效的密码。

# YAS-04871

Message:invalid server URL

Action:不合法的URL路径。

# YAS-04872

Message:unrecognized keyword '%s'

Action:不合法的关键字。

# YAS-04873

Message:datatype %s of column %s is unsupported yet

Action:不支持的数据类型。

# YAS-04874

Message:control text not found

Action:未找到控制文件。

# YAS-04875

Message:invalid mode %s

Action:不合法的客户端导入模式。

# YAS-04876

Message:packet size is out of range

Action:参考工具手册命令指导,修改packet size为范围内的值后重新运行。

# YAS-04877

Message:batch size is out of range

Action:参考工具手册命令指导,修改batch size的值后重新运行。

# YAS-04878

Message:memory initialization error

Action:初始化memory错误,请重试或联系我们的技术支持解决。

# YAS-04879

Message:init codepage error

Action:初始化codepage错误。请检查环境变量是否正确以及检查codepage文件是否存在。

# YAS-04880

Message:invalid node type

Action:非法节点类型,请使用CN服务地址或DN服务地址。

# YAS-04881

Message:cannot set directory in nonsplit way

Action:options中run_level未指定为split或split_to_part时,不允许指定directory选项。

# YAS-04882

Message:directory path is too long, must less than %u

Action:拆分指定的目录路径长度超限,请修改后重新运行。

# YAS-04883

Message:invalid value, %s is %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-04884

Message:invalid table type: %s

Action:此操作不允许。

# YAS-04885

Message:batch mode inserts illegal context

Action:内部错误,请联系我们的技术支持解决。

# YAS-04886

Message:batch mode inserts illegal node type

Action:内部错误,请联系我们的技术支持解决。

# YAS-04887

Message:abnormal dn node exists

Action:需在分布式DN主节点全部存活的情况下进行导入。

# YAS-04888

Message:infile %s loads table %s error data offset %lu

Action:该文件导入该表时,在该偏移报错。

# YAS-04889

Message:infile %s exists illegal data and offset is %lu

Action:该文件在该偏移处的数据不合法。

# YAS-04890

Message:csv enclose incomplete

Action:CSV文件数据包围符未成对出现,请检查字段中是否未被转义的双引号数据以及包围符的完整性。

# YAS-04891

Message:no line break found in csv block buffer

Action:CSV文件未读到合法换行符,请检查是否有单行数据超出csv_line_size或存在行尾仅有'/r'的情况。

# YAS-04892

Message:csv line terminates expect embedded

Action:检查是否数据中存在换行符,建议使用with embedded。

# YAS-04893

Message:csv line size exceeding limit %u

Action:CSV文件单行数据长度超过%u的限制。

# YAS-04894

Message:csv column splits invalid %s

Action:请输入合法的CSV分隔符。

# YAS-04895

Message:beyond csv file column range

Action:指定CSV列的id需为正整数,请检查指定CSV列引用。

# YAS-04896

Message:connection pool size is out of range

Action:参考工具手册命令指导,修改connection pool size的值后重新运行。

# YAS-04897

Message:%s rows number exceed limit

Action:参考工具手册命令指导,修改errors参数值或修复数据错误后重新运行。

# YAS-04898

Message:no files found for any INFILE specification

Action:指定的文件名称通配符没有匹配到任何文件,请确认文件名称后重新运行。

# YAS-04899

Message:csv column enclosure/terminator must be different

Action:请确保CSV包围符与分隔符不能一致。

# YAS-04901

Message:a predicate may reference only one outer-joined table

Action:一个谓词只能引用一个外部联接的表。

# YAS-04902

Message:only one column is allowed on the size of (+)

Action:谓词有(+)语法的一边只允许出现一个column。

# YAS-04903

Message:two tables cannot be outer-joined to each other

Action:两表无法彼此外部连接。

# YAS-04904

Message:invalid usage of (+)

Action:(+)外连接操作符只允许出现在where条件子句和join on条件子句的比较运算的谓词中。

# YAS-04905

Message:old style outer join (+) cannot be used with ANSI joins

Action:(+)外连接操作符不允许与ANSI连接一起使用。

# YAS-04906

Message:an outer join cannot be specified on a correlation column

Action:无法在关联列中指定外部联接。

# YAS-04907

Message:specified column or attribute is not a nested table type

Action:定义一个有效的嵌套表列或属性。

# YAS-04908

Message:cannot specify local on a non-partitioned table

Action:更改嵌套表为GLOBAL。

# YAS-04909

Message:users other than sys are not allowed to execute %s

Action:请切换sys用户执行该操作。

# YAS-04910

Message:one multi-columns clause only reference one table

Action:同一个set表达式里面只能引用同一个表。

# YAS-04911

Message:udt is not allowed in multi-columns update clause

Action:使用同一个set表达式update多列语法时,不支持udt类型。

# YAS-04912

Message:multi-columns update set expression must be subquery or list

Action:多列update set表达式必须是子查询或列表。

# YAS-04913

Message:cannot create rtree index on more than one column

Action:修改索引列为一列后重试。

# YAS-04914

Message:unsupported data type for rtree index

Action:修改指定的rtree索引列后重试。

# YAS-04915

Message:cannot build rtree index with option reverse

Action:去掉reverse重试。

# YAS-04916

Message:operations on dblink table are not allowed

Action:多表delete、delete带子查询、delete带returning、多表update、update带子查询、多表insert场景下,不能对db link远端表进行操作。请正确使用db link。

# YAS-04917

Message:unsupported feature on dblink, "%s"

Action:db link不支持此功能。请正确使用db link。

# YAS-04918

Message:partition extended table name cannot refer to a remote object

Action:分区扩展表名不能指dblink远程对象。

# YAS-04919

Message:insert values more than one group is invalid in %s database

Action:在该数据库不支持通过insert into values插入超过一组的数据。

# YAS-04920

Message:only shared database links can specify authentication

Action:只有指定了SHARED的数据库链接才能指定AUTHENTICATED。

# YAS-04921

Message:expression not supported for query rewrite

Action:该表达式不支持物化视图重写选项,需移除此表达式。

# YAS-04922

Message:invalid function expression

Action:无效的函数表达式,请参考正确的函数使用方法。

# YAS-04923

Message:unsupported null and const in grouping sets

Action:grouping sets/rollup/cube表达式中不支持出现常量和NULL。

# YAS-04924

Message:illegal subpartition-extended table name syntax

Action:非法的子分区扩展的表名语法,请检查表类型是否为二级分区表。

# YAS-04925

Message:non-aggregate expressions inside the PIVOT clause

Action:PIVOT子句中禁止出现非聚合函数,请检查该部分输入。

# YAS-04926

Message:non-constant expression in PIVOT values clause

Action:PIVOT子句的in列表中禁止出现非常量表达式,请检查该部分输入。

# YAS-04927

Message:bind variable is not supported inside PIVOT operation

Action:PIVOT子句的in列表中不允许出现绑定变量,请检查该部分输入。

# YAS-04928

Message:cannot PIVOT table function

Action:PIVOT不允许操作表函数,请检查该部分输入。

# YAS-04929

Message:cannot create encrypted tablespace, reason: %s

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-04930

Message:cannot use different database link in this situation

Action:在对远端表进行更新或插入时,不允许使用不同database link的对象。

# YAS-04931

Message:cannot use local sequence update remote table

Action:在对远端表进行更新时,不允许使用本地序列。

# YAS-04932

Message:invalid name: %s

Action:脱敏策略规则的对象名非法。

# YAS-04933

Message:invalid paralist format

Action:脱敏策略规则中的参数列表非法。如PARTIAL的参数个数只能是2个且不能为null。

# YAS-04934

Message:null error: %s

Action:脱敏策略规则中的参数列表非法。不能为null。

# YAS-04935

Message:argument of function should be a constant or a function of expressions in %s

Action:将参数更改为GROUP BY子句中表达式的常量或函数。

# YAS-04936

Message:column expression expected

Action:请输入列类型的表达式。

# YAS-04937

Message:insert faild, reason: %s

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-04938

Message:invalid datamask policy,column is not null

Action:脱敏策略有误,当前列不能被脱敏为空,请相关修改脱敏策略。

# YAS-04939

Message:virtual column not allowed here

Action:此处不能使用由表达式组合而成的虚拟列。

# YAS-04940

Message:cannot modify more than one base table through a join view

Action:由join语句构成的视图中,不能同时操作来自不同表的列。

# YAS-04941

Message:cannot perform a DML operation on a read-only view

Action:禁止对只读视图进行DML操作。

# YAS-04942

Message:cannot modify a column which maps to a non key-preserved table

Action:正在操作的列所属的表不满足视图DML可操作表条件。

# YAS-04943

Message:data manipulation operation not legal on this view

Action:该视图语句不满足可进行视图DML的条件。

# YAS-04944

Message:the datamask used in filter is not supported

Action:不支持对脱敏列进行filter操作。

# YAS-04951

Message:column %s in table %s references a non-existent field

Action:该列引用的字段不存在,请检查该字段。

# YAS-04952

Message:the field that column %s in table %s references is empty

Action:该LOB列引用的字段所对应的CSV数据为空,请检查对应CSV数据。

# YAS-04953

Message:filler cannot be used for comparison

Action:LOB列引用的字段不可用于比较,请检查语法使用。

# YAS-04954

Message:failed to read lob file %s by lob location specifier for column %s

Action:未能通过列的LOB位置说明符读取LOB文件,请检查LOB位置说明符对应数据。

# YAS-04955

Message:lob location specifier for column %s invalid offset or length

Action:LOB列的偏移量和长度无效,请检查LOB列数据偏移量和长度。

# YAS-04956

Message:invalid lob location specifier

Action:不合法的LOB位置说明符,请检查LOB位置说明符对应数据。

# YAS-04957

Message:%s is not a directory

Action:指定的拆分文件存放路径不是一个目录,请检查导入语句。

# YAS-04958

Message:infile %s runs the risk of generating files with same name

Action:导入语句中可能生成同名文件,请检查导入语句。

# YAS-04959

Message:string length is %d, import it as an outline lob

Action:导入字符串太长,请使用outline lob的方式导入。

# YAS-04960

Message:string length is %d, exceeding limit %d

Action:导入字符串太长,超过了字符串的最大限制。

# YAS-04961

Message:the mode of lob path relative does not allow absolute lob path

Action:lob_path_relative模式下进行文件拆分,不支持LOB文件路径为绝对路径。

# YAS-04962

Message:infile can not be split according to duplicated table on cn node

Action:在CN节点,不可根据复制表进行文件拆分。

# YAS-04963

Message:%s is out of range

Action:参考工具手册命令指导,修改参数值后重新运行。

# YAS-04964

Message:sender count %d exceeds max thread count %d(CPU_EXTEND_FACTOR:8, DEGREE_OF_PARALLELISM:%d)

Action:设置的sender线程数超过最大配置线程数,降低SENDER线程数后重新运行。

# YAS-04965

Message:invalid parameter %s, expect %s

Action:请输入合法的客户端导入参数。

# YAS-04966

Message:csv column enclosure invalid %s

Action:请输入合法的CSV包围符。

# YAS-04967

Message:invalid parameter: %s(Hint: %s)

Action:不合法的参数设置,参照提示进行设置后重新运行。

# YAS-04968

Message:clob data is invalid with charset %s

Action:clob数据内容不合法,请确认字符集是否匹配。

# YAS-04969

Message:invalid data because %s, offset: %ld, file: %s

Action:数据错误,请修正数据后重新导入。

# YAS-04970

Message:%s

Action:根据描述信息进行修改。

# YAS-04971

Message:invalid %s because the file is not in the directory of secure file

Action:请检查导入文件是否在指定的安全目录下,可通过SHOW PARAMETER SECURE_FILE_PRIV查看安全目录。

# YAS-05001

Message:can not allocate %s bytes from columnar vm buffer

Action:增加列存计算总内存配置COLUMNAR_VM_BUFFER_SIZE。

# YAS-05002

Message:invalid argument: %s

Action:根据信息检查参数。

# YAS-05003

Message:failed to downcast Column

Action:内部错误,请联系我们的技术支持解决。

# YAS-05004

Message:%s

Action:根据描述信息进行修改。

# YAS-05005

Message:%s

Action:根据描述信息进行修改。

# YAS-05006

Message:%s

Action:根据描述信息进行修改。

# YAS-05007

Message:%s

Action:根据描述信息进行修改。

# YAS-05008

Message:unsupported feature: %s

Action:不支持当前操作,请检查SQL语句或SQL运行环境。

# YAS-05009

Message:interrupted: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05010

Message:codec error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05011

Message:%s

Action:根据描述信息进行修改。

# YAS-05012

Message:%s

Action:根据描述信息进行修改。

# YAS-05013

Message:io error

Action:内部错误,请联系我们的技术支持解决。

# YAS-05014

Message:%s

Action:根据描述信息进行修改。

# YAS-05015

Message:%s

Action:根据描述信息进行修改。

# YAS-05016

Message:%s

Action:物化内存不足,可以调大COLUMNAR_VM_BUFFER_SIZE或COLUMNAR_MATERIAL_PERCENT解决。

# YAS-05017

Message:format error

Action:系统可用内存不足,请调整内存配置,减少内存使用,或联系我们的技术支持解决。

# YAS-05199

Message:infallible

Action:内部错误,请联系我们的技术支持解决。

# YAS-05201

Message:invalid implicit cursor

Action:检查隐式游标语法。

# YAS-05202

Message:empty block

Action:流程控制块里面不能为空,需要有执行语句,或用null填充。

# YAS-05203

Message:%s cannot be used as an assignment target

Action:入参不能赋值。

# YAS-05204

Message:invalid bound of %s line

Action:检查特定行如for line,index非法。

# YAS-05205

Message:exact fetch returns more than requested number of rows

Action:在PL中指定select查询的数据不能返回多行,修改语句使其返回单行结果,或使用游标方式查询。

# YAS-05206

Message:no data found

Action:在存储过程中查询数据为空。

# YAS-05207

Message:unhandled user defined exception

Action:未经定义的异常。

# YAS-05208

Message:invalid exception

Action:非法的异常定义语法,请检查语句。

# YAS-05209

Message:the current block is %s, the previous block should not be the %s

Action:使用的流程控制语句语法错误。

# YAS-05210

Message:case not found

Action:存储过程使用的case when语句必须有一个分支是符合条件的。

# YAS-05211

Message:missing or invalid stored-object name

Action:function或procedure的名字不符合语法。

# YAS-05213

Message:invalid argument

Action:参数需要匹配。

# YAS-05215

Message:stored-object has been dropped or altered

Action:执行的存储过程发生变更或已经删除,重新执行或创建。

# YAS-05217

Message:missing no-default argument %s

Action:该参数没有默认值。

# YAS-05218

Message:variable or bind variable expected for out/inout parameter

Action:使用变量或绑定变量作为出参。

# YAS-05219

Message:too many arguments

Action:存储过程或udf java函数参数个数不能超过最大值,目前版本为4096。

# YAS-05220

Message:resource is busy, try later

Action:并发过程中使用的资源正在被其他session使用,稍后再试。

# YAS-05221

Message:cannot %s %s type duplicate stored-object

Action:根据报错信息提示,与已经存在的存储过程对象重名。

# YAS-05222

Message:assignment target does not allow default expression

Action:申明为out/int out类型的变量不能有默认值。

# YAS-05223

Message:invalid goto statement cannot jump to label %s

Action:检查goto语法,不符合要求。

# YAS-05224

Message:invalid label %s

Action:label所处位置非法,请查看label的限制。

# YAS-05225

Message:duplicated label %s

Action:不能有重名的label名字。

# YAS-05226

Message:invalid return

Action:只有function的body允许return语句。

# YAS-05227

Message:invalid out argument function

Action:检查是否在合法的位置申明out/in out变量,位置限制参考相应文档。

# YAS-05228

Message:function must has return sql

Action:定义的function没有return语句。

# YAS-05229

Message:the %s only appears once in same exception

Action:检查在同一个异常中该名字是否出现多次。

# YAS-05230

Message:no choices may appear with choice OTHERS in an exception handler

Action:OTHERS不能与其他异常位于同一个句柄里,删除其他异常,或拆分为不同的句柄。

# YAS-05231

Message:OTHERS must be at the end of the exception

Action:异常语法不符合要求, OTHERS只能出现在异常的最后。

# YAS-05232

Message:active autonomous transaction detected and rolled back

Action:自治事务结束时需要输入commit或rollback。

# YAS-05233

Message:%s variable binding to %s position

Action:in out参数绑定不匹配。

# YAS-05234

Message:parameter number %d mismatch using number %d

Action:修改为匹配的绑定参数。

# YAS-05235

Message:cannot perform a DML or DDL or DCL inside a query or DML

Action:过程体不支持非DML以及query或在含有DML以及query的自治事务中需要显示commit或rollback。

# YAS-05236

Message:the table has changed and triggers/functions cannot read it

Action:表结构已改变,不能再进行update或delete。

# YAS-05237

Message:dynamic sql should be string and not null

Action:请检查动态SQL的表达式执行结果是否为非空字符串。

# YAS-05238

Message:maximum number of stored-objects is % PRIu32

Action:使用的存储过程数量不能超过最大值。

# YAS-05239

Message:invalid recursive call stored-object %s

Action:检查递归调用存储过程语法。

# YAS-05241

Message:invalid values clause of an insert statement

Action:insert语句插入一个record值时,不符合规范。

# YAS-05242

Message:invalid cursor

Action:检查游标语法。

# YAS-05243

Message:invalid open

Action:检查open语法。

# YAS-05244

Message:open too many cursor

Action:同时打开的游标过多,同一时间打开的游标数目限制为300个,请改写PL语句,关闭不使用的游标,或减少同时打开的游标数目。

# YAS-05245

Message:The raise statement without an exception must be set in exception handler

Action:SQL语句为"raise;" 抛出的异常必须要有异常模块处理。

# YAS-05246

Message:invalid %s%%%s

Action:不合法的%type或%rowtype使用语法,请检查语句。

# YAS-05247

Message:the value cursor return mismatch the value sql return

Action:游标返回的record成员数目和游标绑定的SQL语句投影数目不相等,请检查使用语句。

# YAS-05248

Message:explicit cursor cannot assign or be assigned

Action:隐式游标不能被赋值或赋值给别的对象。

# YAS-05249

Message:cursor already open

Action:游标已经是打开状态,不要重复open。

# YAS-05250

Message:%s does not exist

Action:检查绑定参数是否存在。

# YAS-05252

Message:a variable declare not null must have an not null initialization assignment

Action:一个申明为非空的变量必须赋初值,并且该初值不能是null。

# YAS-05253

Message:invalid system variable for cursor

Action:游标使用了非法系统值。

# YAS-05254

Message:cursor not open

Action:游标未open不能使用。

# YAS-05255

Message:invalid EXIT/CONTINUE statement, it must appear inside a loop

Action:使用的EXIT/CONTINUE语法不正确,必须在loop内使用。

# YAS-05256

Message:invalid EXIT/CONTINUE label %s

Action:检查EXIT/CONTINUE label是否与其他label同名或位于非法line之上。

# YAS-05257

Message:invalid END LOOP label %s, it must match the loop

Action:检查end loop后面的label名是否匹配正确的loop。

# YAS-05258

Message:invalid user define type value %s

Action:user define type出现在非法位置,user define type不能用于比较,oprator操作等。

# YAS-05259

Message:cursor argument mismatch

Action:请检查游标参数是否匹配。

# YAS-05260

Message:invalid record member type %s

Action:record type的定义里面不能有游标类型的成员。

# YAS-05261

Message:alias required in select list of cursor to avoid duplicate column

Action:定义游标的列表中有重名列,如果有重名列,请定义别名。

# YAS-05262

Message:missing or invalid trigger name

Action:根据命名规范重新定义触发器名称。

# YAS-05263

Message:WHEN clause cannot be used with table level triggers

Action:移除WHEN子句或将触发器定义为行级。

# YAS-05264

Message:trigger description too long, move comments into triggering code

Action:缩短触发器的定义描述。如果有注释,可以放到触发器的动作里。

# YAS-05265

Message:NEW or OLD references not allowed in table level triggers

Action:移除NEW或OLD引用或将触发器定义为行级。

# YAS-05266

Message:invalid NEW or OLD specification %s

Action:使用正确的NEW或OLD相关性名称。

# YAS-05267

Message:cannot %s in a trigger

Action:重写触发器,不包含commit、rollback、savepoint。

# YAS-05268

Message:invalid system variable for cursor default

Action:检查游标参数,默认值使用了不允许的系统变量。

# YAS-05269

Message:trigger compiling errors:

Action:根据具体信息修复错误。

# YAS-05270

Message:cannot specify this column in UPDATE OF clause

Action:移除UPDATE OF中不支持的LOB列。

# YAS-05271

Message:job is running

Action:等待当前JOB执行完成或用DBMS_SCHEDULER.STOP_JOB接口停止JOB后再重新运行命令。

# YAS-05272

Message:invalid attribute name %s

Action:使用正确的JOB属性名称。

# YAS-05273

Message:invalid value %s for attribute %s

Action:使用有效的JOB属性值。

# YAS-05274

Message:invalid job type %s

Action:使用正确的JOB类型。

# YAS-05275

Message:too many package children

Action:自定义高级包内变量、类型、子过程体等成员个数不能超过最大值1024,请减少自定义高级包中定义的成员的个数。

# YAS-05276

Message:package head definition invalid or conflict

Action:请检查package头部定义语法。

# YAS-05277

Message:declaration cannot after sub program

Action:定义需要在子过程体之前。

# YAS-05278

Message:cannot compile body without its specification

Action:package body必须先定义才能编译。

# YAS-05279

Message:package head cannot have initialize section

Action:package head中不能有初始化。

# YAS-05280

Message:conflict item "%s" between head and body

Action:package head和body中不能有冲突定义。

# YAS-05281

Message:invalid stored-object variable

Action:非法的存储过程变量。

# YAS-05282

Message:package %s compiling "%s" errors:

Action:根据提示检查subprogram或body存储编译错误。

# YAS-05283

Message:invalid package cursor variable "%s" declared

Action:不要在package里面定义游标变量。

# YAS-05284

Message:cannot find sub program "%s" in body

Action:在body中找不到该子过程体。

# YAS-05285

Message:cannot reference "%s" in package

Action:仅支持[schema.][package.]subprogram_name,检查使用语法。

# YAS-05286

Message:illegal conversion

Action:依据数据类型转换,修改赋值语句。

# YAS-05287

Message:cannot change the value of an OLD reference variable

Action:移除对OLD变量值的修改。

# YAS-05288

Message:cannot change NEW values for this trigger type

Action:更改触发器类型或移除对NEW变量值的修改。

# YAS-05289

Message:invalid trigger specification

Action:将创建触发器的语法修改正确。

# YAS-05290

Message:duplicate item "%s" in package

Action:在package里面不能有重名的元素。

# YAS-05291

Message:invalid external java procedure dataType %s

Action:使用udf java, 在创建procedure或function时使用了不支持的数据类型。

# YAS-05292

Message:invalid external java procedure signature %s

Action:定义支持java的存储过程中name语法申明的函数签名非法。

# YAS-05293

Message:JNI create java VM error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05294

Message:java lib %s is non-existent

Action:使用udf java指定的lib路径未使用loadjava加载,请先使用loadjava加载。

# YAS-05295

Message:java method %s is non-existent

Action:java函数不存在,请使用正确的函数。

# YAS-05296

Message:JNI destroy java VM error

Action:内部错误,请联系我们的技术支持解决。

# YAS-05297

Message:java VM failed to attach current thread

Action:内部错误,请联系我们的技术支持解决。

# YAS-05298

Message:java VM load class %s error

Action:检查使用的class是否已经加载,或为内部错误,请联系我们的技术支持解决。

# YAS-05299

Message:Java call terminated by uncaught Java exception:

Action:捕获的java异常,具体见异常打印。

# YAS-05300

Message:%s is already loaded, unload class first before reload it

Action:不能重复load相同的class文件或jar包,如果有需要,先调用dropjava卸载,再重新load。

# YAS-05301

Message:%s, argument cannot be null

Action:调用loadjava和dropjava的参数必须为非空字符串。

# YAS-05302

Message:invalid dropjava %s, not loaded

Action:不能调用DBMS_STANDARD.dropjava卸载一个未加载过的class文件或jar包。

# YAS-05303

Message:invalid lib path, length should be more than 0, no more than %d

Action:调用loadjava和dropjava的参数class或jar包路径必须小于规定的最大值。

# YAS-05304

Message:java run environmemt is not found, install first before using

Action:用户环境未按照JDK环境,请先按照java运行环境才能支持外置udf java。

# YAS-05305

Message:load class or jar exceeding %d at same time

Action:同时load的class或jar包超过64,请先unload部分再load。

# YAS-05306

Message:invalid java lib path %s

Action:设置正确的java库路径。

# YAS-05307

Message:pragma SERIALLY_REUSABLE must be declared in package specification and body

Action:head和body中必须同时定义SERIALLY_REUSABLE属性。

# YAS-05308

Message:invalid package %s "%s"

Action:body失效,请尝试重新创建body。

# YAS-05309

Message:cursor expected when using cursor attribute

Action:使用游标属性必须是游标变量,请检查输入语句。

# YAS-05310

Message:package type definition has been dropped or altered

Action:package type 定义被删除或被修改,请重新执行SQL语句。

# YAS-05311

Message:job has an invalid END_DATE

Action:job的END_DATE是无效的(可能已过期),请先设置END_DATE再重新执行SQL语句。

# YAS-05312

Message:maximum number of open cursor references is %d

Action:指向相同游标引用过多,请检查使用语句。

# YAS-05313

Message:failed to re-enable "%s"."%s" after making requested change

Action:根据提示信息修改job的属性为有效值,然后使能。

# YAS-05314

Message:package %s compiling "%s" errors:

Action:根据提示信息,输入合法的package语句,重新执行。

# YAS-05315

Message:cursor with return cannot open dynamic sql

Action:显式定义返回值的游标变量无法用于打开动态SQL,请变更用于打开该语句的游标变量。

# YAS-05316

Message:out, in out not allowed when open dynamic sql for cursor

Action:请根据提示信息修改using子句中不符合限制的参数方向。

# YAS-05317

Message:target of open must be a query

Action:open语句的类型无效,请勿在open行中打开非查询语句。

# YAS-05318

Message:CALL Specification parameters cannot have default

Action:外置UDF不支持default表达式,请删除default表达式后重试。

# YAS-05319

Message:invalid create ddl type

Action:create DDL 类型不合法,请输入合法的类型。

# YAS-05320

Message:init JVM error: Initial heap size set to a larger value than the maximum heap size

Action:配置参数JVM_XMS需要比JVM_XMX小,请重置配置。

# YAS-05321

Message:"malformed or corrupted wrapped unit"

Action:内部错误,请联系我们的技术支持解决。

# YAS-05322

Message:invalid class name, length should be less than %d

Action:创建外置UDF时class name长度需小于规定的最大值。

# YAS-05323

Message:a variable declare constant must have an initialization assignment

Action:请初始化定义的常量。

# YAS-05324

Message:cursor cannot use constant variable

Action:请勿对游标使用常量。

# YAS-05325

Message:duplicate method name "%s"

Action:自定义类型中包含了同名方法。

# YAS-05326

Message:cannot drop or replace a type with type or table dependents

Action:尝试删除的类型中包含了类型或表依赖。

# YAS-05327

Message:subprogram "%s" is declared in an object type body and must be defined in the object type specification

Action:在OBJECT类型body中定义的方法必须在head部分声明。

# YAS-05328

Message:missing or invalid object type name

Action:定义了非法的OBJECT类型名。

# YAS-05329

Message:no attributes found in object type "%s"

Action:访问了一个不存在的OBJECT成员。

# YAS-05330

Message:attribute or method by name "%s" does not exist

Action:访问了一个无效的OBJECT成员变量或方法名。

# YAS-05331

Message:must specify either CASCADE or INVALIDATE option

Action:缺少CASCADE或INVALIDATE关键字。

# YAS-05332

Message:object "%s" is invalid

Action:访问了一个非法的OBJECT类型。

# YAS-05333

Message:attempting to create a subtype UNDER a FINAL type

Action:请勿继承一个声明为FINAL的OBJECT类型对象。

# YAS-05334

Message:not executed, %s "%s" does not exist

Action:使用了一个仅有声明的对象。

# YAS-05335

Message:only constructor method name can match type name

Action:非构造方法的内置方法不允许与自身类型名相同。

# YAS-05336

Message:identifier "%s" must be declared

Action:访问了未声明的成员。

# YAS-05337

Message:constructor method name must match type name

Action:OBJECT类型的构造方法必须与本身类型名相同。

# YAS-05338

Message:could not find program unit being called "%s"

Action:创建对应名字的方法。

# YAS-05339

Message:cannot replace a type with table dependents

Action:先删除使用了TYPE的表,再执行操作。

# YAS-05340

Message:cannot ORDER objects without MAP or ORDER method

Action:给OBJECT类型定义MAP或ORDER方法。

# YAS-05341

Message:varray limit require a positive constant input

Action:给VARRAY类型的limit子句传入一个大于零的数。

# YAS-05342

Message:The number of initializations for varray exceeds the limit

Action:减少VARRAY构造函数的参数,不要超过VARRAY的limit。

# YAS-05343

Message:varray member function %s is not allowed here

Action:使用有返回值的函数。

# YAS-05344

Message:varray index %s

Action:使用VARRAY有效索引值。

# YAS-05345

Message:Reference to uninitialized %s

Action:使用OBJECT前先通过构造函数初始化。

# YAS-05346

Message:varray extend invalid, %s

Action:根据信息调整EXTEND方法的参数。

# YAS-05347

Message:varray trim invalid, %s

Action:根据信息调整TRIM方法的参数。

# YAS-05348

Message:varray assign invalid

Action:使用有效的VARRAY值进行赋值。

# YAS-05349

Message:MAP or ORDER method must be defined in the root of the subtype hierarch

Action:在ROOT类型中定义MAP或ORDER方法。

# YAS-05350

Message:MAP methods must return a scalar type

Action:修改MAP方法返回一个标量类型。

# YAS-05351

Message:ORDER methods must be declared with 1 (one) parameter in addition to (optional) SELF

Action:修改ORDER方法让在SELF参数外只有一个参数。

# YAS-05352

Message:ORDER methods must return an INTEGER

Action:修改ORDER方法返回一个INTEGER类型。

# YAS-05353

Message:The parameter type in an ORDER method must be the containing object type

Action:修改ORDER方法SELF参数的类型只能是当前的OBJECT类型。

# YAS-05354

Message:not an OBJECT type

Action:创建与BODY同名的OBJECT类型或给OBJECT类型创建BODY。

# YAS-05355

Message:MAP methods must be declared without any parameters other than (optional) SELF

Action:修改MAP方法让只有SELF参数。

# YAS-05356

Message:An object type may have only 1 MAP or 1 ORDER method

Action:删除MAP或ORDER方法至只有一个。

# YAS-05357

Message:subprogram or cursor "%s" is declared in an object type specification and must be defined in the object type body

Action:在TYPE BODY中实现OBJECT的全部方法。

# YAS-05358

Message:the SELF parameter can be declared only as IN or as IN OUT

Action:修改SELF变量为IN或IN OUT。

# YAS-05359

Message:expression is of wrong type

Action:修改SELF变量的类型为当前定义的类型。

# YAS-05360

Message:supertype must be an object type

Action:创建对应的OBJECT类型作为超类型或在OBJECT类型下创建子类型。

# YAS-05361

Message:cannot insert NULL object into object tables or nested tables

Action:插入一个非空值。

# YAS-05362

Message:invalid constructor

Action:输入有效的VARRAY构造函数。

# YAS-05363

Message:maximum number of %s is %d

Action:减少属性或方法的个数。

# YAS-05364

Message:modifier "%s" conflicts with prior "%s" specification

Action:删除冲突定义中的一个。

# YAS-05365

Message:duplicate modifier specification "%s"

Action:删除重复的定义。

# YAS-05366

Message:type with NOT INSTANTIABLE methods must be declared NOT INSTANTIABLE

Action:定义OBJECT为NOT INSTANTIABLE或删除NOT INSTANTIABLE方法。

# YAS-05367

Message:creating a FINAL NOT INSTANTIABLE type

Action:删除FINAL或NOT INSTANTIABLE关键字其中一个。

# YAS-05368

Message:a static method cannot declare a parameter named SELF

Action:删除static方法中的SELF参数。

# YAS-05369

Message:default value of parameter "%s" in body must match that of spec

Action:修改BODY中参数的default值与OBJECT声明一致。

# YAS-05370

Message:The parameters to an %s function must have %s mode

Action:修改ORDER方法的参数为IN或IN OUT。

# YAS-05371

Message:SELF parameter of constructor method must be IN OUT

Action:修改自定义构造函数的SELF参数为IN OUT。

# YAS-05372

Message:RETURN statement in a CONSTRUCTOR cannot include an expression

Action:删除自定义构造函数的RETURN子句。

# YAS-05373

Message:method dispatch on NULL SELF argument is disallowed

Action:调用OBJECT方法时SELF参数给一个非空值。

# YAS-05374

Message:cannot create VARRAY column with embedded LOB

Action:删除包含LOB的VARRAY类型。

# YAS-05375

Message:type "%s" is malformed because it is a non-REF mutually recursive type

Action:删除对当前类型的递归引用。

# YAS-05376

Message:expression datatype does not match varray member type

Action:修改VARRAY构造函数入参符合VARRAY成员定义。

# YAS-05377

Message:"%s" formed a non-REF mutually-dependent cycle

Action:移除对循环类型的使用。

# YAS-05378

Message:PL/SQL internal error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05379

Message:explicit cursor expected

Action:for循环in后面使用游标(非隐式),必须是显式游标。

# YAS-05380

Message:invalid alter compiler parameters clause "%s" error %s

Action:根据提示修改无效的配置参数。

# YAS-05381

Message:duplicate alter compiler parameters clause "%s"

Action:删除重复的编译选项。

# YAS-05382

Message:invalid value %d for parameter plsql_optimize_level, must be from among 0, 1, 2, 3

Action:输入合法的PL优化级别0,1,2,3。

# YAS-05383

Message:duplicate setting for PL/SQL compiler parameter plsql_debug

Action:删除重复的DEBUG选项。

# YAS-05384

Message:Invalid value for parameter plscope_settings. Value must be from among 'IDENTIFIERS:[ALL|NONE|PLSQL|SQL|PUBLIC], STATEMENTS:[ALL|NONE]'.

Action:输入合法的PLSCOPE_SETTINGS编译选项。

# YAS-05385

Message:invalid parameter for plsql_ccflags

Action:输入合法的PLSQL_CCFLAGS编译选项。

# YAS-05386

Message:invalid parameter for plsql warnings flag

Action:输入合法的PLSQL_WARNINGS编译选项。

# YAS-05387

Message:invalid value %s for parameter nls_length_semantics, must be from among BYTE, CHAR

Action:输入合法的NLS_LENGTH_SEMANTICS选项。

# YAS-05388

Message:invalid value %s for parameter plsql_debug, must be from among TRUE, FALSE

Action:输入合法的PLSQL_DEBUG选项。

# YAS-05389

Message:invalid value %s for parameter plsql_code_type, must be from among INTERPRETED, NATIVE

Action:输入合法的PLSQL_CODE_TYPE选项。

# YAS-05390

Message:invalid col_stat_type "%s": must be ALL | HISTOGRAM

Action:请传入ALL或HISTOGRAM。

# YAS-05391

Message:incorrect placement of %s clause

Action:删除对应的子句。

# YAS-05392

Message:supertypes's AUTHID is different from subtype's AUTHID

Action:使用超类型的AUTHID创建子类型或删除子类型中的AUTHID子句。

# YAS-05393

Message:invalid input values for preference name

Action:请检查输入的统计信息选项名称是否正确。

# YAS-05394

Message:invalid input values for preference value

Action:请检查输入的统计信息选项值是否符合规范。

# YAS-05395

Message:illegal varray constructor, %s

Action:请检查使用的VARRAY构造函数是否合法。

# YAS-05396

Message:cannot access this function return

Action:请检查函数返回值是否允许直接访问。

# YAS-05397

Message:datatype mismatch, VARRAY required

Action:请检查输入参数是否为VARRAY类型值。

# YAS-05398

Message:invalid procedure %s

Action:请检查调用过程体是否合法。

# YAS-05399

Message:cannot access rows from a non-nested table item

Action:修改TABLE函数的参数为嵌套表类型。

# YAS-05401

Message:cannot start %s database in %s mode

Action:请检查CLUSTER_DATABASE配置参数是否合理。

# YAS-05402

Message:global lock serivce request lock timeout, lockId %lu-%u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05403

Message:%s is an unknown parameter

Action:请检查配置文件中参数名称是否合法。

# YAS-05404

Message:illegal value of parameter %s

Action:请检查配置文件中参数值是否合法。

# YAS-05405

Message:cannot fetch redo pack of instance %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-05406

Message:invalid message type %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05407

Message:gcs latch remote wait timeout, blockId %u-%u-%u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05408

Message:failed to get dht rule

Action:内部错误,请联系我们的技术支持解决。

# YAS-05410

Message:the interval broadcast is not complete

Action:内部错误,请联系我们的技术支持解决。

# YAS-05411

Message:failed to attach master resource, type: %s, id: %lu

Action:内部错误,请联系我们的技术支持解决。

# YAS-05412

Message:cannot find master resource, type: %s, id: %lu

Action:内部错误,请联系我们的技术支持解决。

# YAS-05413

Message:invalid deposit transaction %u-%u-%u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05414

Message:the version of grc recover message is %lu, but now topo version is %lu

Action:内部错误,请联系我们的技术支持解决。

# YAS-05415

Message:grc recover is working, try again later

Action:内部错误,请联系我们的技术支持解决。

# YAS-05416

Message:axc internal error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05417

Message:grc dht version %u does not match with recover version %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05418

Message:topo version mismatch

Action:内部错误,请联系我们的技术支持解决。

# YAS-05419

Message:reform status mismatch

Action:内部错误,请联系我们的技术支持解决。

# YAS-05421

Message:invalid cluster message size %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05422

Message:database must be mounted in this instance and not mounted in other instance

Action:集群开启归档必须保证当前节点在MOUNTED模式下,且其他节点在NOMOUNT模式或关闭状态下。

# YAS-05423

Message: invalid instance id %u in cluster

Action: 无效实例ID,请检查共享集群数据库的实例数和实际部署的实例数是否相符。

# YAS-05424

Message: instance join timeout

Action: 加入集群超时,请检查最先启动的实例是否处于open状态。

# YAS-05425

Message: instance %u has exited the cluster

Action: 该实例异常退出了集群,查看该实例的告警日志、运行日志以及操作系统日志明确该实例异常退出的原因。

# YAS-05426

Message: the cluster is undergoing reform

Action: 当前集群正在执行节点重组,等待该操作完成后重新尝试。

# YAS-05427

Message: instance %u must be opened

Action: 当前操作必现要求实例处于open状态,启动该实例并open后重新尝试该操作。

# YAS-05428

Message: instance cannot be mounted when switchover

Action: 等待switchover完成之后再open该实例。

# YAS-05429

Message: temporary tablespaces ddl is forbidden during recovery

Action: 当前集群正在执行故障恢复,请等待恢复完成之后再尝试执行该操作。

# YAS-05451

Message:failed to create cluster message cell

Action:内部错误,请联系我们的技术支持解决。

# YAS-05452

Message:get cluster message timeout

Action:内部错误,请联系我们的技术支持解决。

# YAS-05453

Message:send cluster message failed

Action:内部错误,请联系我们的技术支持解决。

# YAS-05501

Message: YFS instance is not OPEN

Action:YFS实例状态还未就绪,暂无需处理,待YFS实例启动成功后错误即可消失。

# YAS-05502

Message: YFS master does not ready for standby joining

Action:YFS实例暂未准备好接受备机的加入,请重试。

# YAS-05503

Message:dump backtrace timeout

Action 请检查打印堆栈会话所属机器后重试。

# YAS-05512

Message: device %s is not open

Action:设备未打开,请联系我们的技术支持解决。

# YAS-05513

Message: failed to open device %s, error message %s

Action:打开设备失败,请确认设备路径、权限是否正确。

# YAS-05514

Message: %s is an invalid %s name: %s

Action:请确认diskgroup/硬盘/目录/文件名称是否正确。

# YAS-05515

Message: the maximum number of diskgroup files is %lu

Action:请确认文件数量符合YFS规格。

# YAS-05517

Message: duplicate directory name %s

Action:重复的目录名称,请确认目录名称是否正确。

# YAS-05518

Message: the directory %s is not empty

Action:该目录非空,不能执行操作。

# YAS-05519

Message: illegal connection

Action:不合法的连接请求。

# YAS-05520

Message:the specified size is invalid, %s

Action: 请求参数不合法,请输入正确的请求参数。

# YAS-05521

Message: file/directory %s aleardy exist

Action:文件或目录已经存在,请不要重复创建。

# YAS-05522

Message: file/directory %s does not exist

Action:访问前请确认文件或目录是否已存在

# YAS-05523

Message: too many YFS sessions

Action:客户端连接过多,请减少连接数或联系我们技术支持解决。

# YAS-05524

Message: the count of sub directory and file except %u but real %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05525

Message: "maximum size of YFS file is %"lu"

Action:文件太大,超过最大限制。

# YAS-05526

Message: invalid YFS home: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05527

Message: IO buffer of YFS must be aligned with %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05528

Message:duplicate diskgroup name %s

Action:diskgroup 名称重复,请更换名字。

# YAS-05529

Message:cann't rename file/dir cross diskgroups

Action:不能在不同diskgroup间执行mv操作。

# YAS-05530

Message:no free space in diskgroup %s

Action:当前diskgroup内磁盘空间不足,请添加磁盘。

# YAS-05531

Message:YFS disk block is corrupted, diskgroup: %s, disk: %s, block type: %u, block id: %lu

Action:内部错误,请联系我们的技术支持解决。

# YAS-05532

Message:YFS file block is corrupted, diskgroup: %s, fd: %u, block type: %u, block id: %lu

Action:内部错误,请联系我们的技术支持解决。

# YAS-05533

Message:invalid YFS boot disk

Action:YFS启动盘无效,请配置正确的启动盘。

# YAS-05534

Message:unsupport operation: %s

Action:不支持的操作命令。

# YAS-05535

Message:the minimum size of disk is %lu

Action:磁盘空间不满最最小要求,请使用更大的磁盘。

# YAS-05536

Message:invalid YFS parameter name %s

Action:配置参数错误,请配置正确的配置参数。

# YAS-05537

Message:diskgroup %s is not empty

Action:diskgroup上有数据,不能删除。

# YAS-05538

Message:diskgroup %s is offline

Action:diskgroup 离线,不能执行操作。

# YAS-05539

Message:diskgroup %s is unmounted

Action: diskgroup没有加载,不能执行操作。

# YAS-05540

Message:diskgroup %s does not exist

Action: diskgroup不存在,请使用正确的diskgroup。

# YAS-05541

Message:the value of YFS parameter %s is invalid

Action: 配置参数的值错误,请正确配置。

# YAS-05542

Message:diskgroup %s is already mounted

Action:diskgroup已经挂载,请勿重复挂载。

# YAS-05543

Message:duplicate failgroup name %s

Action:failgroup名称重复,请换一个failgroup名字.

# YAS-05544

Message:duplicate disk name %s

Action: 磁盘名称重复,请换一个磁盘名称或使用系统默认名称。

# YAS-05545

Message:disk '%s' is already used

Action:当前磁盘已经备使用,请勿将一块磁盘挂载到不同的diskgroup。

# YAS-05546

Message:the minimum count of failgroup is %u for diskgroup redundancy

Action: diskgroup内failgroup个数与其冗余度不匹配。请配置足够个数的failgroup。

# YAS-05547

Message:the maximum length of YFS name is %u

Action:YFS文件路径名称太长,请配置合适的路径长度。

# YAS-05548

Message:the maxnumim number of %s in %s is %u

Action: 请确认YFS磁盘、故障组和磁盘组数量符合YFS的规格。

# YAS-05549

Message:failgroups in diskgroup %s have different number of disks

Action: 在同一diskgroup内,不同failgroup内磁盘个数不一致,请配置个数一致的磁盘。

# YAS-05550

Message:the size of disk %s must be equal to or less than its actual size

Action: 非法的size参数,size应小于等于磁盘的实际大小,如不指定size参数,YFS会使用整块磁盘的空间。

# YAS-05551

Message:read or wirte offset exceeds the file size

Action: 读写超出文件尾部,请先 extend 文件。

# YAS-05552

Message:can't allocate %lu bytes from shared memory pool

Action: 共享内存不足,配置更大的 YFS_SHM_POOL_SIZE。

# YAS-05553

Message:this is a yfs fault point, id: %u

Action: 触发内部故障点,请联系我们的技术支持解决。

# YAS-05554

Message:disk %s has already been formatted by YFS, specify 'FORCE' option to reuse

Action: 磁盘已被添加至 yfs,不能被重复添加,可通过 'FORCE' 强制添加至 yfs。

# YAS-05555

Message:YFS is not initialized by current instance

Action: 内部错误,请联系我们的技术支持解决。

# YAS-05556

Message:the value of parameter %s is invalid, %s

Action: 故障点参数错误,请联系我们的技术支持解决。

# YAS-05557

Message:invalid remote var: %s

Action: 非法的远程变量,请检查变量名称。

# YAS-05558

Message:bad fault_point: %s

Action: 非法故障点,请联系我们的技术支持解决。

# YAS-05559

Message:can't get %s size: %s

Action: 无法获取磁盘大小,请根据错误码处理。

# YAS-05560

Message:bad attribute: %s, %s

Action: 非法属性,请参考文档设置属性。

# YAS-05561

Message:invalid YFS file identify:%u

Action: 无效的YFS文件标识,请联系我们的技术支持解决。

# YAS-05562

Message:invalid YFS diskgroup id:%u

Action: 无效的YFS diskgroup编号,请联系我们的技术支持解决。

# YAS-05563

Message:unsupported disk: %s

Action: 不支持的磁盘,请确保磁盘满足YFS指定的磁盘规格。

# YAS-05564

Message:YFS is already closed

Action: YFS已经关闭。

# YAS-05565

Message:unsuitable param value, the value of %s must be greater than or equal to %s

Action: 参数设置不合适,一个参数必须大于等于另一个参数

# YAS-05566

Message:arg too long, max length is %u: %s

Action:输入参数太长,超出上限,请检查调用参数。

# YAS-05567

Message:parser stack overflow, try to push %lu bytes

Action:parser栈空间不足,请增大PARSER_STACK_SIZE配置。

# YAS-05568

Message:current YFS session has been killed or canceled

Action:连接已断开,尝试重新连接。

# YAS-05569

Message:YFS shm pool insufficient, expecting=%lu, SHM_POOL_SIZE=%lu

Action:YFS共享内存池已达上限,请增大 SHM_POOL_SIZE。

# YAS-05570

Message:YFS sys area insufficient, expecting=%lu, SYS_AREA_SIZE=%lu

Action:YFS sys area 已达上限,请增大 SYS_AREA_SIZE。

# YAS-05571

Message:file verify failed: dgid=%u, fd=%d, offset=%lu, len=%u

Action: YFS文件校验失败,所有数据副本损坏,请确认存储设备是否正常,并尝试从备份恢复数据。

# YAS-05572

Message:cannot dismount or drop diskgroup %s when file is being used

Action: diskgroup 中有文件未关闭,无法继续操作,请关闭该 diskgroup 中打开的文件,或使用 FORCE 强制执行。

# YAS-05573

Message:the size of disk %s is not equal to the size of other disks in the current diskgroup

Action: 向diskgroup添加大小不符合预期的磁盘,YFS要求同一diskgroup的所有磁盘大小一致,请选择适当大小的磁盘重试。

# YAS-05574

Message:ycr/voting disk detected: %s, you cannot use it as YFS data disk

Action: 请勿使用YCR或voting disk作为YFS数据盘,如确定使用它们作为数据盘,请确保没有YCS服务使用它们,指定FORCE强制执行。

# YAS-05575

Message:YFS is processing request message, please retry a later

Action:YFS正在处理消息,请稍后重试

# YAS-05576

Message:"cannot allocate %lu bytes from %s for %s"

Action: YFS申请内存失败。

  • 若是从operating system申请,请查看操作系统内存是否满足系统要求。
  • 若是从YFS system area申请内存,请检查配置参数SYS_AREA_SIZE是否满足需求。
  • 若是从YFS share memory pool,请检查配置参数SHM_POOL_SIZE是否满足需求

# YAS-05701

Message:invalid ycs command, reason: %s

Action:请输入正确的YCS命令选项。

# YAS-05702

Message:failed to join ycs, reason: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05703

Message:ycs protocol error

Action:请检查软件版本是否匹配,或联系我们的技术支持解决。

# YAS-05704

Message:invalid cluster term

Action:内部错误,请联系我们的技术支持解决。

# YAS-05705

Message:ycs throw an exception, id:%d, msg:%s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05706

Message:ycs communication timeout

Action:请检查部署环境的网络,检查连接信息或联系我们的技术支持解决。

# YAS-05707

Message:ycs resource %d not open, cannot process inter message

Action:确保YCS资源状态open后重试该操作。

# YAS-05708

Message:failed to establish send channel, reason: node %d not ready

Action:请检查目的端已经启动。

# YAS-05709

Message:failed to send heartbeat to node %d

Action:请检查部署环境的网络,检查连接信息或联系我们的技术支持解决。

# YAS-05710

Message:ycs connection error, %s

Action:请检查部署环境的网络或版本是否匹配,检查连接信息或联系我们的技术支持解决。

# YAS-05711

Message:cluster %s exists, please try with overwrite option

Action:请使用ycr show config命令查看是否已经存在集群,如果想要覆盖此集群,请在创建集群时加上-O选项。

# YAS-05712

Message:create cluster failed, reason: %s

Action:请根据提示排查创建集群失败的原因,如果还没有解决,联系我们的技术支持解决。

# YAS-05713

Message:add node failed, reason: %s

Action:请根据提示排查创建节点失败的原因,如果还没有解决,联系我们的技术支持解决。

# YAS-05714

Message:config resource failed, reason: %s

Action:请根据提示排查创建资源失败的原因,如果还没有解决,联系我们的技术支持解决。

# YAS-05715

Message:ycr disk is not initialized, please execute create cluster command to initialize ycr disk

Action:集群不存在,请先创建集群。

# YAS-05716

Message:hostname %s not found in ycr

Action:请使用ycr show config命令查看node名字,与hostnamectl命令显示的服务器名是否一致,确保两者的名字是一致的。

# YAS-05717

Message:failed to add yasdb instance, reason: %s

Action:请根据提示排查创建实例失败的原因,如果仍然无法解决,联系我们的技术支持解决。

# YAS-05718

Message:the number of db instances under node %s has reached the maximum limit

Action:当前节点下DB实例的数量已达到上限,请联系我们的技术支持解决。

# YAS-05719

Message:failed to remove db instance, node name :%s, db instance name: %s, reason: %s

Action:请根据提示排查移除db实例失败的原因,如果仍然无法解决,联系我们的技术支持解决。

# YAS-05720

Message:checksum error, disk damage

Action:请联系我们的技术支持解决。

# YAS-05721

Message:invalid input parameter, reason: %s

Action:名称类的参数要求长度在4~64之间,字母开头,支持数字和下划线,脚本名称类参数求长度在4~64之间,字母开头,支持数字和下划线,必须有扩展名,支持sh和bat两种类型的脚本。

# YAS-05722

Message:failed to do regular expression match, reason: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-05723

Message:failed to remove node, reason: %s

Action:请根据提示排查移除节点失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05724

Message:failed to load disk, reason: %s

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05725

Message:failed to check ycs profile, reason: %s

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05726

Message:ycs shell: %s not exist

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05727

Message:ycs profile has duplicate parameter: %s

Action:请根据提示排查YCS配置文件是否存在重复的配置项,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05728

Message:failed to join ycs, reason: %s

Action:请根据提示排查db实例加入YCS失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05729

Message:the value of YCS parameter %s must be between % PRIu64 and % PRIu64

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05730

Message:ycs tool shake hand error, more than max times at a moment: %d

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05731

Message:ycs tool get lock timeout: %d s, failed to change node state

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05732

Message:ycs tool failed to set parameter: %s, reason: %s

Action:请根据提示排查设置参数是否合理,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05733

Message:ycs tool failed to get parameter: %s

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05734

Message:the value of parameter %s is invalid, %s

Action:请根据提示排查失败的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05735

Message:ycs file '%s' does not exist

Action:请根据提示排查文件缺失的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05736

Message:ycs invalid environment variable 'YASCS_HOME': %s, reason: %s

Action:无效的环境变量"YASCS_HOME",请重新设置正确的环境变量。

# YAS-05737

Message:ycs resource id: %d start time out

Action:请排查相关资源启动脚本是否正确,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05738

Message:ycs yasfs start error, reason: %s

Action:请根据提示排查YFS无法启动的原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05739

Message:ycs ack message is too late, room id is %u

Action:回应消息失效,请重新尝试。

# YAS-05740

Message:ycs init %s log failed

Action:初始化日志失败,请根据提示排查失败原因。

# YAS-05741

Message:ycs cancel waiting ack, room id is %u

Action:取消等待消息响应,当前节点正在停止。

# YAS-05742

Message:this is a ycs fault point, id: %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-05743

Message:failed to access disk, reason: %s

Action:访问磁盘失败,请根据提示排除故障。

# YAS-05744

Message:voting disk is not initialized

Action:投票盘未初始化,请联系我们的技术支持解决。

# YAS-05745

Message:ycs stop node timeout %u s

Action:等待YCS进程终止超时,请检查节点进程状态。

# YAS-05746

Message:ycs set ycr lock fail, reason: %s

Action:读写YCR lock失败,请联系我们的技术支持解决。

# YAS-05747

Message:ycr is running

Action:YCR正在执行,请稍后重试。

# YAS-05748

Message:ycs cluster manager startup timeout

Action:集群管理软件启动超时,请联系我们的技术支持解决。

# YAS-05749

Message:ycr cluster nodemap mismatch node block

Action:集群注册信息出错,请联系我们的技术支持解决。

# YAS-05750

Message:ycs db is not switchable

Action:集群当前禁止数据库实例进行主备切换,以避免在途IO写坏磁盘。

# YAS-05751

Message:ycs %u is offline

Action:YCS节点已下线,请确认集群状态是否异常或故障是否恢复。

# YAS-05752

Message:ycsctl set ycr config failed, reason: %s

Action:工具配置YCR失败,请根据提示排查原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05753

Message:ycsctl import ycr config failed, reason: %s

Action:工具导入YCR配置失败,请根据提示排查原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05754

Message:ycsctl export ycr config failed, reason: %s

Action:工具导出YCR配置失败,请根据提示排查原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05755

Message:ycs is busy(%s), please try again later

Action:YCS正在启停资源,请等待后重试。

# YAS-05756

Message:ycs failed to %s %s, reason: %s

Action:YCS启动或停止资源失败,请根据提示排查原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-05757

Message:maybe master is changed, this node is not master, master is: %d

Action:该服务器可能发生过故障,已经不是主服务器,请手动停止YCS再启动。

# YAS-05758

Message:received msg id(%lu) mismatch with waiting id(%lu)

Action:YCS收取到消息序列号不匹配的回复,是内部可容忍的通信异常。

# YAS-05759

Message:yasdb disk write conflict

Action:yasdb磁盘IO冲突,请联系我们的技术支持解决。

# YAS-05760

Message:ycs monitor start ycs failed, reason: %s

Action:YCS的监控启动YCS失败,请根据提示排查原因,如果仍然无法解决,请联系我们的技术支持解决。

# YAS-06001

Message:the value of parameter %s is invalid, %s

Action:输入的参数无效,请按照提示信息输入有效参数。

# YAS-06003

Message:the barrier between %s and %s is corrupted

Action:内部错误,请联系我们的技术支持解决。

# YAS-06004

Message:maximum number of sessions exceeded

Action:(1)资源允许前提下调大MAX_SESSIONS;(2)等待其他客户端断开后再次尝试连接数据库;(3)可通过V$SESSION视图查询SESSION信息。

# YAS-06005

Message:instance is not initialized

Action:数据库异常,请检查数据库状态。

# YAS-06006

Message:instance has been started by another process

Action:先关闭数据库再重新启动或连接已启动的数据库。

# YAS-06007

Message:missing or invalid session ID

Action:错误的会话ID,请查询V$SESSION视图检查ID是否正确。

# YAS-06008

Message:failed to shutdown: %s

Action:根据提示信息解决错误后重新执行。

# YAS-06009

Message:invalid path: %s, reason: %s

Action:根据提示信息修改正确路径后重新执行。

# YAS-06010

Message:the database is not in readwrite mode

Action:在主节点执行该语句。

# YAS-06011

Message:the database is not in readonly mode

Action:在备节点执行该语句。

# YAS-06012

Message:user session does not exist

Action:退出并重新连接服务器。

# YAS-06013

Message:too many sql handlers

Action:请关闭无用连接或调整MAX_SESSIONS配置参数后重新执行。

# YAS-06014

Message:the value of parameter %s must be between % PRIu64 and % PRIu64

Action:请按照输出提示输入合法范围内的参数。

# YAS-06015

Message:QUORUM_SYNC_STANDBYS cannot be empty

Action:依据参考手册-配置参数文档中描述,为参数输入正确的值。

# YAS-06016

Message:cannot kill current session

Action:当前连接不允许杀掉该会话,请使用其它连接执行。

# YAS-06017

Message:failed to get environment %s

Action:根据提示信息设置对应的环境变量后重新执行命令。

# YAS-06018

Message:invalid or non-existent SQL ID

Action:内部错误,请联系我们的技术支持解决。

# YAS-06019

Message:the linking library %s is invalid

Action:请按照提示检查链接库是否存在。

# YAS-06020

Message:set session parameter: %s failed, %s

Action:设置指定的会话参数失败,请按提示进行检查。

# YAS-06021

Message:workload repository record is not found

Action:内部错误,请联系我们的技术支持解决。

# YAS-06022

Message:failed to initialize thread lock when %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06023

Message:database is set to read-only because of database abnormal

Action:DBA 介入查看产生故障的原因,解决故障,消除故障状态后再继续执行业务。

# YAS-06024

Message:invalid AUTOTRACE option

Action:参考set autotrace文档,修改autotrace的命令选项为有效值。

# YAS-06025

Message:valid URL of service expected

Action:请配置正确的IP名单。

# YAS-06026

Message:failed to load netconfig: address %s is invalid

Action:请更改IP名单。

# YAS-06027

Message:instance service unavailable, reason: %s

Action:请在数据库启动或主备切换成功后重试。

# YAS-06401

Message:Invalid argument: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06412

Message:%s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06414

Message:%s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06415

Message:feature %s has not been implemented yet

Action:内部错误,请联系我们的技术支持解决。

# YAS-06418

Message:%s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06420

Message:%s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06421

Message: failed to allocate memory, please try again

Action:请检查参数COLUMNAR_VM_BUFFER_SIZE配置是否合理,然后重试。

# YAS-06501

Message:invalid argument: %s

Action:根据信息检查参数。

# YAS-06502

Message:exceed limit (expect>%d,<%d): now size is %d

Action:输入值不在规定范围内,请按提示调整您的输入值。

# YAS-06503

Message:io error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06504

Message:null error: %s

Action:不能为空值,请按提示输入值。

# YAS-06508

Message:utf8 error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06510

Message: start thread error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-06511

Message: failed to allocate %d bytes, %s is not enough

Action:内部错误,请联系我们的技术支持解决。

# YAS-06512

Message: format error

Action:系统可用内存不足,请调整内存配置,减少内存使用,或联系我们的技术支持解决。

# YAS-06801

Message:missing or invalid library name

Action:请输入正确的library name。

# YAS-06802

Message:invalid library %s

Action:请检查调用的library是否有效。

# YAS-06803

Message:PL/SQL debugger is already open

Action:退出已经开始的调试,然后重新开始。

# YAS-06804

Message:type mismatch found at "%s" between FETCH cursor and INTO variables

Action:检查FETCH数据的类型释放与INTO的类型一致。

# YAS-06805

Message:error number argument to raise_application_error of %d is out of range

Action:请输入合法范围内的错误码。

# YAS-06806

Message:job associated instance number %d is not valid

Action:输入正在运行实例的INSTANCE_NUMBER,查询V$INSTANCE获取。或把FORCE参数设置为TRUE。

# YAS-06807

Message:job %s.%s is not running

Action:定时任务已经停止,选择正在执行的定时任务执行STOP_JOB接口。

# YAS-06808

Message:supertypes's AUTHID is DEFINER but supertype and subtype are not in same schema

Action:在父类型的模式下创建子类型。

# YAS-06809

Message:invalid or missing directory name

Action:请输入合法的目录对象名。

# YAS-06810

Message:cannot alter with COMPILE option a valid type with table dependents

Action:不需要执行COMPILE动作。

# YAS-06811

Message:error(s) in reference to an uninitialized collection

Action:检查FORALL语句是否被执行。

# YAS-06812

Message:DML statement without BULK In-BIND cannot be used inside FORALL

Action:检查FORALL语句下i是否有作为集合索引出现。

# YAS-06813

Message:FORALL iteration variable string is not allowed in this context

Action:检查FORALL语句下i是否孤立出现(未作为集合索引)或作为表达式的一部分。

# YAS-06814

Message:references to fields of BULK In-BIND table of records or objects must have the form A(I).F

Action:使用FOR循环代替FORALL语句或修改引用以适合允许的形式。

# YAS-06815

Message:index specified to access SQL bulk attribute is not allowed

Action:使用整数数据类型的单个索引。

# YAS-06816

Message:FORALL bulk index cannot be used in INTO clause

Action:移除into语句下的FORALL索引或相关表达式。

# YAS-06817

Message:error(s) in array DML

Action:请参阅FORALL异常游标中的错误信息,修改DML语句。

# YAS-06818

Message:index tables of cursor variables are disallowed

Action:修改以游标作为元素的varray或table类型的定义。

# YAS-06819

Message:invalid temporary lob

Action:不能使用无效的临时LOB。

# YAS-06820

Message:cannot open a lob that has already been opened

Action:不能重复打开一个已经打开的LOB。

# YAS-06821

Message:cannot close an unopened lob

Action:不能关闭一个未打开的LOB。

# YAS-06822

Message:cannot update a lob opened in readonly mode

Action:不能更新一个以只读模式打开的LOB。

# YAS-06823

Message:expressions have to be of SQL types

Action:将表达式类型修改为SQL类型。

# YAS-06824

Message:bad bind variable %s

Action:非法使用的绑定参数。

# YAS-06825

Message:expression is of wrong type

Action:更改表达式的数据类型。您可能需要使用数据类型转换函数。

# YAS-06826

Message:local collection types not allowed in SQL statements

Action:在schema中定义集合类型,而不是在PL子程序中。

# YAS-06827

Message:cannot run job in upgrade mode

Action:在升级模式下不可执行定时任务。

# YAS-06828

Message:out and in/out modes cannot be used in this context

Action:请根据提示信息修改using子句中不符合限制的参数方向。

# YAS-06829

Message:cannot compare VARRAY or LOB type

Action:OBJECT类型创建MAP或ORDER方法,VARRAY和TABLE类型去除相关子句。

# YAS-06830

Message:invalid use of type name

Action:无效的类型名用法。

# YAS-06831

Message:varray delete invalid, %s

Action:请根据提示信息调整DELETE方法的参数。

# YAS-06832

Message:table index by type is invalid

Action:不支持的表索引类型。

# YAS-06833

Message:collection with index by char is not allowed here

Action:由字符串索引的集合类型变量禁止作为INDICES OF或VALUES OF的对象。

# YAS-06834

Message:label Security not enabled

Action:检查LBAC开关是否打开。

# YAS-06835

Message:invalid policy option: %s

Action:修改控制类型为支持的类型。

# YAS-06836

Message:policy %s not found

Action:指定已存在的安全策略名称。

# YAS-06837

Message:undefined level %d for policy %s

Action:指定的级别需要在策略中存在。

# YAS-06838

Message:undefined compartment %d for policy %s

Action:指定的范围需要在策略中存在。

# YAS-06839

Message:label %ld does not exist for policy %s

Action:指定的标签需要在策略中存在。

# YAS-06840

Message:invalid label string: %s

Action:标签内容构成要合法。

# YAS-06841

Message:label tag %ld already exists

Action:标签值不能和已有的重复。

# YAS-06842

Message:label %s already exists

Action:标签内容不能和已有的重复。

# YAS-06843

Message:policy already applied to table

Action:不需要重复应用同一个策略到该表上。

# YAS-06844

Message:max write level does not equal max read level

Action:最大写标签的级别要和最大读标签的级别相同。

# YAS-06845

Message:not authorized for read or write on specified groups or compartments

Action:默认读或写标签的范围或组的内容不符合要求。

# YAS-06846

Message:minimum label can contain a level only

Action:最小写标签只能包含级别。

# YAS-06847

Message:default level is greater than the user's maximum

Action:默认标签的级别不能超过用户最大读写标签的级别。

# YAS-06848

Message:cannot change HIDDEN property of column

Action:重新选择表对应的标签列。

# YAS-06849

Message:unauthorized SQL statement for policy %s

Action:重新创建指定策略的标签信息。

# YAS-06850

Message:%s in use by existing %s labels

Action:在删除级别或范围前,确保对应的策略的标签都被删除。

# YAS-06851

Message:invalid internal label

Action:给定的字符串需要是合法的由策略、组件类型、级别、范围和组的值构成的字符串。

# YAS-06852

Message:invalid input value for %s parameter

Action:对提示的参数输入有效的参数值。

# YAS-06853

Message:fine grain access policy conflicts with materialized view

Action:创建物化视图不能包含LBAC创建的标签列。

# YAS-06854

Message:cannot assign supertype instance to subtype

Action:使用类型或子类型赋值。

# YAS-06855

Message:type %s must be a supertype or subtype of the TREAT expression

Action:修改表达式或类型。

# YAS-06856

Message:input object name has too many parts

Action:请输入合法的对象名。

# YAS-06900

Message:DBMS_SQL.OPEN_CURSOR failed. security_level is outside the valid range of 0 to 2

Action:修改DBMS_SQL.OPEN_CURSOR的security_level参数。

# YAS-06901

Message:DBMS_SQL access denied

Action:请输入正确的游标ID。

# YAS-06902

Message:given statement is not supported by package DBMS_SQL

Action:请输入合法的语句。

# YAS-06903

Message:unsupported client compatibility mode used when talking to the server

Action:请输入合法的client compatibility mode。

# YAS-06904

Message:bind variable does not exist

Action:绑定参数不存在,请输入合法的绑定参数名称。

# YAS-06905

Message:numeric or value error

Action:值错误。

# YAS-06906

Message:no statement parsed

Action:请先将语句进行parse。

# YAS-06907

Message:variable not in select list

Action:请输入合法的position。

# YAS-06908

Message:type of out argument must match type of column or bind variable

Action:请输入类型匹配的列或绑定变量。

# YAS-06909

Message:effective userid are not the same as when cursor was parsed

Action:请检查是否与parse时的用户相同。

# YAS-06910

Message:cursor contains both regular and array defines which is illegal

Action:不允许对同一个游标同时define_column和define_array。

# YAS-06911

Message:cursor contains both bind and define arrays which is not permissible

Action:不允许对同一个游标同时bind_array和define_array。

# YAS-06912

Message:collection bound by bind_array contains no elements

Action:bind_array绑定的嵌套表变量不允许没有成员。

# YAS-06913

Message:invalid bind_array index argument, reason: %s

Action:bind_array的index参数不正确,请输入正确的参数。

# YAS-06914

Message:cannot apply policies for system tables or set authorizations for sys user

Action:对非系统表或非SYS用户应用行访问控制策略。

# YAS-06915

Message:variable initialization may not refer to functions declared in the same package

Action:变量初始化不能引用当前包的函数。

# YAS-06916

Message:local user define type cannot be used before definition

Action:局部的用户自定义类型需要在定义后使用。

# YAS-07201

Message:failed to initialize plug-in library %s, reason:%s

Action:请检查plug-in library是否有效。

# YAS-07202

Message:plugin execution error, %s

Action:请检查plug-in library是否有效。

# YAS-07203

Message:geos library error: %s

Action:请检查geos library是否有效。

# YAS-07301

Message:external module timeout, reason: %s

Action:请检查yex_server服务是否正常启动。

# YAS-07302

Message:external module protocol error, reason: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-07303

Message:library file %s not found

Action:请检查library文件是否存在。

# YAS-07304

Message:invalid library file %s

Action:请检查指定的library文件是否合法。

# YAS-07305

Message:too many external procedures

Action:创建的外置UDF过多,请删除不需要的外置UDF后再重试。

# YAS-07306

Message:too many external libraries

Action:创建的自定义库过多,请删除不需要的自定义库后再重试。

# YAS-07307

Message:too many dblinks

Action:创建的dblinks过多,请删除不需要的dblinks后再重试。

# YAS-07308

Message:external object is invalidated

Action:内部错误,请联系我们的技术支持解决。

# YAS-07309

Message:the size of yex packet is too large

Action:内部错误,请联系我们的技术支持解决。

# YAS-07310

Message:unsupported data type %s used by %s

Action:请输入YEX支持的入参类型。

# YAS-07311

Message:object %s.%s is busy

Action:YEX对象正在被使用,请稍后再试。

# YAS-07312

Message:object %s.%s does not exist

Action:请检查YEX对象是否存在。

# YAS-07313

Message:database driver error: %s

Action:内部错误,请联系我们的技术支持解决。

# YAS-07314

Message:too many connections for dblink %s

Action:dblinks的连接数过多,请断开部分连接后再重试。

# YAS-07315

Message:too many dblink resultsets

Action:内部错误,请联系我们的技术支持解决。

# YAS-07316

Message:too many dblink cursors

Action:内部错误,请联系我们的技术支持解决。

# YAS-07317

Message:can't establish a connection to external module

Action:请检查yex_server是否正常启动。

# YAS-07318

Message:failed to call external module

Action:外置UDF执行失败,请按照报错信息检查执行是否合法。

# YAS-07319

Message:external module service is too old

Action:内部错误,请联系我们的技术支持解决。

# YAS-07320

Message:failed to run yex_server, error no: %d

Action:内部错误,请联系我们的技术支持解决。

# YAS-07321

Message:invalid out/in out argument id: %d

Action:请使用合法的out/in out参数id。

# YAS-07322

Message:set out/in out argument with wrong type, expect %s type, actual %s type

Action:请使用正确类型的out/in out参数。

# YAS-07323

Message:external function must set return value

Action:请在外置自定义函数中设置返回值。

# YAS-07324

Message:external procedure invalid return

Action:请不要在外置存储过程中设置返回值。

# YAS-07325

Message:invalid argument id: %d

Action:请使用合法的参数id。

# YAS-07326

Message:data type of binding value mismatch

Action:内部错误,请联系我们的技术支持解决。

# YAS-07327

Message:the length of binding value is too long

Action:内部错误,请联系我们的技术支持解决。

# YAS-07328

Message:array's length is limited by param set size

Action:内部错误,请联系我们的技术支持解决。

# YAS-07329

Message:not all parameters bound

Action:内部错误,请联系我们的技术支持解决。

# YAS-07330

Message:too many active dblink transactions

Action:内部错误,请联系我们的技术支持解决。

# YAS-07331

Message:transaction branches in same session can not exceed %d

Action: 同一个用户session下不同dblink的事务总数不能超过规定上限。

# YAS-07332

Message:the length of dblink sql text must less than %ld

Action:内部错误,请联系我们的技术支持解决。

# YAS-07333

Message:the total binding size is too large

Action:内部错误,请联系我们的技术支持解决。

# YAS-07334

Message:too many sessions call external module

Action:使用外置模块并发量超过限制,减少并发量。

# YAS-07335

Message:remote data check error: %s

Action:请在稳定环境中重新执行

# YAS-08001

Message:failed to allocate handler, unknown type %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-08002

Message:function sequence error

Action:内部错误,请联系我们的技术支持解决。

# YAS-08003

Message:invalid name or URL of service

Action:使用正确的服务器名称或链接。

# YAS-08004

Message:the buffer size of %s is too small

Action:为数据提供所需大小的缓冲区。

# YAS-08005

Message:attribute is readonly

Action:在读写节点执行语句。

# YAS-08006

Message:connection is reset

Action:退出并重新连接服务器。

# YAS-08007

Message:failed to free handler, unknown type %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-08008

Message:not all variables bounded

Action:检查参数的个数是否匹配。

# YAS-08009

Message:failed to allocate descript, unknown type %u

Action: 内部错误,请联系我们的技术支持解决。

# YAS-08010

Message:invalid connection

Action:退出并重新连接服务器。

# YAS-08011

Message:allocate invalid handler

Action:内部错误,请联系我们的技术支持解决。

# YAS-08012

Message:connection has been disconnected

Action:退出并重新连接服务器。

# YAS-08013

Message:invalid fetch

Action:重新执行语句。

# YAS-08014

Message:invalid packet size

Action:修改包的范围在有效范围内(64KB ~ 32MB)。

# YAS-08015

Message:invalid input handle, expected %s

Action:退出并重新连接服务器。

# YAS-08016

Message:invalid sql type

Action:检查输入的语句是否正确。

# YAS-08017

Message:binding param id cannot be less than 1

Action:检查参数个数是否匹配。

# YAS-08018

Message:invalid partition type

Action:检查分区类型是否正确。

# YAS-08019

Message:partition key does not map to any partition

Action:检查分区标识是否正确。

# YAS-08020

Message:remove the CREATE TABLE clause

Action:此操作不允许,移除CREATE TABLE语句。

# YAS-08021

Message:invalid data type: %s

Action:检查数据类型是否匹配。

# YAS-08022

Message:invalid pump parameter value

Action:修改参数值,字符串类型不超过8192字节。

# YAS-08023

Message:invalid file format, %s

Action:根据具体信息检查语句。

# YAS-08024

Message:the tablespace '%s' is not found

Action:使用已存在的表空间或创建新的表空间。

# YAS-08025

Message:invalid value of parameter %s

Action:检查参数的值是否有效。

# YAS-08026

Message:importing broken

Action:根据提示修复后重新导入数据。

# YAS-08027

Message:the value of %s is illegal

Action:使用有效的值。

# YAS-08028

Message:unknown attribute id

Action:检查属性名称是否正确。

# YAS-08029

Message:%s may not %s other users

Action:使用DBA用户操作。

# YAS-08030

Message:too many %s for %s

Action:减少对象个数。

# YAS-08031

Message:cannot qualify table name by owner %s, %s

Action:使用FROMUSER参数指定表的用户。

# YAS-08032

Message:conflicting modes specified

Action:减少导入导出的模式,然后重新执行。

# YAS-08033

Message:user %s does not exist

Action:使用已存在的用户或创建该用户。

# YAS-08034

Message:table %s.%s does not exist

Action:使用已存在的表或创建该表。

# YAS-08035

Message:%s %s not found in export file

Action:重新创建该对象。

# YAS-08036

Message:invalid temp lob

Action:请先创建合法临时LOB。

# YAS-08037

Message:param name %s not found

Action:请输入正确的参数名。

# YAS-08039

Message:invalid transaction isolation level

Action:请输入正确的事务隔离级别READ COMMITTED/CURRENT COMMITTED/SERIALIZABLE。

# YAS-08040

Message:invalid password

Action:请输入正确的密码。

# YAS-08041

Message:invalid charset code,the value must be one of ASCII GBK UTF8 ISO88591 GB18030.

Action:请输入正确的字符集,字符集必须是ASCII、GBK、UTF8、ISO88591、GB18030中的一个。

# YAS-08042

Message:invalid charset,the value must be one of ASCII GBK UTF8 ISO88591 GB18030.

Action:请输入正确的编码,字符集必须是ASCII、GBK、UTF8、ISO88591、GB18030中的一个。

# YAS-08043

Message:invalid value for date format

Action:YashanDB不支持指定该日期格式,请修改。

# YAS-08044

Message:new passwords do not match

Action:请检查两次输入的密码是否一致。

# YAS-08045

Message:invalid null pointer

Action:请检查是否有非法空指针输入。

# YAS-08046

Message:partition bound value '%s' is invalid, expected size not more than %u, actual size is %u

Action:确保数据长度不超过相应分区列的长度。

# YAS-08047

Message:invalid data path

Action:请配置正确的YASDB_DATA路径(路径必须为绝对路径且长度不超256)。

# YAS-08048

Message:extproc stream error, reason: %s

Action内部错误,请联系我们的技术支持解决。

# YAS-08049

Message:unsupported yacGetData invocation, please set YAC_ATTR_GET_DATA_SUPPORT

Action:当前不支持yacGetData调用,请设置YAC_ATTR_GET_DATA_SUPPORT属性为true。

# YAS-08050

Message:no resultset cached for yacGetData

Action:当前yacGetData调用无已缓存结果集。

# YAS-08051

Message:invalid lob

Action:无效LOB请创建或绑定获取有效LOB。

# YAS-08052

Message:this feature is not supported in the current version

Action:当前版本不支持此功能。

# YAS-08053

Message:provide less data for writing than specified

Action:提供写入的数据少于指定的数据。

# YAS-08054

Message:failed to free descriptor, unknown type %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-08055

Message:failed to allocate descriptor, unknown type %u

Action:内部错误,请联系我们的技术支持解决。

# YAS-08056

Message:invalid connect param format: %s

Action:请检查连接参数输入格式是否正确,应为key=value的形式。

# YAS-08057

Message:invalid connect param name: %s

Action:请检查连接参数名是否正确。

# YAS-08058

Message:invalid connect param value: %s for %s

Action:请检查连接参数值是否正确。

# YAS-08059

Message:TAF connect failed: connect failed

Action:TAF连接失败,请重新连接数据库。

# YAS-08060

Message:TAF connect succeed: please reuse this interface

Action:TAF连接成功,请重新调用当前接口。

# YAS-08061

Message:TAF connect succeed: callback func return error

Action:TAF连接成功,但TAF回调函数返回错误,请检查TAF回调函数。

# YAS-08062

Message:invalid mem callback set

Action:当前内存回调函数设置有误,请设置正确的内存回调函数。

# YAS-08063

Message:invalid attr set after connected

Action:当前属性不支持在连接成功后设置。

# YAS-08064

Message:invalid parameter, reason: %s

Action:根据信息检查参数。

# YAS-08065

Message:the data has been right truncated

Action:当前数据已经右截断。

# YAS-08066

Message:invalid connection, primary mode connect to standby

Action:非法的连接,PRIMARY连接模式仅找到备库,请修改连接URL。

# YAS-08067

Message:parse partition info error: %s

Action:分区信息解析失败,请联系我们的技术支持解决。

# YAS-08068

Message:debug status is %s

Action:调试器模式状态异常。

# YAS-08069

Message:debug frames information does not exist

Action:调试器模式的堆栈信息不存在。

# YAS-08070

Message:debug variants information does not exist

Action:调试器模式的变量信息不存在。

# YAS-08071

Message:debug breakpoints information does not exist

Action:调试器模式的断点信息不存在。

# YAS-08072

Message:current user needs ukey to login, please input ukey information: %s

Action:当前用户登录需要UKEY,请输入UKEY信息。

# YAS-08073

Message:invalid indicator value %u

Action:错误的指示器值。

# YAS-08401

Message:resource control root dir %s is too long

Action: 请调小cgroup目录路径的长度。

# YAS-08402

Message:resource control root dir %s is invalid

Action:cgroup处理文件失败,请检测文件名或文件权限是正确的。

# YAS-08403

Message:resource control is not mounted

Action:请在linux上挂载cgroup组件。

# YAS-08404

Message:resource control cgroup name %s is failed to be created

Action:cgroup 创建失败,请查看cgroup 目录是否正确。

# YAS-08405

Message:resource control fails to delete cgroup and the cgroup name is %s

Action:cgroup 删除失败,请查看cgroup 目录是否正确。

# YAS-08406

Message:cgroup is all close

Action:cgroup 关闭,如果要使用cgroup 功能,请打开开关。

# YAS-08407

Message:operate resource control in invalid database status

Action:当前数据库状态不允许资源管理配置操作。

# YAS-08408

Message:number of consumer groups exceeds limit %d

Action:资源消费者组数量达到上限,不允许再配置更多的资源消费者组。

# YAS-08409

Message:consumer group %s is being used and cannot be deleted

Action:删除消费者组前请先删除所有与其关联的计划指令。

# YAS-08410

Message:cgroup directory %s is not existed, please create cgroup directory first

Action:通过yasboot工具的host cgroup create命令创建cgroup目录

# YAS-08411

Message:plan %s is being used and cannot be deleted

Action:删除资源计划前请先删除所有与其关联的计划指令。

# YAS-08412

Message:unable to write cgroup file of consumer group %s

Action:cgroup文件写入失败,请查看cgroup目录与权限是否正确。

# YAS-08413

Message:session has reached the maximum memory usage limit, alloc type %s, alloc size %ld, mem limit %ld, session cur size %ld

Action:调大上限或减少执行所需资源

# YAS-08414

Message:session has reached the maximum memory usage limit of resource group, alloc size %ld, remain size %ld, total size %ld

Action:调大上限或减少资源使用组执行所需资源

# YAS-08415

Message:user mem quota is in congestion

Action:用户内存配额争抢,将重试

# YAS-08416

Message:px res quota is in congestion

Action:PX资源配额争抢,将重试

# YAS-08417

Message:res quota exceeding consumer group or session upper limit

Action:调大资源配额上限或减少执行资源

# YAS-08418

Message:retry timeout due to res congestion

Action:请调整系统的资源使用

# YAS-08419

Message:res group user mem quota is lack, alloc type %s

Action:请调大资源组配额或减少资源使用组执行所需资源

pdf-btn 下载文档
copy-btn 复制链接