首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
少表专题
Oracle 11g exp命令导出却表、少表的解决办法
ORACLE 11G中有个新特性,当表无数据时,不分配segment,以节省空间。 解决方法: 执行一下SQL语句查询 select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 查询结果如下 alter table TABLE_1 allocate extent
阅读更多...
oracle exp导出 少表
导出语句: exp NC65/nc65@YONYOUDB file=d:\ysdb20191028.dmp log=d:\ncdatabak20191028.log full=Y 导出发现少了很多表,一直找不到原因。看这个https://blog.csdn.net/shiyu1157758655/article/details/83409436 应该是oracle 11g 的特性,没有给空表
阅读更多...