Performance Tuning in case of Database Access

Hi,
  I am using following code...database access is huge for this code...pls help me out to make database access minimum. I am using 3 internal tables.
select partner1 partner2 into (mtab-busi_part, mtab-BUT051_PART)
from but051.
Select  name_first name_last PARTNER_GUID into (mtab-bp_first, mtab-bp_last, MTAB-R_PARTNER_GUID)
From but000 where partner = mtab-busi_part.
*MTAB-OBJECT_ID = ITAB-OBJECT_ID.
append mtab.
endselect.
ENDSELECT.
*ENDLOOP.
loop at mtab.
CONCATENATE mtab-bp_FIRST mtab-bp_LAST INTO mTAB-bp_full
                                    separated BY SPACE.
modify mtab.
endloop.
loop at mtab.
if mtab-bp_full = ' '.
  select name_org1 into (mtab-bp_full)
  from but000 where partner = mtab-busi_part.
append mtab.
  endselect.
endif.
modify mtab.
clear mtab.
endloop.
SELECT OBJECT_ID GUID INTO (NTAB-object_id, Ntab-guid)
FROM CRMD_ORDERADM_H
for all entries in itab
where process_type = '1001' and object_id in o_id.
select single date_1 date_2 from crmv_item_index into (ntab-date_1, ntab-date_2 )
where object_id = ntab-object_id.
endselect.
Select partner_no partner_fct into (Ntab-partner_guid, Ntab-partner_fct)
from bbp_pdview_bup where guid_hi = Ntab-guid .
*and partner_fct <> '00000015'
Select partner name_org1 into (Ntab-partner_no2, Ntab-others)
from but000 where partner_guid = Ntab-partner_guid.
  if sy-subrc = 0.
  SELECT SINGLE DESCRIPTION FROM CDBC_PARTNER_FT INTO NTAB-DESC
  WHERE PARTNER_FCT = NTAB-PARTNER_FCT AND SPRAS = 'EN'.
  endif.
  SELECT  PAFKT ABTNR PAAUTH
  FROM BUT051 INTO corresponding fields of  nTAB
  WHERE PARTNER2 = ntab-partner_no2  .
       if sy-subrc = 0.
       SELECT single BEZ30 FROM TB913
    INTO CORRESPONDING FIELDS OF nTAB
    WHERE PAFKT = nTAB-PAFKT AND SPRAS = 'E'.
    endif.
     if sy-subrc = 0.
    SELECT single BEZ20 FROM TB915
    INTO CORRESPONDING FIELDS OF nTAB
    WHERE PAAUTH = nTAB-PAAUTH AND SPRAS = 'E'.
    endif.
*endselect.
        if sy-subrc = 0.
    SELECT  single BEZ20 FROM TB911
    INTO (nTAB-BEZ2)
    WHERE ABTNR = nTAB-ABTNR AND SPRAS = 'E'.
endif.
endselect.
APPEND NTAB.
*clear ntab.
*ENDSELECT.
ENDSELECT.
*clear ntab.
ENDSELECT.
ENDSELECT.
loop at ntab.
  if ntab-others = ' '.
    select name_first name_last into (ntab-first_name1, ntab-last_name1)
    from but000 where partner = ntab-partner_no2.
    endselect.
    CONCATENATE ntab-FIRST_NAME1 ntab-LAST_NAME1 INTO nTAB-others
                                    separated BY SPACE.
  endif.
  modify ntab.
  clear ntab.
endloop.
SORT NTAB BY GUID.
SELECT OBJECT_ID GUID INTO (KTAB-object_id, Ktab-guid)
FROM CRMD_ORDERADM_H
for all entries in itab
where process_type = '1001' and object_id in o_id.
Select  partner_no into (Ktab-partner_no1)
From crmd_order_index where header = Ktab-guid and pft_8 = 'X' and object_type = 'BUS2000126'.
*endselect.
Select name_first name_last into (Ktab-first_name, Ktab-last_name)
From but000 where partner = Ktab-partner_no1.
*endselect.
APPEND KTAB.
ENDSELECT.
ENDSELECT.
ENDSELECT.
loop at Ktab.
CONCATENATE Ktab-FIRST_NAME Ktab-LAST_NAME INTO KTAB-RESP_EMPLOYEE
                                    separated BY SPACE.
