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.

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

  • 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

  • Got an idea for a new feature or feature improvement?

    Our FAQ contains a list of in progress and unfinished features, so please check that out.
    We're interested in hearing from you on how we can improve Parfait by improving or adding a new feature. Please provide as much detail as possible, and make sure to tell us why it is important to you. If your idea is for a new feature, it would be helpful to understand how you get it done now, and how the new feature would make your life better.
    Thanks!
    Bruce
    Parfait product manager

    Helo Kieran,
    • Integration with Creative Cloud or LayerVault (LV would be nice for versioning etc.)
    BB> We're working on integrating with Creative Cloud. You'll get versioning, commenting, sharing (file or folder level), and sync. We expect to be able to roll this out later this year.
    • Importing guides from the .PSD as well as having the rulers on the sides
    BB> Good idea, and we're considering this. For now, some people are creating guides on a layer in Ps, then toggling that layer's visibility in Parfait.
    • When doing a Shift + Click on two elements, depending on the circumstance, spit out the margin or padding values into the CSS panel
    BB> This is also something we've considered. We think this should be done in combination with adding support for guides or another temporary measurement aid, so you can position the container around an item to make sure you get the info you want. Still working out design and details on this one, and no ETA.
    • Having something like a marquee tool to measure between two points (I know this can be done using the Shift+Click but some elements aren't accurate eg. images inside clipping masks)
    BB> Yes, we're considering this, as I mentioned in the point above.
    • The tags that are created when you select a font in the right-hand-side panel are black with a white "T", it's quite hard to see (not really a feature but I thought it was worth mentioning )
    BB> Thanks for the feedback, and we'll take another look at them to see if we can improve.
    And thanks for offering to help with testing - we are improving Parfait and pushing out new builds frequently, so please check back often and let us know what you think.
    Bruce
    Parfait product manager

  • 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.

  • Looking for the New Upgradations in Project Costing from 11.5.3 to 11.5.10

    Hi All,
    Iam looking at the New Features added in Project Costing as we need to give a demo for the client on the advantages of Upgrading from 11.5.3 to 11.5.10. any record on these lines would be of great help to us.Appreciate your kind suggestions in this regard.
    Thanks in Advance,
    Satyam Team

    Hi, a basic brief of the upgrade the principal steps are:
    1.- Cloning your 11.5.3 OEBS to a new server (IBM AIX 5.2), with similar characteristics to the final server in Production.
    2.- To continue with the steps described in the note of metalink 316365.1 - Oracle Applications Release 11.5.10.2 Maintenance Pack Installation Instructions.
    3.- To do a set of tests that include cycles of revenue and expenditures, this way as technical tests, and review all customizations.
    This basic step must be led to end in an environment of test, and when all the tests certified the environment , to do it in production server.
    Good Luck

  • My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTune.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTunes.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    Hi..
    here can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?
    Not possible. You need to update to v10.6.8
    Click your Apple menu > Software Update
    Or update using the this download > Mac OS X 10.6.8 Update Combo
    Then restart your Mac.

  • Looking for a new soundcard that allows use of mic and headphone connections on front of c

    Hello,
    I'm looking for a new soundcard to replace my on-board sound. My case, Antec P80, has two jacks on the front that allows me to connect a mic and a set of headphones...
    Are there any soundblaster products that will allow me to use these two jacks?
    Regards,
    -Jeff

    k0balt wrote:
    Hello,
    I'm looking for a new soundcard to replace my on-board sound. My case, Antec P80, has two jacks on the front that allows me to connect a mic and a set of headphones...
    Are there any soundblaster products that will allow me to use these two jacks?
    Regards,
    -Jeff
    If you're asking Creative card ... all cards with 0-pin properiatry connector onboard can do this partly (i.e. not 00% functioning) if you make DIY connection like showen on article --> http://audigy2zshowto.blogspot.com/
    Perhaps some mb-integrated (onboard) SB systems from certain vendors has this connection utilized the way, as it's done with your onboard sound.
    jutapaMessage Edited by jutapa on 03-2-200609:3 PM

  • Looking for a specific feature in an FTP Client

    Hello!
    I am looking for a "simple" feature in any FTP client for OS X.
    I have tried Fetch, Transmit, CyberDuck and Interarchy 7.x and none had the ability to throttle uploads/downloads. I work with a limited bandwidth and sometimes have to download files (or upload) in the background but at a very slow speed (because the peer has a poor connection).
    None of these nice (and they are nice!) ftp programs can do this. I have to either use wget via the command line (wget --limit-rate=xx) or use Total Commander for Windows inside a Parallels Virtual Machine.
    Does anybody know about a Mac FTP client that can throttle and enqueue items easily?
    Thanks in advance!

    Look at "lftp". It as about a zillion parameters that can be set. One of them is "net:limit-total-rate"
    Quoted from the Docs....
    limit transfer rate of all connections in sum. 0 means unlimited. You can specify two numbers separated by colon to limit download and upload rate separately. Note that sockets have receive buffers on them, this can lead to network link load higher than this rate limit just after transfer beginning. You can try to set net:socket-buffer to relatively small value to avoid this.
    Find lftp here lftp.yar.ru It is also in thr Fink archive. http://fink.sourceforge.net/

  • Looking for a new laptop, I work in finance.  Air book or the macro with retina?

    Looking for a new notebook.  I work in finance and travel.  Is the Mac Pro with Retina worth the extra weight or should I go with a Air book?

    Welcome to Apple Support Communities
    The MacBook Pro with Retina display is worth, but it's limited. Note that you can't upgrade anything after buying it without voiding the warranty. The same happens with the MacBook Air.
    Simply, if you have to run heavy applications, buy the MacBook Pro with Retina display. If not, buy the MacBook Air

  • Looking for a new laptop

    Hi.
    Because of an unexpected hardware problem I'am looking for a new laptop.
    The last weeks I've informed me a bit of some laptops but I'am not really sure:
    My favorite is Samsung R560-Aura P8400 Madril but my last notebook had an ATI graphic card and the last months I was really enthusiastic about the getting better official drivers.
    And whats with the the FN-keys, webcam, bluethooth, wlan card and support? Some experiences?
    Thanks, Andreas
    Last edited by echasslau (2008-12-11 22:49:30)

    Or get a Bamboo?

  • If i want to contact apple with an idea i have for a new feature for the iphone how would i do this?

    if i want to contact apple with an idea i have for a new feature for the iphone how would i do this?

    A quick google search would have revealed the answer.
    http://www.apple.com/feedback/iphone.html

  • Where can I send an idea for a new feature.

    I have an idea for a new feature in Illustrator. I'd like to share it to the developers.
    Is there a channel to send your idea?
    Thank you!

    Thanks for the replies.
    I know that this feature does not serve everybody, but I could use it on a weekly basis.
    I don't know if there is a script for this, and if there is, plese let me know it.
    Transparent working window.
    So I could set my whole artboard window transparent and still work on it.
    I could easily and fast trace some shapes from locked PDF's and also directly from the browser without copying the image to my computer.
    The problem is, of course, that Zoom would only work in the graphics in the Illustrator (needless to say) and would not affect to the graphics behind the Illustrator window.
    But still I think I could use it very much.
    For examble I could manually draw simple shapes and logos straight from the customers website, without downloading the poor JPG image.
    Please let me know what you think about it.
    Sorry if there is some mistakes, English is not my native.
    I hope you got the point.

  • How to ask for a new feature in SBO

    Is there a way to ask for a new feature in SBO ? A page or procedure ? I client wants to do it through the proper channels.

    Hi......
    Take SDk help in terms of Addon in order to plug the new features......
    Regards,
    Rahul

  • Looking for a new 13' or smaller laptop. Do you recommend U330 and U110?

    Hi all,
    My 4-year old T42 just died. I'm looking for a new laptop. I want the following:
    13' or smaller
    Lightweight
    Good performance for home and work use, may run PS or some authoring tools
    May play small games, mainly Internet, movies
    DVD recordable?
    Bugget is up to $1500
    I am interested in U330 or U110 (so pretty). Any recommendations?
    Thanks,
    CoCo

    CoCo,
       I have found that there sadly isn't much information on this forum about the U110, but I'll offer some comments that perhaps you may find useful.  I also have a Thinkpad T40p that I have had for a few years and like it very much.  It has the SXGA+ screen (1140x1050) which I like a lot.  While it has been a great laptop and pretty portable (less than 5 pounds), my wife and I take a lot of road trips in our Corvette and the T40 is a bit hard to manage in the car (we use it for our map program a lot).  So when I saw the little notebooks (or netbooks) at Costco I was intrigued.
    I didn't really like any of the cheaper netbooks that much, except for the nice price of $500 and under, so I started looking to see what else was available.  I found the U110, which seemed to be a comparitively powerful and well built computer (especially when compared to the cheap netbooks), but the price tag of $1500 and up was too much.  I found a slightly used one on ebay still under warrantee for $800, so I bought it.
    I started reading up on it on various forums and online reviews and a common complaint about the U110 was that is was slow using Windows Vista.  But a number of opinions recommended Windows XP, and since my other computers (T40 and two desktops) run XP, I thought this would be for me as well on the U110.
    When I got the U110, I too was somewhat disappointed in the performance of Vista, although I will admit I'm not familiar with Vista while being very familiar with XP.  So I decided to delete Vista and install XP, which turned out to be somewhat of an ordeal because I could find very little information on this forum or elsewhere regarding the details of the U110 partitioning and other related issues.  It is actually very easy, but it is very helpful if you talk to someone who has done it and can offer suggestions and procedures.  
    Since I installed XP I am very happy with the performance and it's a great little, and VERY portable, computer.  It will be a great travel computer because of its portability.
    With all of that said, I'm not sure I would recommend it for a direct replacement of your T42.  First of all, you said your T42 "died".  Before giving up on it, I'd suggest you go to the Thinkpad forum - Google search for "thinkpad forum" and you'll find it - and go to the T4x Hardware forum.  There is a ton of information there and a lot of people contribute to it.  There are many problems solved, and it is likely your T42 may be salvagable.  It's a great computer.
    While I like the U110 a lot, the larger Thinkpad displays are easier to read if you'll be staring at them for long times.  The U110 is fine for quick internet surfing and getting information, but it can't compare to the bigger displays.  What the U110 is great for is being really portable.  If that is your primary consideration, the U110 is your answer.  But if portability is not your primary concern, I'd stick with the Thinkpad.  And pricewise, the Thinkpad will be considerably less expensive than a late model Thinkpad like a T60 or similar.  You can pick up a good T60 for under $600, while I got a good price on my U110 for $800.  Performance wise, the Thinkpad is a real bargain.
    The U110 will do what you want it to - DVD recording, small games, internet, movies, etc.  But you mentioned "home and work use", and I'm thinking you might mean this to be your only computer.  While I really like the U110, I wouldn't want it for my only computer - it's just too small.  The display is too small and the keyboard, while just fine for travel, will not compare to larger Thinkpad's.  
    I haven't seen the U330, but it's my impression that the Ideapads are sort of a lower end product when compared to the Thinkpads.   I won't give up my T40p until I can't fix it, and even then I will buy another one to replace it.  But my U110 is still a great little travel companion.
    These are my opinions and impressions.  If you get a U110, please post your own impressions so others can benefit.
    Good luck,
    Ray Kawal
    Sequim, WA 

Maybe you are looking for

  • Production order settlement (Accounting entries)

    Dear Sapians, I need your advice to clear my following confusion: I have a finished material which is maintained on Variable price in material master. Assume the price being 100 and only 1 item is in stock currently. My production department produces

  • DVD burned on iDVD stutters on DVD player. Am I doing something wrong?

    Hi there, i'm new to burning DVD's and using this Apple Disscusion, so please bare with me! So, I tried to use iDVD to burn a home movie onto my disk which is: Aone 8X DVD-R 120 Minutes 4.7GB Everything seemed to burn fine onto my disk and played bac

  • File Adapter: Fixed length file read fails when all data not present

    Hi We have a BPEL process that reads fixed length data files. It works fine when all the data elements are available in the file but fails with 'rejected:10002' when even a single data is missing. How to handle this situation in BPEL file adapter? Ar

  • Problem using getCurrent() and setCurrent()

    In the following code snippet: public class MyMidlet extends MIDlet {    public void startApp() {       Display.getDisplay(this).setCurrent(new Form("")));       System.out.println("" + Display.getDisplay(this).getCurrent())); }my application prints

  • How to Prohibit Sales Price Lower Than Material Standard Cost

    Hi Moderators: I got a problem from our sales departement, because they found a manual mistake, that was, somebody who maintained a incorrect sales price in the condition record which was lower than the standard price in the material master data! Thi