假设需要导出某个表table1,只导出表结构,不导出数据,可以使用如下()命令。
A:EXP user/pwd tables=(name,table1)file=export.dmp Rows=y
B:EXP user1/pwd table table1 file=extable1.dmp
C:EXP user/pwd tables=(name,table1)file=export.dmp Rows=n
D:EXP user1/pwd table=table1 file=extable1.dmp Rows=n
出自:Oracle认证