1.使用 CREATE_BASELINE_TEMPLATE 預存程序建立 single baseline template:col BASELINE_NAME for a30TEMPLATE_NAME for a30select DBID,BASELINE_ID,BASELINE_NAME,BASELINE_TYPE,EXPIRATION,TEMPLATE_NAME from dba_hist_baseline; DBID BASELINE_ID BASELINE_NAME
客戶的11.2.0.3 RAC環境自動啟動並執行JOB報錯ORA-29280。詳細錯誤資訊為:Sat Sep 15 05:59:59 2012 VKRM started with pid=54, OS id=32622 Sat Sep 15 06:00:09 2012 Errors in file /opt/app/oracle/diag/rdbms/orcl/orcl1/trace/orcl1_j001_32634.trc:ORA-12012: error on auto execute
Unix時間戳記是從'1970-01-01 00:00:00'GMT開始的秒數,表現為整數型。Oracle中的時間是Date型,以下函數提供了兩種時間轉換的Oracle函數(1)從Unix時間戳記轉換為Oracle時間create or replace function unix_to_oracle(in_number NUMBER) return date isbegin return(TO_DATE('19700101','yyyymmdd') + in_number/86400
建立使用者create user ... identified by pwd; 刪除使用者drop user ... cascade;建立資料表空間create tablespace ts_drp datafile 'd:\drp-date.dbf' size 2000m將資料表空間分配給使用者alter user ... default tablespace ts_drp;授權grant dba(resource、CONNECT) to user回收許可權revoke
很好的一個文章,來自http://apps.hi.baidu.com/share/detail/21843741; 由於圖片無法引用,不過SQL可以直接啟動並執行。row_number() over ([partition by col1] order by col2) ) as 別名表示根據col1分組,在分組內部根據 col2排序而這個“別名”的值就表示每組內部排序後的順序編號(組內連續的唯一的),[partition by col1] 可省略。
(1) Oracle中:insert into product (id,names, price, code) select 100,'a',1,1 from dual union select 101,'b',2,2 from dual;這裡最好用一次insert,不然效率不高,用多個select. (2)Mysql中:insert into 表名(id,name) values(1,'A'),(2,'B'),(3,'C') (3)SqlServer中:INSERTINTO table_
@echo offREM ###########################################################REM # Windows Server 2003下Oracle資料庫自動備份批處理指令碼REM ###########################################################REM 取當前系統時間,可能因作業系統不同而取值不一樣set CURDATE=%date:~0,4%%date:~5,2%%date:~8,