由于不知道同事是怎么操作表,突然导致表a无法再被访问或通过DB工具打开,这时想先删除表再重建表a导入数据来恢复表a,发现无论是通过工具还是命令都无法删除表a。
出现类似如下提示:
DROP TABLE products; NOTICE: constraint orders_product_no_fkey on table orders depends on table products ERROR: cannot drop table products because other objects depend on it HINT: Use DROP ... CASCADE to drop the dependent objects too.在 http://www.postgresql.org/docs/8.3/static/ddl-depend.html给出了答案,及操作的方法。