【发布时间】:2021-06-01 15:37:22
【问题描述】:
我正在尝试在 Windows 文件夹中创建一个表空间,但似乎没有任何效果。 我正在使用 pgadmin 这样做。
CREATE TABLESPACE test
LOCATION 'C:\test'
This gives me error:
ERROR: tablespace location must be an absolute path
SQL state: 42P17
我试过用不同的方式写位置:
'C:/test'
'C:\\test'
'C://test'
但没有什么能解决它。
问题出在哪里?
【问题讨论】:
标签: postgresql tablespace