高斯数据库创建表空间
时间: 2024-01-11 13:21:04 浏览: 234
数据库创建表空间
4星 · 用户满意度95%
高斯数据库创建表空间的方法如下:
1. 使用管理员用户登录到高斯数据库:
```shell
su - omm
gsql -d postgres -p 25308
```
2. 创建命名空间:
```shell
create tablespace xiniu relative location 'hdfs_tablespace/hdfs_tablespace_1';
create tablespace xiniu2 relative location 'hdfs_tablespace/hotdata';
```
这样就成功创建了两个表空间xiniu和xiniu2。
阅读全文