W
winnerzhou
Unregistered / Unconfirmed
GUEST, unregistred user!
在oracle8.05中,我通过如下步骤:建立了新的表空间还有授权了新用户,当我连接mapone这个数据库的时候,找不到mapone数据库!只能在系统默认的localhost本地数据库中找到mapone这个用户!不知道我是不是那里做的不对!请各位高人指点!!
(更龌龊的是,我通过mapone这个用户已经在本地默认的localhost数据库中建立的一些新表和插入一些数据。就是找不到mapone数据库啊!!郁闷!)
表空间
create tablespace mapone
logging
datafile 'D:/orant/DATABASE/mapone.ora'
size 500m
autoextend on
next 32m maxsize 2048m
用户表空间:
CREATE USER mapone IDENTIFIED BY mapone
DEFAULT TABLESPACE mapone
TEMPORARY TABLESPACE mapone;
用户授权:
grant unlimited tablespace to mapone with admin option;
grant "CONNECT" to mapone;
grant "RESOURCE" to mapone;
grant create session to mapone;
grant create table to mapone;
grant create tablespace to mapone;
grant create view to mapone;
(更龌龊的是,我通过mapone这个用户已经在本地默认的localhost数据库中建立的一些新表和插入一些数据。就是找不到mapone数据库啊!!郁闷!)
表空间
create tablespace mapone
logging
datafile 'D:/orant/DATABASE/mapone.ora'
size 500m
autoextend on
next 32m maxsize 2048m
用户表空间:
CREATE USER mapone IDENTIFIED BY mapone
DEFAULT TABLESPACE mapone
TEMPORARY TABLESPACE mapone;
用户授权:
grant unlimited tablespace to mapone with admin option;
grant "CONNECT" to mapone;
grant "RESOURCE" to mapone;
grant create session to mapone;
grant create table to mapone;
grant create tablespace to mapone;
grant create view to mapone;