MODIFY KTAB.
clear Ktab.
endloop.
loop at Ktab.
  if Ktab-RESP_EMPLOYEE = ' '.
    select name_ORG1 into (Ktab-RESP_EMPLOYEE)
    from but000 where partner = Ktab-partner_no1.
    endselect.
    endif.
  modify Ktab.
  clear Ktab.
endloop.
SELECT OBJECT_ID GUID INTO (itab-object_id, itab-guid)
FROM CRMD_ORDERADM_H
where process_type = '1001' and object_id in o_id.
append itab.
endselect.
LOOP AT iTAB.
   LOOP AT NTAB .
     IF NTAB-object_id = iTAB-object_id .
          itab-date_1 = ntab-date_1.
          ITAB-DESC = NTAB-DESC.
          itab-partner_no2 = NTab-partner_no2.
          itab-partner_fct = ntab-partner_fct.
          itab-bez30 = ntab-bez30.
          itab-bez20 = ntab-bez20.
          itab-bez2 = ntab-bez2.
          itab-others = ntab-others.
          INSERT lines of nTAB INTO ITAB.
          modify itab.
          CLEAR ITAB.
         delete itab where object_id = ' ' and partner_no2 = ' '.
     ENDIF.
  endloop.
endloop.
sort itab by OBJECT_ID descending PARTNER_NO2 .
          delete adjacent duplicates from itab comparing partner_no2 object_id.
sort itab by OBJECT_ID descending PARTNER_NO2 .
loop at iTab where partner_fct = '00000015'.
  LOOP AT mTAB WHERE BUT051_PART = iTAB-partner_no2 .
   itab-busi_part = mtab-busi_part.
   itab-bp_full = mtab-bp_full.
   ITAB-R_PARTNER_GUID = MTAB-R_PARTNER_GUID.
  INSERT  LINES OF mTAB INTO iTAB.
   modify itab transporting busi_part bp_full r_partner_guid.
    endloop.
endloop.
sort itab by busi_part descending partner_no2.
delete itab where object_id = ' '.
loop at ITab.
  LOOP AT KTAB.
   IF KTAB-GUID = ITAB-GUID.
    move Ktab-partner_no1 to itab-partner_no1.
   move Ktab-R_partner_GUID to itab-R_partner_GUID.
    move Ktab-RESP_EMPLOYEE to itab-RESP_EMPLOYEE.
    modify itab.
   ENDIF.
endloop.
endloop.

Hi
i will give you some tips to reduce the daya base load please apply that
<b>Tips and Tricks</b>
Optimizing the load of the database
Using table buffering
     Using buffered tables improves the performance considerably. Note that in some cases a statement can not be used with a buffered table, so when using these statements the buffer will be bypassed. These statements are:
Select DISTINCT
ORDER BY / GROUP BY / HAVING clause
Any WHERE clause that contains a sub query or IS NULL expression
JOIN s
A SELECT... FOR UPDATE
     If you wan t to explicitly bypass the buffer, use the BYPASS BUFFER addition to the SELECT clause.
     Optimizing the load of the database
