一. 字段
1. 添加
alter table book add column book_id varchar not null, book_title varchar(10) default ;2. 删除
alter table book drop book_id, book_title;// 外键时
alter table book drop book_id, book_title cascade;3. 修改类型
alter table book alter colu…
对于多数数据库,dba技能之一就是查找锁。锁的存在有效合理的在多并发场景下保证业务有序进行。下面我们看一下KingbaseESV8R6中查找阻塞的方法。
1、找到"被阻塞者",获取被堵塞的PID
select distinct pid from pg_locks where not granted; …
情况
Kingbase数据库修改密码后,重新连接失败 提示信息
致命错误: 用户 "system" Password 认证失败 (kbjdbc: autodetected server-encoding to be GB2312, if the message is not readable, please check database logs and/or host, port, dbname, u…