sybase报错: This exceeds the maximum allowable limit of 600.

sybase在进行group by查询的时候报错:

execute error:The current query would generate a key size of 700 for a work table.  This exceeds the maximum allowable limit of 600.

原因:Sybase中的group by 默认最大的列的长度是600,不能超过这个限制

解决:将字段改小点,group by 加起来不要超过600

时间: 2024-10-10 12:20:00

sybase报错: This exceeds the maximum allowable limit of 600.的相关文章

GoldenGate过程 abend,报错OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again

参考原始: GoldenGate Processes Abend with OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again (Doc ID 1393647.1) 适用于: Oracle GoldenGate - Version: 11.1.1.0.0 to 11.1.1.1.20 - Release: 11.1.1 to 11.1.1.1 Information in this document appl

Android Studio编译报错“java.lang.OutOfMemoryError: GC overhead limit exceeded

1.在build.gradle添加脚本指定编译堆内存 如果在整个工程中生效,则在build.gradle中增加如下配置: android { .............. dexOptions { incremental true javaMaxHeapSize "4g" } ............... } 如果只在单元测试的时候生效,则在build.gradle中增加如下配置: android { ..............     testOptions {         

vue-cli打包构建时常见的报错解决方案

报错1:打包后丢到服务器中,打开是空白页 报错2:打包后想要在本地file中打开,但是打开是空白页 报错3:打包后在浏览器中打开,报错ERROR in xxx.js from UglifyJs 报错4:打包后打开页面控制台报错,Uncaught RangeError: Maximum call stack size exceeded 报错5:打包后打开发现很多图片(背景图片等)路径打包错误,访问不到

由登录服务器时ulimit配置报错,也谈下ulimit配置

最近在登录开发机时,有报错如下: -bash:  cannot modify limit: Operation not permitted 一定是哪个地方有ulimit设置,想想看,用户登录或用户su命令切换时,系统会调用以下脚本: /etc/profile.d/file     /etc/profile     /etc/bashrc     /lebyzhao/.bashrc     /lebyzhao/.bash_profile 可能是这里面有ulimit -n的配置,检查一下,果然在/e

inotify报错Failed to watch /opt; /proc/sys/fs/inotify/max_user_watches,K哥

2016.11.8 K哥有2台服务器使用了unison+inotify达到网站文件夹时时同步的效果 今天突然发现inotify占用很大CPU,可以用top命令查看 打开inotify日志查看原因 发现这一报错 Failed to watch /opt; upper limit on inotify watches reached!Please increase the amount of inotify watches allowed per user via `/proc/sys/fs/ino

Python递归报错:RuntimeError: maximum recursion depth exceeded in comparison

Python中默认的最大递归深度是989,当尝试递归第990时便出现递归深度超限的错误: RuntimeError: maximum recursion depth exceeded in comparison 简单方法是使用阶乘重现: 1 #! /usr/bin/env Python 2 3 def factorial(n): 4 5 if n == 0 or n == 1: 6 7 return 1 8 9 else: 10 11 return(n * factorial(n - 1)) >

Sybase ASE报错:server Error: 8242, Severity: 16, State: 1

昨天上午,同事反映某系统在执行存储过程的过程中报错了,报错的信息异常如下: 05:00000:00009:2014/06/09 15:45:30.34 server Error: 8242, Severity: 16, State: 1 05:00000:00009:2014/06/09 15:45:30.34 server The table 'USER_FILES' in database 'PRODB' is bound to metadata cache memory. Unbind t

【MySQL笔记】mysql报错"ERROR 1206 (HY000): The total number of locks exceeds the lock table size"的解决方法

step1:查看 1.1 Mysql命令行里输入"show engines:"查看innoddb数据引擎状态, 1.2 show variables "%_buffer%"里查看innodb_buffer_pool_size的数值,默认是8M(太小,需要改大一点!) step2:找配置文件,修改innodb_buffer_pool_size=64M 2.1 在linux里配置文件是my.cnf,windows里是my.ini(注:不是my-default.ini).

Oracle安装报错:SGA size can not be greater than maximum shared memeory segment size

安装数据的时候报错: 查看操作系统参数设置: [[email protected] ~]# vi /etc/sysctl.conf # Kernel sysctl configuration file for Red Hat Linux # # For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and # sysctl.conf(5) for more details. # Controls IP packet forwa