Oracle中用哪个命令可以批量导出存储过程
1个回答
展开全部
这样试试:
在sqlplus 下:
set echo off;
set heading off;
set feedback off;
spool c:\proc.txt
--1、用sys用户等陆的话:
select text from dba_source where owner='YOUR_USER' and type ='PROCEDURE';
--2、用一般用户(要导出其下存储过程的用户):
select text from user_source;
spool off;
在sqlplus 下:
set echo off;
set heading off;
set feedback off;
spool c:\proc.txt
--1、用sys用户等陆的话:
select text from dba_source where owner='YOUR_USER' and type ='PROCEDURE';
--2、用一般用户(要导出其下存储过程的用户):
select text from user_source;
spool off;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询