2.  Use the ABAP SORT Clause Instead of ORDER BY
The ORDER BY clause is executed on the database server while the ABAP SORT statement is executed on the application server. The database server will usually be the bottleneck, so sometimes it is better to move the sort from the database server to the application server.
If you are not sorting by the primary key ( E.g. using the ORDER BY PRIMARY key statement) but are sorting by another key, it could be better to use the ABAP SORT statement to sort the data in an internal table. Note however that for very large result sets it might not be a feasible solution and you would want to let the database server sort it.
Optimizing the load of the database
3.   Avoid the SELECT DISTINCT Statement
As with the ORDER BY clause it could be better to avoid using SELECT DISTINCT, if some of the fields are not part of an index. Instead use ABAP SORT + DELETE ADJACENT DUPLICATES on an internal table, to delete duplicate rows.
Additional Info
Use of CONTEXT can highly optimize the code.
      Context can be created using Context Builder (SE33)
     Context advantages:  - no double fetch by DEMAND: 1. fetch, 2. get from buffer  - more performance (best SELECT-statement)  - better survey of code
Use of PARALLEL CURSOR  increases the Performance to a great extent.
INDEXES help to speed up selection from the database. The primary index is always created automatically in the SAP System. It consists of the primary key fields of the database table. If you cannot use the primary index to determine a selection result (for example, WHERE condition may not contain any primary index fields), you can create a secondary index.
Optimal number of indexes for a table  You should not create more than five secondary indexes for any one table because:
Whenever you change table fields that occur in the index, the index itself is also updated.
The amount of data increases.
The optimizer has too many chances to make mistakes by using the 'wrong' index.
         If you are using more than one index for a database table, ensure that they do not overlap.
reward if useful

