Nice introduction's link for this 10g new feature

As starting point for future discussion in this forum i post a link with a small introduction of Oracle Expression Filter: http://www.oracle.com/technology/oramag/oracle/05-may/o35sql.html
The official Oracle documentation:
- Oracle® Database Application Developer's Guide - Expression Filter
10g Release 1 (10.1):
http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10821/toc.htm
- Oracle® Database Application Developer's Guide - Rules Manager and Expression Filter
10g Release 2 (10.2):
http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14288/toc.htm
I never used this feature before, but I can start now ;-)
Cheers, Aron

Thanks Aron. Please let us know how it goes, if you are so inclined.
There is also a new page on OTN for Expression Filter and Rules Manager resources at
http://www.oracle.com/technology/products/database/rules_manager/index.html
Regards,
Bill Beauregard
Principal Product Manager
Message was edited by:
wbeaureg

Similar Messages

  • 1Z0-045: Oracle Database 10g: New Features for Oracle 8i OCPs

    Hi,
    I was looking for right reference book for the 1z0-045 upgrade certification. I could not find any reference book that is related to this certification. Only one book have found out on Amazon site, which is "OCP Oracle Database 10g: New Features for Administrators Exam Guide (Oracle Press) (Paperback)" published by McGraw Hill.
    But this book does not show exem number 1z0-045 anywhere. So I am not sure, is it a right book to buy.
    Please let me know if any one has any knowledge about that.
    I appreciate for your information.
    Thanks
    Amit

    The book you mention is for those individuals who are upgrading their 9i OCP to the 10g OCP. Since you are apparently upgrading from 8i OCP, there is possibly a gap in your learning. You might want to take a look at OCP Oracle9i Database: New Features for Administrators Exam Guide (Paperback) which explains the new features for Oracle 9i to someone coming from an 8i background. No additional exam would be needed in your case but this book may help to fill out your knowledge a bit. You could also take a look at http://download.oracle.com/docs/cd/B10501_01/server.920/a96531/toc.htm if you would rather not buy an additional book.
    Tom

  • Looking for 10g New Features Summary

    Anybody know where I can get a 10g new features summary?
    Thanks in advance,
    -Ken

    That link has good DETAIL. I'm looking for a SUMMARY of the features. You know, like an outline...
    Automatic Undo Management
    Automated Storage Management (ASM)
    PL/SQL Enhancements
    Enterprise Manager
    Exclusively Browser Based
    Run on the Database
    DBMS_DATAPUMP()
    etc.

  • Firefox can't load certain sites; your link for this topic doesn't work. Firefox 4, 5,6-Debian-6

    In the last week certain websites won't load. All I get is a blank page. Some of them: www.amazon.com, www.chron.com, www.microsemi.com.
    I was able to get on amazon.com by following a link for vendor feedback from an email but nothing else works.
    This problem exists with Firefox 4, 5, 6 and the default Debian browser Iceweasel. I am using Debian 6.0.
    Your link for this problem results in a page not found error.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Try "Disable the hardware acceleration" in the Flash Player.
    *http://helpx.adobe.com/flash-player/kb/video-playback-issues.html
    See also:
    * https://support.mozilla.org/kb/Cannot+view+full+screen+Flash+videos
    Flash "Display settings" window:
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html

  • 10G NEW FEATURE-HOW TO FLUSH THE BUFFER CACHE

    제품 : ORACLE SERVER
    작성날짜 : 2004-05-25
    10G NEW FEATURE-HOW TO FLUSH THE BUFFER CACHE
    ===============================================
    PURPOSE
    이 자료는 Oracle 10g new feature 로 manual 하게
    buffer cache 를 flush 할 수 있는 기능에 대하여 알아보도록 한다.
    Explanation
    Oracle 10g 에서 new feature 로 소개된 내용으로 SGA 내 buffer cache 의
    모든 data 를 command 수행으로 clear 할 수 있다.
    이 작업을 위해서는 "alter system" privileges 가 있어야 한다.
    Buffer cache flush 를 위한 command 는 다음과 같다.
    주의) 이 작업은 database performance 에 영향을 줄 수 있으므로 주의하여 사용하여야 한다.
    SQL > alter system flush buffer_cache;
    Example
    x$bh 를 query 하여 buffer cache 내 존재하는 정보를 확인한다.
    x$bh view 는 buffer cache headers 정보를 확인할 수 있는 view 이다.
    우선 test 로 table 을 생성하고 insert 를 수행하고
    x$bh 에서 barfil column(Relative file number of block) 과 file# 를 조회한다.
    1) Test table 생성
    SQL> Create table Test_buffer (a number)
    2 tablespace USERS;
    Table created.
    2) Test table 에 insert
    SQL> begin
    2 for i in 1..1000
    3 loop
    4 insert into test_buffer values (i);
    5 end loop;
    6 commit;
    7 end;
    8 /
    PL/SQL procedure successfully completed.
    3) Object_id 확인
    SQL> select OBJECT_id from dba_objects
    2 where object_name='TEST_BUFFER';
    OBJECT_ID
    42817
    4) x$bh 에서 buffer cache 내에 올라와 있는 DBARFIL(file number of block) 를 조회한다.
    SQL> select ts#,file#,dbarfil,dbablk,class,state,mode_held,obj
    2 from x$bh where obj= 42817;
    TS# FILE# DBARFIL DBABLK CLASS STATE MODE_HELD J
    9 23 23 1297 8 1 0 7
    9 23 23 1298 9 1 0 7
    9 23 23 1299 4 1 0 7
    9 23 23 1300 1 1 0 7
    9 23 23 1301 1 1 0 7
    9 23 23 1302 1 1 0 7
    9 23 23 1303 1 1 0 7
    9 23 23 1304 1 1 0 7
    8 rows selected.
    5) 다음과 같이 buffer cache 를 flush 하고 위 query 를 재수행한다.
    SQL > alter system flush buffer_cache ;
    SQL> select ts#,file#,dbarfil,dbablk,class,state,mode_held,obj
    2 from x$bh where obj= 42817;
    6) x$bh 에서 state column 이 0 인지 확인한다.
    0 은 free buffer 를 의미한다. flush 이후에 state 가 0 인지 확인함으로써
    flushing 이 command 를 통해 manual 하게 수행되었음을 확인할 수 있다.
    Reference Documents
    <NOTE. 251326.1>

    I am also having the same issue. Can this be addressed or does BEA provide 'almost'
    working code for the bargin price of $80k/cpu?
    "Prashanth " <[email protected]> wrote:
    >
    Hi ALL,
    I am using wl:cache tag for caching purpose. My reqmnt is such that I
    have to
    flush the cache based on user activity.
    I have tried all the combinations, but could not achieve the desired
    result.
    Can somebody guide me on how can we flush the cache??
    TIA, Prashanth Bhat.

  • Oracle 10g new features

    Hi,
    I want to know Oracle 10g New Features for developers. please note that i am asking for developers not DBA.
    Thanks in Advance,
    Su

    Su wrote:
    ya go through this web site ..as i'm a new to oracle development i'm confused that all topics for developers oly...pls make me clear..you want me to go through this site and figure out which articles are meant for developers only??? : O
    I would suggest an easier method for you. Open each and every article and search for the term "developer". If found, then its what you are looking for. ; )
    Vivek L

  • Document about Oracle 10g New Features

    Hi all,
    I would like to share a document I wrote about Oracle 10g New Feature. I hope it would be useful.
    Currently, I am updating the document to include Release 2 features. Any comments or suggestion is appreciated.
    Download link:
    http://www.operflow.com/Oracle_10g_DB_Summary.pdf

    Hi Ahmed,
    Good Work !!!
    I just visit your blog it is very interesting about you and your country.
    Regards
    Taj

  • Oracle 10g new feature?

    Hi,
    Is there any link, where i can find in detail about oracle 10g new features, TIA

    You can find each doc in html and pdf format on the Documentation Library<br>
    You can too download all the documentation in html format to have all on your own computer here (445.8MB)<br>
    <br>
    Nicolas.

  • FaceTime lowers audio. Is this a new feature in Facetime?

    In Mavericks, when Facetime call is connected, all other third party apps audio lowers.
    Is this a new feature in Facetime?
    I am using an app which boosts system audio, now the app does not seems to output any boosted audio.
    The app is Boom www.globaldelight.com/boom

    The ability to do Wi-Fi syncing of devices was introduced some time ago. Perhaps it was recently enabled for your devices by accident. When connected to iTunes you should see an option on the summary tab for the device to Sync this <device> over Wi-Fi. Untick that option if desired.
    tt2

  • Words like "tomorrow night" give the option to create event. Is this a new feature?

    I send the message "tomorrow night" and these two words underlined and provide an option to create an event!
    Is this a new feature or is me that just discover it?
    Che

    I know it was working with numbers like "15:30" but i never seen before to work with phrases? (a simple "tomorrow" won't work.)

  • 10g new features(study guide 1z0-040)

    Hii,
    Can you please send me the soft copy of 10g new features(study guide 1z0-040).
    Badly needed.([email protected])
    Thank you.

    You may get study guides from the education.oracle.com site http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=189915&lang=ESA&p_exam_id=1Z0_040
    I suggest you to setup a practical environment where you can directly see behaviour, not only memorize manuals.
    HR Madrid

  • I just, Oct. 29, 2012 PM, updated my laptop with latest Firefox version. Now windows freezes now and then. IS THIS A NEW FEATURE?????

    Now windows freezes now and then. IS THIS A NEW FEATURE??? Now windows freezes now and then. IS THIS A NEW FEATURE??? Now windows freezes now and then. IS THIS A NEW FEATURE??? Now windows freezes now and then. IS THIS A NEW FEATURE??? Now windows freezes now and then. IS THIS A NEW FEATURE??? Now windows freezes now and then. IS THIS A NEW FEATURE??? Now windows freezes now and then. IS THIS A NEW FEATURE???
    ................................................ WHAT OTHER DETAILS ARE NEEDED ? ............................................

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • I did nott receive any disc, manuals or otherwise support for this brand new cp. is that normal?

    I have a Pavilion p2-1122 - - - It had win 7 but now has win 8 - - - no error msg - - - did no receive disc or manual - - - - Is this normal HP practice?

    Hi:
    Yes that is normal. 
    Various manuals can be found on the PC's support and driver page.
    http://h10025.www1.hp.com/ewfrf/wc/product?product=5285229&lc=en&cc=us&dlc=en&task=&lang=en&cc=us
    As far as disks...you are given the opportunity to make a set of recovery disks using the recovery manager found in the W7 all programs menu.
    If you did not do that, and have now upgraded to windows 8, I believe you have lost that capability.
    If you need recovery disks, you will now have to order them from HP.
    See this link for more info.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=bph07143&tmp_task=solveCategory&cc=us&dlc=en&lan...
    Paul

  • Why is it that now when i click on a link and i mean every link i am asked by firefox to allow this. is this a new feature cos if it is its damned annoying

    in firefox now every link i click on always goes to allow to go to the link. Is there a way to disable this cos if its a new feature its damned annoying.

    In firefox, click on tools, then options, then click on tabs and tick the last option in tabs that say "When I open a link in a new tab, switch to it immediately".
    I hope this helps.

  • Where can i find best course material for Oracle 12c New features for admin

    Dear Good wishes.
    Im oracle 10g ocp certified.  Looking to upgrade to OCP 12c new features for admin.
    I want to get a best course material for this. Please guide me to find the downloadable link.
    Thank you.

    http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=1Z0-060
    or https://www.selftestsoftware.com/certtestprep/practice-test/oracle/1z0-060.kap
    or https://www.transcender.com/practice-exam/oracle/1z0-060.kap
    or https://www.transcender.com/e-learning/oracle/1z0-060.kap
    or  http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=609&get_params=dc:D77758,clang:EN
    Hemant K Chitale

Maybe you are looking for

  • Getting error while creating condition type in SPRO

    Hi , can somebdy tell me why i am getting the following error while creating condition type in SPRO No valid change license available for message /sapcnd/ and also while rule determination using condition type we are getting the following error. syst

  • Problem in calling procedure

    Hi, I am having one control table for triggers which is storing the procedure name, triggering event, when the trigger should be fired and other informations. I am having a procedure for calling the triggers and I am passing the parameters to it for

  • HT204380 Why won't my FaceTime connect with others?

    Why won't my FaceTime connect with others?

  • Embedding avi video clips into timeline of Flash Basic 8

    Trying to add avi video to timeline along with jpeg files. In doing so the video does not play back properly but instead slowly progresses frame by frame at the same rate as the jpeg files. What do I need to do in order to embed the video and have it

  • FK mapping wrong?

    Hello! I creating an webapp using Java Persistence API and i'm getting an error telling me i cannot insert NULL in a field not-null. Ok, that's obvious, but my object has the right value to do the insert :(( What i can't understand is that the field