oracle的导入导出

导入有两种。

第一种是图形导入,但我导入后日志报成功,但是没有数据表

第二种导入。cmd导入

imp dgm/dgm file=F:\Z\gongs\chaoyuan\dgm.dmp full=y

我用的就是cmd导入

2. 导出也是两种

下面是在是cmd导出

 exp sgq/sgq file=sgq_99_20171014.dmp owner=sgq

 

 ----------------------------------------------------------------------统计一个数据有多少张数据表--------------------------------------------------------------------------------------

SqlServer中这样统计:

select name from sysobjects where xtype='U'
要知道总数的话就简单了:
select count(*) from sysobjects where xtype='U'

Oracle中这样查询:
Select * From user_tables;
posted @ 2017-12-14 14:45  开文博客园  阅读(194)  评论(0编辑  收藏  举报