--1.job工作流程
create table test_job(para_date date);
commit;
insert into test_job values(sysdate);
commit;
select * from test_job;
--建立存貯過程
create or replace procedure test_jobproce as
begin
insert into test_job values(sysdate);
end test_jobproce;
--建立job
--建立job後預設是執行的
declare test_job_really number;
begin
--一分鐘執行一次
dbms_job.submit(test_job_really,'test_jobproce;',sysdate,'sysdate+1/1440');
commit;
end;
---停止job 25是建立的job test_job_really
begin
dbms_job.broken(25,true);
commit;
end;
--啟動job
begin
dbms_job.run(25);
commit;
end;
--刪除job
begin
dbms_job.remove(25);
commit;
end;
--檢視執行結果
select * from test_job order by test_job.para_date desc;
--檢視job
select * from sys.user_jobs
--使用下面的sql查詢是否job還在running,前提是需要job執行時間不能過短
select * from dba_jobs_running
--除了submit引數外,其餘的幾個引數有:
--執行job
dbms_job.run(v_job);
--停止乙個job,裡面引數true也可是false,next_date(某一時刻停止)也可是sysdate(立刻停止)。
dbms_job.broke(v_job,true,next_date);
--刪除某個job
dbms_job.remove(v_job);
dbms_job.what(v_job,'sp_fact_charge_code;');
--修改某個job名 修改下一次執行時間
dbms_job.next_date(v_job,sysdate);
--1.1 另附乙個簡單例子:
create or replace view t_bm_jbxxb as select * from newjw_share.ly_jw_bmjbxx;
create or replace procedure p_t_bm_jbxxb is
begin
insert into code_xsb(xsh,xsm,xsjc,sfjxdw,bz)
select a.bmbm,a.bmmc,a.bmmc,sfjxdw,'sql'
from t_bm_jbxxb a
where a.jwxsh is null;
commit;
end p_t_bm_jbxxb;
declare
job number;
begin
sys.dbms_job.submit(job,'p_t_bm_jbxxb;',sysdate,'sysdate+1'); --每天更新
end;
commit;
2.匯出匯入資料報
2.1匯出
windows環境下,開始->執行->cmd->exp 使用者名稱/密碼@212(212為tnsnames.ora
檔案配置好的資料庫名,若資料庫為本地,則@及資料庫名不用加) file -e:\newjw.dmp(匯出位
置及定義名字) log-11.log(日誌)
2.2匯入
windows環境下,開始->執行->cmd->imp 使用者名稱/密碼@212(212為tnsnames.ora
檔案配置好的資料庫名,若資料庫為本地,則@及資料庫名不用加) file=e:\newjw.dmp full=y(全部匯入) log=22.log
mysql 匯入匯出表 mysql 匯出,匯入資料
windows下匯出mysql資料庫中的資料 1.mysql桌面管理工具,使用 select into outfile 語句匯出資料 1.1 進入管理工具後,選中要匯出的資料庫,右擊,選擇命令列頁面進入 1.2 輸入select from 表名into outfile 檔名 select from ...
linux 匯入匯出postgresql資料庫
匯出資料庫 1 定位到postgresql的安裝目錄bin下 我的目錄是 cd opt postgresql 9.2 bin 2 執行匯出命令 pg dump u username databasename root 111.sql 輸入資料庫密碼 這樣就把資料庫匯出到root下的111.sql檔案...
spool匯出及sqllder匯入。
bin bash sqlplus s db name lwc test.ctl bin bash echo begin to insert into imp table sqlldr db name control lwc test.ctl log lwc test.log bad bad.log ...