使用达梦数据库的总结

–修改当前会话所在模式:

set schema 模式名;

–创建表空间、用户名并为用户指定表空间,并为用户授权

create tablespace "RSGL_BZK" datafile 'REGL_BZK.DBF' size 7488 autoextend on next 128 maxsize 33554431 CACHE = NORMAL;
create user "RSGL_BZK" identified by "123456789" DEFAULT TABLESPACE "RSGL_BZK";
GRANT DBA TO  "RSGL_BZK";

–创建模式

create schema RSGL_BZK;

–查询指定模式下有多少张表

select count(*)  from dba_tables where owner='RSGL_BZK';

好了,今天就到这儿吧,小伙伴们点赞、收藏、评论,一键三连走起呀,我是老贺,我们下期见~~

使用达梦数据库的总结_第1张图片

你可能感兴趣的:(数据库,1024程序员节,数据库)