--1.创建表空间
CREATE SMALLFILE TABLESPACE "TEST" DATAFILE '/u02/oradata/test01.dbf' SIZE 30720M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;

--2.创建用户
create user test identified by test123 default tablespace test temporary tablespace temp;

--3.授权 test增删改查的权限
grant resource,connect,create any view, create synonym to test;

--4.登录用户test,将A库下的表test赋给B库,在B库创建同义词a_test 
select 'grant select,insert,delete,update on '|| table_name ||' to B;' from user_tables;

grant select,insert,delete,update on test to B; 

--5.登录B库,创建同义词a_test
create synonym a_test for B.test;