com.kingbase8.util.KSQLException: ERROR: permission denied for table config_info 这表明在尝试访问config_info表时,当前数据库用户没有足够的权限。 上下文: 错误发生在执行SQL查询时,具体是执行SELECT MAX(id) FROM config_info这条SQL语句时触发的。 解决方案 要解决这个问题,你需要确保执行查询的数据库用户...
test=> create table test_tsp(id int) tablespace tsp01; ERROR: permission denied for tablespace tsp01 test=> \c test system You are now connected to database "test" as user "system". test=# GRANT CREATE ON TABLESPACE tsp01 TO tuser; GRANT test=# \c test tuser You are now connected...