创建项目用户(例如user2),并将可访问user1下表的权限授予项目用户(即:可用脚本让项目用户具有user1下表的增删改查的权限,或者项目用户设为user1的同义词)
怎么做?
用user1(不知道USER1要不要DBA权限)登陆然后
grant select any table to user2;
grant insert any table to user2;
grant update any table to user2;
grant delete any table to user2;