標籤:之前轉載過一篇在Windows上安裝的,自己實際在centos上安裝了一下。以下為安裝記錄:一、作業系統環境二、資料庫環境(用oracle使用者登入)三、DG4ODBC在Oracle DB 11g中,Oracle Data Gateway預設隨資料庫一起安裝。檢查DG4ODBC驅動是否已經安裝,運行以下命令此提示說明已經安裝四、查看mysql 版本,mysql 環境查看版本串連mysql 建立測試表五、在oracle伺服器下載安裝對應的ODBC(一)
標籤:1.首先以sysdba的身份登入上去 conn /as sysdba2.關閉資料庫shutdown immediate;3.以mount打來資料庫,startup mount4.設定session SQL>ALTER SYSTEM ENABLE RESTRICTED SESSION;SQL> ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;SQL> ALTER SYSTEM SET
標籤: drop user xxx cascade;drop tablespace xxx including contents and datafiles;create tablespace xxx datafile ‘E:\oracle\product\10.2.0\oradata\ts\xxx.dbf‘ size 100M autoextend on next 10m maxsize unlimited;create user xxx identified by "ppp"
標籤:1、如果order by columnA,那麼在where查詢條件中添加條件columnA=value,則oracle內部會過濾order by排序,直接用索引。2、如果order by columnA,columnB,那麼在where查詢條件中添加條件columnA=value1,columnB=value1,則oracle內部會過濾order by排序,直接用索引。3、如果order by
標籤:http://oracleseeker.com/2009/08/12/how_to_find_the_table_view_of_oaf_application_in_oracle_ebs/在OAF頁面的尋找背景資料來源相對於在Form中顯得更加麻煩,同時也無法像Form中那樣能夠較為準確的定位,但是也能夠尋找出大部分的內容。本文介紹如何使用OAF提供的診斷功能來快速尋找OAF頁面對應的資料庫物件:關於本頁功能(About this Page)SQL Trace功能
標籤:注釋用於對程式碼的解釋說明,它能夠增強程式的可讀性,是程式易於理解。單行注釋: 用“--”,後面跟上注釋的內容Declare Num_sal number; --聲明一個數字類型的變數Var_name varchar(20); --聲明一個字串類型的變數begin select ename,sal into Var_name,Num_sal from emp where EMPNO=7369;
標籤:ora1.nvl(exp1,exp2)NVL lets you replace null (returned as a blank) with a string in the results of a query. If expr1 is null, then NVL returns expr2. If expr1 is not null,