千家信息网

oracle 操作记录

发表于:2025-02-07 作者:千家信息网编辑
千家信息网最后更新 2025年02月07日,删除所有表:select 'drop table '||table_name||';' from cat where table_type='TABLE';导出用户所有表:exp user/passw
千家信息网最后更新 2025年02月07日oracle 操作记录

删除所有表:

select 'drop table '||table_name||';' from cat where table_type='TABLE';


导出用户所有表:

exp user/password@实例 owner=用户 file=./xxx.dmp


导入:

imp user/password file=./xxx.dmp full=y ignore=y commit=y &

0