先看我們的資料:SQL> select count(1) from dave where cust_tel like '0551%'; COUNT(1)---------- 2723 在我們的Dave表裡,cust_tel 電話以0551 開頭的有2723條記錄,現在我們把這些記錄換成0556. 我們使用如下方法測試一下:SQL> select * from v$version;BANNER-----------------------------------------
同事說查詢遇到一個奇怪的事,2個表進行not in 操作沒有返回結果,正常情況下應該是有返回的。 一.問題重現一般來說,問題能重現就是好訊息,最怕不能重現。 SQL> connscott/tiger;Connected.SQL> descemp Name Null? Type ------------------------------------------------- --------
In this Document@ Oracle Confidential (INTERNAL). Do notdistribute to customers@ Reason: has internal information@ (AuthWiz 2.5.1) Applies to:Oracle Server – Enterprise Edition –Version:Information in this document applies to any platform.Oracle
資料庫版本是10.2.0.1,使用EXPDP 導資料的時候,alert log 出現如下資訊: Wed Oct 26 12:14:02 2011The value (30) of MAXTRANS parameterignored.kupprdp: master process DM00 started withpid=73, OS id=4731 to execute - SYS.KUPM$MCP.MAIN('SYS_EXPORT_SCHEMA_01',
脫字元(^)放在方括弧([])外面表示匹配以方括弧([])裡面的任何字元開頭的字串;脫字元(^)放在方括弧([])裡面表示匹配包含有任何不在方括弧([])裡面的字元的字串。SQL> select 1 x from dual where regexp_like('0a','^[0-9]'); X---------- 1SQL> select 1 x from dual where regexp_like('1a','^[0-9]');
一.官網說明1.1 processes11gR2 的文檔: PropertyDescriptionParameter typeIntegerDefault value100ModifiableNoRange of values6 to operating system dependentBasicYesOracle RACMultiple instances can have different values. PROCESSES specifies the maximum
HAVING主要用於對分組後的資料進行過濾,一般我們在其後接彙總函式(SUM,COUNT等),除此之外我們還可以用GROUP BY後面的欄位組成HAVING後的過濾條件。 SQL> select * from dept;DEPTNO DNAME LOC------ -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES
一.Checkpoints 理論說明有關GG的Checkpoints 在系列一, GG的架構中以說明:OracleGolden Gate 系列一 --GG 架構 說明http://blog.csdn.net/tianlesoftware/article/details/6925907 這裡在單獨拿出來說明一下,因為這是一個較為重要的概念。 Checkpoints storethe current read and write positions of a process to disk