oracle恢复备份数据

原文链接: http://www.cnblogs.com/heml/p/4922994.html

sqlplus链接数据库:

1、sqlplus 用户名/密码@IP地址/数据库名称
2、sqlplus 用户名/密码@数据库名称

注:第二种方法要在tnsnames.oRA文件中配置数据库名称

链接断开链接:connect/disconnect

创建用户:create user user_name identified by user_password
分配权限:grant dba to user_name
删除用户:drop user user_name cascade;
导入数据:imp user_name/user_pass@orcl file='' full=y;
导出数据:exp user_name/user_pass@orcl file='';

转载于:https://www.cnblogs.com/heml/p/4922994.html

猜你喜欢

转载自blog.csdn.net/weixin_30316097/article/details/94795921