首页 > 数据库 >瀚高数据库专用版建库语句

瀚高数据库专用版建库语句

时间:2022-12-10 13:31:55浏览次数:53  
标签:语句 psql myapp2206 数据库 专用版 regtype create 建库

瀚高数据库建库语句

# 第一步

# psql 第一个参数是数据库 第二个是用户. 

# 为了简化期间,建议用户,表空间,架构设置相同.

psql highgo   sysdba

create user myapp2206 password 'Test@20131127';

create database myapp2206 OWNER myapp2206 ;

# 第二步

psql myapp2206 myapp2206 

create schema myapp2206 ;

# 第三步

psql myapp2206 sysdba

update pg_cast set castcontext = 'i' where castsource = 'integer'::regtype and casttarget = 'boolean'::regtype;

 



标签:语句,psql,myapp2206,数据库,专用版,regtype,create,建库
From: https://blog.51cto.com/u_11529070/5927567

相关文章