怎样用Erwin导出Oracle的表结构以及索引等
1个回答
展开全部
1.导出自己的表
exp userid=scott/tiger@myoral tables=(emp,dept) file=/opt/e1.dmp
2.导出其它方案的表 如果用户要导出其它方案的表,则需要dba的权限或是exp_full_database的权限,比如system就可以导出scott的表
exp userid=system/manager@myoral tables=(scott.emp) file=d:\e2.emp
3. 导出表的结构
exp userid=scott/tiger@accp tables=(emp) file=/opt/e3.dmp rows=n
4. 使用直接导出方式
exp userid=scott/tiger@accp tables=(emp) file=/opt/e4.dmp direct=y
这种方式比默认的常规方式速度要快,当数据量大时,可以考虑使用这样的方法。 这时需要数据库的字符集要与客户端字符集完全一致,否则会报错
导出方案 导出方案是指使用export工具导出一个方案或是多个方案中的所有对象(表,索引,约束...)和数据。并存放到文件中
exp userid=scott/tiger@myoral tables=(emp,dept) file=/opt/e1.dmp
2.导出其它方案的表 如果用户要导出其它方案的表,则需要dba的权限或是exp_full_database的权限,比如system就可以导出scott的表
exp userid=system/manager@myoral tables=(scott.emp) file=d:\e2.emp
3. 导出表的结构
exp userid=scott/tiger@accp tables=(emp) file=/opt/e3.dmp rows=n
4. 使用直接导出方式
exp userid=scott/tiger@accp tables=(emp) file=/opt/e4.dmp direct=y
这种方式比默认的常规方式速度要快,当数据量大时,可以考虑使用这样的方法。 这时需要数据库的字符集要与客户端字符集完全一致,否则会报错
导出方案 导出方案是指使用export工具导出一个方案或是多个方案中的所有对象(表,索引,约束...)和数据。并存放到文件中
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询