標籤:oracle 共用服務串連靜態註冊服務oracle 共用服務串連靜態註冊服務預設oracle的共用服務是註冊到動態註冊服務裡面的[email protected]> select * from v$version where rownum=1;BANNER---------------------------------------------------------------------------------------------------------------
標籤:看過此博文後Oracle、MySql、SQLServer 資料分頁查詢,在根據公司的RegionRes表格做出了SQLserver的分頁查詢語句:SELECT DISTINCT TOP 500 rr.ID AS id ,rr.strName AS name ,rr.nType AS res_type ,rr.nRegID AS region_id ,rr.strChanName AS channel_name ,rr.nChanNum AS
標籤:oracleOracle Study之--DBCA建庫錯誤 系統內容:作業系統: RedHat EL54Oracle : Oracle 11gR2故障現象:在安裝好11gR2軟體後準備通過dbca建立資料庫,執行dbca的時候包如下錯誤:[[email protected] ~]$dbcaOracle Net Services Configuration:## An unexpected error has been detected by
標籤:一、處理錯誤 1.當錯誤出現在Oracle Form PL/SQL中時,處理的方法如下:begin if (err_condition) then fnd_message.set_name(appl_short_name, message_name); fnd_message.error; raise form_trigger_failure; end if;end;2.當錯誤出現在Stored Procedure中時,處理的方法如下: begin if (err_
標籤:1、查詢oracle的串連數 select count(*) from v$session;2、查詢oracle的並發串連數 select count(*) from v$session where status=‘ACTIVE‘;3、查看不同使用者的串連數 select username,count(username) from v$session where username is not null group by username;4、查看所有使用者: select *