Similar Messages

  • Performance tuning of Oracle 9i Database

    I want to know, what are the different parameters in the tuning of Oracle 9i database.
    A few, i can list like
    1) Re-building of indexes
    2) Making the heavy transaction tables lighter
    3) Checking if the indexes are firing
    In a similar fashion, i needed what are the other parameters which can be a good indication of the health of the database. I hope, my question is clear.
    Please, help in solving the doubt.
    regards

    Hmm there is parameter coming up called _<your db name>_fast=true in some later future release.Its still not implemented yet but expected to be coming up soon due to excessive demand.
    Your list's first element only is the show-stopper.Richard Foote has talked extensively about this.Its almost never that a index is requiriing a rebuild.There should be benchmarks to prove the benefit (if any ) of the operation.Please visit his blog http://richardfoote.wordpress.com to readmore about this.
    2) Making the heavy transaction tables lighter
    I didnt get this one.
    3) Checking if the indexes are firing
    You mean by chance that they are in use or not?If yes than again this may not be the indication of the success truly.It may be possible that they are in use but not the right thing for the query.BTW indexes being used or not is not the database health check.Its the query's health check.
    There are no certain parameters which needs to be on a cerain value.Every parameter and its value can have variation depending upon the environment,workload and most importantly release of the databse.If you want to benchmark your db's health ,I shall suggest take a STatspack report before the problem and when you see a variation in it and compare.This will give you the lead to find the bottleneck in the db's performance.Instance tuning(changing parameters) is the last resort or near to last one.
    Aman....

  • Performance tuning of database using DBACOCKPIT

    Hiii Experts,
    I have installed new server with OS:- Windows server 2012 and DB:- Sybase ASE 15.07.
    Now I want to perform performance tuning of SAP and Database, so for that I have configured
    DBACOCKPIT but I could not change the parameter values so could you tell me how to change
    parameter values and how to use DBACOCKPIT  for performance tuning.
    Thank you,
    Regards,
    Omkar M.

    DBA_Guide wrote:
    Reports running slow, not sure if database is using Start transformation for the Datawarehouse  Database.
    Used hint  */+ STAR_TRANSFORMATION */, still no performance increase.
    Checked database parameter -
    SQL> show parameter star;
    NAME                                 TYPE        VALUE
    dg_broker_start                      boolean     FALSE
    fast_start_io_target                 integer     0
    fast_start_mttr_target               integer     0
    fast_start_parallel_rollback         string      LOW
    log_archive_start                    boolean     FALSE
    star_transformation_enabled          string      TRUE
    Any Help is appreciated.
    Thanks!
    If star transformation was not the cause of the slowness, of course it won't make it faster.
    I bet you any number of other different hints will result in no change in performance.
    This is like replacing gas tank on your car with a LARGER tank & filling it with more gasoline to make the car go faster.
    The amount of gasoline is not a factor that limits the speed of your car.

  • Performance tuning SELECTs:  Can I force a TRUE db read every time?

    Good day everyone!
    I've been programming in ABAP for almost 6 years now, and I'd like to begin learning more about performance tuning with respect to database performance.
    More specifically, I'm testing some things in a particular SELECT in a report program we have that is timing out in the foreground because of the SELECT.  When I first run the program, the SELECT goes against the database, as we all know.  Subsequent runs, however, use the buffered data, so the response is a lot quicker and doesn't really reflect that first, initial database read.
    Am I correct in assuming that I should be testing my various approaches and collecting performance runtimes against that initial, "true" database read?  If that's the case, is there any way I can force the system to actually read the database instead of the buffered data?  For those experienced with this kind of performance analysis and tuning, what's the best approach for someone very new to this area such as myself?
    Thank you,
    Dave

    Hi Dave and Rob,
    Just my two cents (and yes, I know this is already answered, but..).
    I think you might be confusing 2 things: one is SAP buffering, and another one is caching at other levels (database, operating system, etc).
    From what I understood Rob was talking mainly about SAP buffering. In that context it is true that if there is a first execution that loads the buffers (for example, some not so small fully buffered tables) then that is an atypical execution, and should be discarded. In real life you will never have execution times like those, except maybe on the very first execution on a monday morning.
    Another thing is database caching. If you execute a report twice with exactly the same parameters then you might not be actually making physical reads in the second execution. This second execution will be very fast, but that will not be simulating real life: no user wants a report to be fast the second time you execute it with exactly the same parameters.
    To avoid this in Oracle you can empty the so-called SGA, but that is not so useful and it will probably not get you closer to what happens in the real life.
    So what to do? In doubt, measure it several times, with different parameters, and probably exclude the extreme values.
    Regards,
    Rui Dantas

  • Performance Tuning / RAC

    Hi,
    does anybody know recommendable docs, study guides or books covering Performance Tuning or RAC for database 11g.
    Thanks in advance.
    Uli

    Hi Dan,
    thanks for your reply. I have downloaded these docs and will read them as soon as possible.
    Additionally I'm interested in recommendable books covering performance tuning.
    What do you think about "Troubleshooting Oracle Performance", Christian Antognini, Apress? Customer reviews are very positive. However, it is published in 2008. Is it up-to-date? Does anybody know the "Oracle Performance Survival Guide", Guy Harrison, Prentice Hall?
    Which performance books are your favorites?
    Best Regards
    Uli

  • NOW LIVE: Oracle Database 11g - Performance Tuning Exam (1Z0-054)

    !http://blogs.oracle.com/certification/ORC-0128.jpg!
    The new *"Oracle Database 11g: Performance Tuning" certification exam (1Z0-054)* is now live, which is a single exam requirement for Oracle 11g DBA OCPs to earn the Oracle Database 11g Performance Tuning Certified Expert (OCE) certification.</p>
    <p align="justify">This certification endorses those database administrators, support engineers, and technical consultants who have demonstrated their knowledge and skills using Oracle Database 11g automatic tuning features, including SQL Tuning Advisor, SQL Access Advisor, Automatic Workload Repository and Automatic Database Diagnostic Monitor.</p>
    <p align="justify">Candidates taking this exam at test centers will now receive their exam scores and pass/fail status immediately at the completion of their exam. Score reports have just been shipped to those candidates who participated in the beta period. If you participated in beta testing and did not yet receive your score report, please contact [email protected]</p>
    <p align="justify"><strong>QUICK LINKS</strong></p>
    <ul><li>Certification Track: Oracle Database 11g Performance Tuning Certified Expert (OCE)</li>
    <li>Certification Exam: 1Z0-054 &ndash; Oracle Database 11g: Performance Tuning</li>
    <li>Stay Up To Date: Oracle Certification Blog | Oracle Certification Website</li>
    </ul>

    Naveen Kumar C wrote:
    Hi,
    y
    I want to take the certification Oracle Database 11g: Performance Tuning exam 1Z0-054 and want to write the exam.
    To earn the OCE credentials, I know that we need to take training from Oracle University. I am not an OCP currently.
    Can I write the exam now and later take the course to meet the certification requirements? I know it is not the right way, but I can not pay $3000 for the course as of now. I can write the exam through self study. I want to check if I can take the exam now and later take the course.
    Is it mandatory to take the course before taking the exam?
    Thanks,
    naveen.Indeed you can take the exam now, and subsequently earn the 11g PERFTUNE OCE credential when you either:
    1) complete, submit and get verified the OU authorised 11g perftune course (possible but seems a little cart before horse).
    or
    2) Become 11g DBA OCP.

  • Error: You do not have sufficient access to perform a lock on this database

    Hi,
    Can anyone help on this.
    When user try to load data through Excel it throws the following error "You do not have sufficient access to perform a lock on this database"
    We are using Essbase 6.5.
    We have tried following options
    FIX1:
    In Microsoft Excel, under ESSBASE -> OPTIONS, under the MODE tab, the check box UPDATE MODE is checked.
    When the UPDATE MODE check box is selected retrievals will automatically lock the corresponding database area with each retrieval. Disable Update Mode to stop locking blocks automatically. In update mode, the Send command (which updates the server with data values from the spreadsheet) does not automatically unlock data after the send.
    1. Launch Microsoft Excel
    2. Select ESSBASE -> OPTIONS
    3. Select the MODE tab
    4. Uncheck "Update Mode" to return to normal mode
    This error is seen when trying to lock and send data via the Hyperion Essbase Spreadsheet Add-in into that fall within a replicated target partition definition
    1. Go to HYPERION APPLICATION MANAGER -> DATABASE -> PARTITIONMANAGER
    2. Select the relevant partition
    3. Select EDIT
    4. On the CONNECT TAB, select SETTINGS and tick the option THETARGET PARTITION CAN BE UPDATED
    Also gave write access to that user.
    Can anyone give another possible solutions.
    With thanks,
    babu

    Hi Raja,
    Check this out../
    Weird problem regarding Essbase Excel plug in
    It might help
    Regards
    Amarnath

  • Error: "You do not have suffficient access to perform a lock on this database

    Hi, <BR><BR>I have a problem with Essbase Excel Add-in, i can´t retrieve because appears this error: Error: "You do not have suffficient access to perform a lock on this database<BR><BR>Plese, help me. Idon´t have speak inglish.

    If the problem is limited to a single PC, I would suggest that you uninstall the Essbase client on that PC, reboot, and the reinstall the client including the addin. <BR><BR>It appears that some sort of macro is running on that PC that does teh login in update mode. I'd also remove all copies of any excel spreadsheets that might be involved, copying a clean version from another PC.<BR><BR>If you are using any third-party tools, like toolbars or other addins for excel and essbase, I'd clean them out also. <BR><BR>You haven't said whether a login from an new, blank spreadsheet works. If it does, the problem is in the spreadsheet you are using to retrieve the application, otherwise, the problem may be in a corrupted add-in, or even possibly with your excell installation.<BR><BR>It's hard to diagnose a problem when you haven't given us any more information about the problem. You haven't really answered any of the questions we've asked about behaviour and whether the problem existsin certain other circumstances. I'm certain that if language is a problem, someone might be able to help you in some language other than English, but generally this forum works in English because it a a common language in the Hyperion community.

  • Can i use "Oracle Database 12c: Performance Management and Tuning " training for getting certification on "Oracle Database 11g: Performance Tuning 1Z0-054"

    i have taken "Oracle Database 12c: Performance Management and Tuning new" training from oracle university. Now i would like to get certified on "Oracle Database 11g: Performance Tuning 1Z0-054" exam. Is it possible ?

    I essentially endorse and refer you to Matthews' and John's post above.
    I would differ with slightly with Matthew because my guess is you would often be able to use like for like 12c training for an 11g certification ( I believe there are precedents).  BEFORE ANYONE ASKS THE OTHER WAY DOESN'T HAPPEN.
    .... but totally concur with Matthew you would ill advised to procede on that basis without one of:
    - This being advertised as possible on the website : e.g. https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=654&get_params=p_id:169 ... option 2 show courses.
    - Confirmation from Brandye
    - Confirmation from an Oracle Certification Support Web Ticket ( http://education.oracle.com/pls/eval-eddap-dcd/OU_SUPPORT_OCP.home?p_source=OCP )
    ... The more common (and in my opinion usually better) way would be get your 11g DBA OCP ( or higher first) and then take the 1z0-054.  I am almost certain they will accept your 12c course for the 11g DBA OCP.
    If you are choosing the route of not being a 11g (or 12c ) DBA OCP first but are on option 2 and relying on the course for certification then the issue is more in the balance and you are even more strongly advised to get confirmation before proceding (remember if the rules need to be changed for you only then any profit out of the exam is lost).
    In general my understanding is Oracle would prefer to encourage people to train on the latest version of product that is available for training  and will prefer to avoid restrictions which would cause you to train at a lower version.  ( This is simply my guess at Oracle University Policy ... personal opinion only).
    Having said all I have said I'd encourage you to go with the advice of the earlier two posts.

  • Oracle 11 G database performance tuning

    How to indexing the oracle 11G database?
    Thanks in advance.

    Your question is like if you ask "Tell me how to fix a car". As you know people spend years learning how to fix different problems with cars; the same applies to database performance tuning. There is no way to answer this question in one post. Please ask a more specific question in an apropriate (database related) forum.
    cheers

  • Oracle Database 10g: Performance Tuning guide

    Oracle Database 10g: Performance Tuning guide
    can any one help me where i can get above mentioned guide
    thanx in Advance
    regards,

    There's this wonderful website called Google: http://www.google.com. If you type in the exact same thing as this thread title, the first results listed will no doubt shock, surprise and amaze you ...
    Enjoy !!
    Cheers
    Richard Foote
    http://richardfoote.wordpress.com/

  • Performance improving in database access

    in se30 how shd i c the table acess to  in the analysis.
    for a kna1 table i shd c the no of accesses.
    in 4.6c
    goto->objecthitlist->database table is not  active ...
    is there any other way ..
    how shd i confirm that performance is incresed after  modifying a code.

    the SE30 can not help you much with that problem (also the database display which appears ponyl if ou use 'no aggregation' )
    For details on database accesses you need to run the SQL Trace, the SQL Trace is in any system since a very long time.
    See my weblog for details:
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/cs/junior/search/wlg?id_user=46921
    Siegfried

  • Check the database ( Performance , tuning ,  . . . . . . . , etc  )

    Dears,,
    If i have running database and i need to make check health for it for performance , tuning , . . . , etc
    Is there any steps or advisors or documentations to go ahead with them enable me to check the database health.
    Thanks & Regards,,

    Eng.Mohammed wrote:
    Dears,,
    If i have running database and i need to make check health for it for performance , tuning , . . . , etc
    Is there any steps or advisors or documentations to go ahead with them enable me to check the database health.
    Thanks & Regards,,
    One way to check for performance issues is to see if your telephone is ringing. If no one is calling to complain, then you don't have any problems.
    I'm only half joking. Which means I am half serious. While you shouldn't take a completely cavalier attitude toward performance, neither do you want to fall victim to Compulsive Tuning Disorder.
    Start with the 2-Day DBA manual. Follow up with the tuning guide. Both at tahiti.oracle.com
    And remember, no matter how much effort you put into tuning, there will always be a "Top Five" wait events. Is it worth 40 man hours of effort to get a 75% reduction in average response time? Really? Even if the average response time is already 0.5 seconds? Is the user going to be able to perceive that 0.38 seconds improvement?

  • Dates for "Oracle Database 11g: Performance Tuning" exam

    Hi!
    Today Oracle posted info about the new Oracle Database 11g Performance Tuning exam needed for the new expert certification:
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_054#2
    It says that pre-registration for the beta exam starts today, however, it does not say when the beta phase starts and ends. Does anyone know?
    Thanks,
    Marcus

    Hello Hussein
    Yes true, I remember it for the OCE and Linux exams they rescheduled the end date several times. As far as I know it is related to the number of participants and the given feedback.
    I've also participated to several other exams, and I must admit that it is a long and hard process to get through. When I got the feedback 10 weeks after the beta period closure, I had to review nearly all the topics to get the exams passed the second time. But this it is a cheap and good exam preparation.
    What about you Hussein? Do you think that's trivial?
    Cheers,
    Hub

  • Oracle Database 11g: Performance Tuning exam 1Z0-054

    Hi,
    I want to take the certification Oracle Database 11g: Performance Tuning exam 1Z0-054 and want to write the exam.
    To earn the OCE credentials, I know that we need to take training from Oracle University. I am not an OCP currently.
    Can I write the exam now and later take the course to meet the certification requirements? I know it is not the right way, but I can not pay $3000 for the course as of now. I can write the exam through self study. I want to check if I can take the exam now and later take the course.
    Is it mandatory to take the course before taking the exam?
    Thanks,
    naveen.

    Naveen Kumar C wrote:
    Hi,
    y
    I want to take the certification Oracle Database 11g: Performance Tuning exam 1Z0-054 and want to write the exam.
    To earn the OCE credentials, I know that we need to take training from Oracle University. I am not an OCP currently.
    Can I write the exam now and later take the course to meet the certification requirements? I know it is not the right way, but I can not pay $3000 for the course as of now. I can write the exam through self study. I want to check if I can take the exam now and later take the course.
    Is it mandatory to take the course before taking the exam?
    Thanks,
    naveen.Indeed you can take the exam now, and subsequently earn the 11g PERFTUNE OCE credential when you either:
    1) complete, submit and get verified the OU authorised 11g perftune course (possible but seems a little cart before horse).
    or
    2) Become 11g DBA OCP.

Maybe you are looking for

  • What does this error message mean? (startup disk memory)

    Hello, I am running OS 10.7.2 (Lion) on a new'ish 27 inch iMac, and I am getting the following error message appearing randomly on my screen: "Your Mac OS X startup disk has no more space available for application memory" There is a yellow exclamatio

  • My JTable Column is not removing?

    public class  ClassA extends JPanel     private DefaultTableModel model = new DefaultTableModel();     private JTable table = new JTable(model);      public ClassA ()      {  this.add(new Table1Panel() );      public class Table1Panel extends JPanel

  • Require assistance in choosing an email provider

    Hello I have never had my own email account, I do however have one provided by work but it has only been needed internally and there hasn't been an instance where I have needed to access my work email outside of work. I recently bought myself an ipho

  • Reconfigure Active Directory External Authentication plug in to use ssl

    Assuming this is the proper place to post this question: I've quickly gone through the IM integration documentation trying to find out how to reconfigure the ad external auth plugin to use ssl and have come up empty handed. Does anyone know how to do

  • Java se 6 on 10.5?

    Can anyone tell me how to install Java SE 6 on Mac OS 10.5? I think I have all the relevent updates, but still seem to be using Java 5. There's a web application I'd like to run that requires Java 6, and it isn't happy with current setup. Any advice