Oracle ---- can not operate with navicat

Navicat tried to start a trial statement creates a table space, the implementation of sql statement, the last link to the database can be successful, but the last one, jump the system fails, it is good pit;

So bad how to do?

CREATE TABLESPACE wzlDATA LOGGING DATAFILE 'wzlDATA.dbf' SIZE 500M AUTOEXTEND ON NEXT 10M EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;
CREATE TEMPORARY TABLESPACE wzlTEMP TEMPFILE 'wzlTEMP.dbf' SIZE 200M AUTOEXTEND ON NEXT 10M EXTENT MANAGEMENT LOCAL;
CREATE TABLESPACE wzlINDEX LOGGING DATAFILE 'wzlINDEX.dbf' SIZE 500M AUTOEXTEND ON NEXT 10M EXTENT MANAGEMENT LOCAL;
CREATE USER wzl PROFILE DEFAULT IDENTIFIED BY wzl DEFAULT TABLESPACE wzlDATA TEMPORARY TABLESPACE wzlTEMP ACCOUNT UNLOCK;
grant create any view to wzl;
grant CONNECT,RESOURCE TO wzl;
GRANT DBA TO wzl;

Linux system which is executed successfully;

Next:

su root 

su - oracle 

sqlplus name/pin

Execute create table statement: @ / home / creat.sql

 

The last test initialization system successfully;

Guess you like

Origin www.cnblogs.com/wzl629/p/11304695.html