PostgreSQL 删除 Table 无效参数
PostgreSQL Drop Table Invalid Argument
我还想在 PostgreSQL 中删除一个 table。
我可以删除刚刚打开的table,但是当我想删除之前打开的table时,出现以下错误:
DROP TABLE "ABTestCreateTable4";
DROP TABLE "ABTestCreateTable4"
ERROR: vsnprintf failed: Invalid argument
DROP TABLE "ABTestCreateTable4" CASCADE;
DROP TABLE "ABTestCreateTable4" CASCADE
ERROR: vsnprintf failed: Invalid argument
我尝试了两个选项,但我得到了同样的错误。
我已经搜索过这个问题,但找不到任何解决方案。
我正在使用 Navicat Premium。
感谢您的帮助。
尝试这样做:
SET lc_messages = 'C'
然后是DROP TABLE table_name
我还想在 PostgreSQL 中删除一个 table。
我可以删除刚刚打开的table,但是当我想删除之前打开的table时,出现以下错误:
DROP TABLE "ABTestCreateTable4";
DROP TABLE "ABTestCreateTable4"
ERROR: vsnprintf failed: Invalid argument
DROP TABLE "ABTestCreateTable4" CASCADE;
DROP TABLE "ABTestCreateTable4" CASCADE
ERROR: vsnprintf failed: Invalid argument
我尝试了两个选项,但我得到了同样的错误。
我已经搜索过这个问题,但找不到任何解决方案。
我正在使用 Navicat Premium。
感谢您的帮助。
尝试这样做:
SET lc_messages = 'C'
然后是DROP TABLE table_name