oralce 資料庫建立使用者並賦予基本的許可權

2021-06-16 14:25:33 字數 506 閱讀 1157

--1.建立使用者

create user martin identified by 1

account unlock;

alter user martin identified by ddddd;

--2.賦予基本的訪問許可權

grant connect,resource to martin;

--3.賦予使用者其他的系統許可權

grant create procedure,create table,create tablespace,create view,debug connect session,unlimited tablespace

to martin with admin option;

grant create user to martin;

oralce 資料庫建立使用者並賦予基本的許可權,首先在sys或者system使用者下執行以下的指令碼,完成建立使用者和基本許可權的賦值,然後再建立表和匯入資料。

mysql建立資料庫並賦權

1.使用root使用者登入musql資料庫 mysql uroot p密碼 2.建立資料庫labsoft hc create database labsoft hc 3.給資料庫建立單獨使用者labsoft user create user labsoft user 4.給使用者labsoft us...

mysql建立資料庫並賦權

1.使用root使用者登入musql資料庫 mysql uroot p密碼 2.建立資料庫labsoft hc create database if not exists labsoft hcdefault charset utf8 collate utf8 general ci 3.給資料庫建立單...

mysql建立資料庫並建立使用者授權

create user myuser identified by mypassword 建立乙個不受主機限制的使用者myuser,並且指定密碼是mypassword create user myuser localhost identified by mypassword 或者create user...