最近安裝了一套 Oracle EBS R12,在打中文Patch時,報如下錯誤。FAILED: file FNDNLINS.sql on worker 1.FAILED: file JTFNLINS.sql on worker 3.退出ADADMIN後,無法進入ERP,報如下錯誤。 The system has not been taken off maintenance mode completely. Please contact your System Administrator.
1. Cannot connect to the database. "Invalid username or password"Following are the probable causes for this error message:a. The ADI Sign On (Security) has not been set up correctly (check this only if this is a fresh install). Check the 3 cones
最近在幫HR抓加班記錄的統計資料。HR希望能by周統計加班時數。但Oracle的日期Function Compute周時是周日算第一天,周六算最後一天。而中國人的習慣是周一算第一天,周日算最後一天。而且,Oracle的函數返回的是第幾周,是個數字,HR還要再根據資料推算是那個日期段。自己編寫了一個符合我們要求的小函數,傳回值也科學很多,呵呵!FUNCTION get_wk (p_date IN DATE) RETURN VARCHAR2 IS v_wk
1.建立新的資料表空間:create tablespace newxxt datafile '/oradata/dduyoung/newxxt1.dbf' size 200M autoextend on next 10M maxsize unlimited, '/oradata/dduyoung/newxxt2.dbf' size 200M autoextend on next 10M maxsize unlimited extent management local segment space
文章目錄 Timing the refreshSummary A materialized view is a database object that contains the results of a query. They are local copies of data located remotely, or are used to create summary tables based on aggregations of a
PL/SQL表---table()函數用法/*PL/SQL表---table()函數用法:利用table()函數,我們可以將PL/SQL返回的結果集代替table。oracle記憶體表在查詢和報表的時候用的比較多,它的速度相對物理表要快幾十倍。simple example:1、table()結合數組:*/create or replace type t_test as object(id integer,rq date,mc varchar2(60));create or replace
1.RAISE_APPLICATION_ERROR的定義及使用The procedure RAISE_APPLICATION_ERROR lets you issue user-defined ORA- error messages from stored subprograms. That way, you can report errors to your application and avoid returning unhandled exceptions. To call