--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;
--4.赋予用户增删改查的权限,可以通过用户名.表明的方式。
GRANT
GRANT
GRANT
oralce
数据库创建用户并赋予基本的权限,首先在sys或者system用户下执行以下的脚本,完成创建用户和基本权限的赋值,然后再创建表和导入数据。