We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
记录Oracle创建表空间及用户
CREATE TABLESPACE gaoxiao DATAFILE '/opt/develop/oracle/oradata/gaoixao.ora' SIZE 500m;
CREATE USER gaoxiao IDENTIFIED BY gaoxiao123456 DEFAULT TABLESPACE gaoxiao QUOTA 500m ON USERS;
GRANT CONNECT,dba,RESOURCE TO gaoxiao; 4.导入dmp文件 imp gaoxiao/gaoxiao123456 full=y file=/home/oracle/gaoxiao.dmp ignore=y
exp gaoxiao\_new/gaoxiao123456@dbsrv2 file=/home/oracle/gaoxiao\_new.dmp OWNER=gaoxiao\_new
The text was updated successfully, but these errors were encountered:
No branches or pull requests
记录Oracle创建表空间及用户
导入数据
1. 创建表空间
2. 创建用户
3. 用户授权
导出指定用户的表到dmp文件
The text was updated successfully, but these errors were encountered: