In Navicat New User

1.Ctrl + Q, enter the query, create a table space.

输入create tablespace test datafile 'D:\Oracle\test.ora' size 1000m;

test here for the table space name, the path to their own name. Then execute button.

 

2. After successful execution, continue to create the user.

输入create user USER_TEST identified by test default tablespace test quota 500m on users; 

Here USER_TEST user name, password is the first test and the second test for the table space name. Then executed.

 

3. After successfully creating a user, for authorization.

Enter grant all privileges to USER_TEST;

Execute the statement to USER_TEST authorized user, then the user can log USER_TEST.

Guess you like

Origin www.cnblogs.com/excellent-vb/p/10931694.html