What are the Preparations recommended to Pass OCA 10gDBA(1Z0-042) exam ?

What are the Preparations recommended to Pass OCA *10gDBA(1Z0-042)* exam ?

My recommendations is as below:
1. You should be familiary with the [exam topics |http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_042] and read them from Documentation
2. You should read Sybex book [OCA: Oracle 10g Administration I Study Guide: Exam 1Z0-042|http://www.sybex.com/WileyCDA/SybexTitle/OCA-Oracle-10g-Administration-I-Study-Guide-Exam-1Z0-042.productCd-0782143679.html]
3. You should read McGraw Hill [Oracle Database 10g OCP Certification All-In-One Exam Guide|http://www.mhprofessional.com/product.php?cat=7&isbn=0072257903] book
4. And at the end, you should install Oracle Database and practice, practice and practice
Good Luck!!!
Kamran Agayev A. (10g OCP)
http://kamranagayev.wordpress.com

Similar Messages

  • What are the paramters to b passed to the bapi_salesorder_change?

    what are the paramters to b passed to the bapi_salesorder_change, and how the parameters to b populated?

    Check the documentation in SE37.
    how to use bapi to change so's schedule line category
    Help with BAPI_SALESORDER_CHANGE
    Regards,
    Amit
    Reward all helpful replies.

  • What are the browser recommendations for best viewing iWeb 08 site on a PC?

    What are the browser recommendations for best viewing iWeb sites on a PC? Can't find any info on Apple iWeb site.

    Hi,
    I don't think there are recommendations from Apple.
    What I can say is that the newest version of InternetExplorer at the UniversityCampus is working great with my website I didn't find any problem (Menus, Slideshows, text displaying, pictures everything worked great). There are IE problems reported in other threads but I think they refer to older IE versions (seems like most IE users still have older versions on their PCs).
    Newest Firefox will work too.
    Reagrds,
    Cédric

  • What are the parameters have to pass to bapi material creation?

    can any one help me in creating material by using bapi.....
    which is 'BAPI_MATERIAL_SAVEDATA'.....by using the above bapi wen i am creating material....how to pass data to that bapi....what are the thing s i ahve to pass.........

    hi
    please chk this code
    TYPES : BEGIN OF S_BAPI,
            MATNR LIKE MARA-MATNR,
            MBRSH LIKE MARA-MBRSH,
            MTART LIKE MARA-MTART,
            MAKTX LIKE MAKT-MAKTX,
            MEINS LIKE MARA-MEINS,
            MATKL LIKE MARA-MATKL,
            END OF S_BAPI.
    DATA : I_BAPI TYPE STANDARD TABLE OF S_BAPI WITH HEADER LINE.
    PARAMETER : P_FILE LIKE RLGRAP-FILENAME DEFAULT 'C:\Documents and Settings\mansi_makhijani\Desktop\upload.txt'.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
      CODEPAGE                      = ' '
       FILENAME                      = P_FILE
       FILETYPE                      = 'DAT'
      HEADLEN                       = ' '
      LINE_EXIT                     = ' '
      TRUNCLEN                      = ' '
      USER_FORM                     = ' '
      USER_PROG                     = ' '
      DAT_D_FORMAT                  = ' '
    IMPORTING
      FILELENGTH                    =
      TABLES
        DATA_TAB                      = I_BAPI
    EXCEPTIONS
      CONVERSION_ERROR              = 1
      FILE_OPEN_ERROR               = 2
      FILE_READ_ERROR               = 3
      INVALID_TYPE                  = 4
      NO_BATCH                      = 5
      UNKNOWN_ERROR                 = 6
      INVALID_TABLE_WIDTH           = 7
      GUI_REFUSE_FILETRANSFER       = 8
      CUSTOMER_ERROR                = 9
      NO_AUTHORITY                  = 10
      OTHERS                        = 11
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    DATA : S_HEADDATA TYPE BAPIMATHEAD,
           S_CLIENTDATA TYPE BAPI_MARA,
           S_CLIENTDATAX TYPE BAPI_MARAX,
           I_MAKT TYPE STANDARD TABLE OF BAPI_MAKT WITH HEADER LINE.
    LOOP AT I_BAPI.
      S_HEADDATA-MATERIAL = I_BAPI-MATNR.
      S_HEADDATA-IND_SECTOR = I_BAPI-MBRSH.
      S_HEADDATA-MATL_TYPE = I_BAPI-MTART.
      S_CLIENTDATA-MATL_GROUP = I_BAPI-MATKL.
      S_CLIENTDATA-BASE_UOM = I_BAPI-MEINS.
      S_CLIENTDATAX-MATL_GROUP ='X'.
      S_CLIENTDATAX-BASE_UOM ='X'.
      I_MAKT-MATL_DESC = I_BAPI-MAKTX.
      I_MAKT-LANGU_ISO ='EN'.
      I_MAKT-LANGU ='EN'.
      I_MAKT-DEL_FLAG =' '.
      CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
        EXPORTING
          HEADDATA                  = S_HEADDATA
       CLIENTDATA                  = S_CLIENTDATA
       CLIENTDATAX                 = S_CLIENTDATAX
      PLANTDATA                   =
      PLANTDATAX                  =
      FORECASTPARAMETERS          =
      FORECASTPARAMETERSX         =
      PLANNINGDATA                =
      PLANNINGDATAX               =
      STORAGELOCATIONDATA         =
      STORAGELOCATIONDATAX        =
      VALUATIONDATA               =
      VALUATIONDATAX              =
      WAREHOUSENUMBERDATA         =
      WAREHOUSENUMBERDATAX        =
      SALESDATA                   =
      SALESDATAX                  =
      STORAGETYPEDATA             =
      STORAGETYPEDATAX            =
      FLAG_ONLINE                 = ' '
      FLAG_CAD_CALL               = ' '
      NO_DEQUEUE                  = ' '
    IMPORTING
      RETURN                      =
    TABLES
       MATERIALDESCRIPTION         = I_MAKT
      UNITSOFMEASURE              =
      UNITSOFMEASUREX             =
      INTERNATIONALARTNOS         =
      MATERIALLONGTEXT            =
      TAXCLASSIFICATIONS          =
      RETURNMESSAGES              =
      PRTDATA                     =
      PRTDATAX                    =
      EXTENSIONIN                 =
      EXTENSIONINX                =
      NFMCHARGEWEIGHTS            =
      NFMCHARGEWEIGHTSX           =
      NFMSTRUCTURALWEIGHTS        =
    NFMSTRUCTURALWEIGHTSX       =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT          =
    IMPORTING
    RETURN        =
    ENDLOOP.
    ~hitesh
    If your queries are solved try to close the thread

  • What are the options "alert" and "passes" under my account info?

    Hi guys, I was going on viewing my account info, and I happened to see some options which I have no idea what are their usage? Can someone tell me what is the option "passes" and "alert" for? Thank you

    Passes will list any season passes you have purchased and still have some left to get.
    Alerts is to notify you of new music from artists you select.
    Go to the artist page in iTunes and scroll to the bottom and click on *Alert me*.

  • What are the Best Recommended Products for Mac OS X Server (Apache and ???)

    I investigated Oracle and PHP combo for robust database services to be able to create forms, store employee applications, resumes, do financial requests, invoices, ecommerce stuff, document and lists collaboration like Microsoft Sharepoint using Internet Information Services (IIS) and SQL Server, etc. What are recommended products that I can easily develop in to code and do the requested stuff using Mac current (Apache and ????) technologies?

    Of course it depends on your needs, but the OS X server already comes with Apache, Ruby On Rails, Python, Perl and SQL.

  • OCA 10g 1Z0-042 exam; Topics in the book 'OCP All In One Exam Guide'

    Hello All
    The book is divided into Part I (for 1Z0-042), and Part II (1Z0-043), however the Exam Topics doc on the website seems to cover more than is in Part I. E.g. Flashback is discussed in Chapter 29, a full seven Chapetrs into Part II!!
    Can anyone offer definitive advice on the chapters to study, and also if this book covers all the topics? Is the Sybex book more accurately laid out in terms of topics?
    Finally, I am considering buying the NetG tutorial disks, and the same question as above, do they cover all the material? I don't want to shell out £700 for nothing(!)
    Thanks all
    blowtree

    I must have been have been at the horses head. This is a sort of cross reference.
    This is one of the first exam I did. (It probably cross references from the books to the exam topics - actually it looks like it juest references between books!).
    I worked from the Oracle Press book as master the attacked the Sybex.
    I learnt my lesson. I now start off first with official authorative exam topics and build my notes framework from that.
    10g OCA Certification Oracle Press
    Chapter      Topic      PrepStatus
    Chapter 1(1)     Introduction to the Oracle Server Technologies     Basic Oracle Concepts
    Chapter 2(3)     Preparing the Database Environment     Installing Oracle 10g
    Chapter 3(4)     Creating an Oracle Database     Creating an Oracle Database
    (2)     Exploring the Database Architecture     -
    Chapter 4(-)     Interfacing with Oracle 10g Database     Interfacing with the oracle database
    Chapter 5(5)     Managing the Oracle Instance     Managing Oracle Processes
    Chapter 6(7)     Managing Database Storage Structures     Managing Database Storage Structures
    Chapter 7(8)     Administering User Security     Adminstering Database User
    Chapter 8(9)     Managing Schema Objects     Managing Database Objects
    Chapter 9(18)     Moving Data     Manipulating Database Data
    Chapter 10(10)     Managing Data and Concurrency     Programming with PL/SQL
    Chapter 11(12)     Implementing Oracle Database Security     Securing the Database
    Chapter 12(6)     Configuring the Oracle Network Environment     Configuring Oracle Networking
    Chapter 13(6a)     Managing Shared Server     Managing Shared Servers
    Chapter 14(14)     Performance Management     Managing Database Performance
    Chapter 15(13)     Database Maintenance     Monitoring Oracle
    Chapter 16(11)     Managing Undo Data     Managing Undo Data
    Chapter 17(10)     Managing Data and Concurrency     Managing Locking
    Chapter 18(15)     Backup and Recovery Concepts     Configuring DB for Backup Recovery
    Chapter 19(16)     Performing Database Backups     Backing up Oracle Database
    Chapter 20(17)     Performing Database Recovery     Recovery Oracle Databases
    Chapter 21(-)     Managing Globalisation in Oracle Databases     Managing Globalisation in Oracle Databases
    10g OCA Certification SYBEX
    Chapter 1(1)     Oracle DataBase 10g Components and Architecture      Introduction to the Oracle Server Technologies
    (2)     -     Exploring the Database Architecture
    (3)     -     Preparing the Database Environment
    Chapter 2(4)     Creating and Controlling a Database     Creating an Oracle Database
    (5)     -     Managing the Oracle Instance
    Chapter 3(7)     Database Storage and Schema Objects     Managing Database Storage Structures
    (9)     -     Managing Schema Objects
    Chapter 4(6)     Oracle Net Services     Configuring the Oracle Network Environment
    Chapter 5(6a)     Oracle Shared Server     Managing Shared Server
    Chapter 6(8)     User Administration and Security     Administering User Security
    (12)     -     Implementing Oracle Database Security
    Chapter 7(18)     Managing Data with SQL, PL/SQL and Utilities     Moving Data
    Chapter 8(11)     Managing Consistency and Concurency     Managing Undo Data
    (10)     -     Managing Data and Concurrency
    Chapter 9(13)     Proactive Database Maintenance and Performance Monitoring     Database Maintenance
    (14)     -     Performance Management
    Chapter 10(15)     Implementing Database Backups     Backup and Recovery Concepts
    (16)     -     Performing Database Backups
    Chapter 11(17)     Implementing Database Recovery     Performing Database RecoveryMore important than my rubbish is the list of extra topics at the end of [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=28&lang=US&p_exam_id=1Z0_042]

  • What are the required/recommended Antivirus exceptions for BPC ????

    I need to provide and implement a definitive list of required Antivirus exceptions for BPC (both Web and SQL servers).  We currently run v5.1 but I would also like to know if anything is different for v7, although I don't see why it would be.
    However, I only seem to have vague references to exception lists (e.g. BPC Log Files or SQL database files)
    So I find myself wondering what the rest of the BPC community do in this resepct ???
    If you could let me know what exceptions are generally made (or even better, if you have an actual list of recommended exceptions), I would be extremely grateful.
    Thanks
    Craig

    Do not real-time scan SAP BPC server program directories.
      Do not real-time scan SQL Server and Analysis Services server
    program directories.
      Do not real-time scan the SQL Server and Analysis Services data
    directories.
      Do not real-time scan log files, temp folders and backup
    directories.
      Monitoring of network traffic should be specific to file type where
    possible
      Ensure the SAP BPC XLA and DLL files are not scanned real-time
    (these files are located in the BPC program files directory)
      The OutlookSoft folder within the My Documents folder that stores
    application and personal files can be scanned but is likely to
    impact the performance of dimension downloads and the retrieval
    of documents from these directories (wizards, process selector
    menus, etc).
    Regards
    Sorin Radulescu

  • What are the methods available for passing data between Labview 6.0 VI and another custom windows program

    The big picture is that I'm trying to use labview to interface to a DSP board.
    I already have a small windows application "app" which communicates with the dsp. Now I want Labview to grab data from the "app" and plot/analyze ... etc.
    I'm a novice at this 'interprocess communication stuff", what can I use to pass data back and forth between between the "app" and LV?
    use ActiveX, DMA, streams, etc.?
    In a crude sense I could just have the "app" write the data to a file and then have LV read the file. (can two applications read the file at the same time?), but
    this seems very slow and clumsy. I'd rather have a RAM based FIFO which both could access.
    Thanks!
    G
    Details:
    Pentium120 Windows 95 Host
    Spectrum TMSC30 DSP
    VC++6
    LV6

    It depends on what 'interprocess communication' your "app" program has available.
    I regulary use DDE to control a PLL App which controls our PLL via the LPT Port. This is only a write process, but works very easily. The read is equaly easy. You need to know the various "keywords" like service, topic and instruction which the "app" will respond to.
    Generaly I found ActieX to be more extensive, meaning its probably going to take longer and more steps to achive similar simple results.
    The file does not seem to be the best way.
    Hope that helps a bit.

  • What are the jars required for prepare portlet tool?

    what are the jars required for prepare portlet tool which converts portlets to .portlet.

    HI
    you will  have to create manager as portal role and assigned to them  necessary worksets containing necessary worksets  look into the PCD in migrated content and line *?? folder you will have necessary ESS and Mss packages. and all configs is related to iviews system properties and transactions  and applications you need to do it .please do not forget to give points
    with regards
    subrato kundu

  • BAPI_SHIPMENT_COST_ESTIMATE  What are the min. required parameters to pass

    Hi All,
       I would like to know what are the minimum required  parameters to pass in BAPI BAPI_SHIPMENT_COST_ESTIMATE. And from which tables I can pull out that information to pass to this BAPI.
    Does this BAPI creates a shipment cost document in the system or just shows the estimate of the shipment cost.
    If it creates a shipment cost document then its good for me. but if it shows us just the estimate does it shows estimate for each delivery (total Qty, Unit Price & Total Price). 
    What will be the item category it will pick. I like to see it picks  basic price related item category.
    Does any body has used this bapi ?
    Appreciate your fast reply.
    Regards,
    Leona

    Hello, I´ll try to answer your question:
    1. is it possible to run the bapi without actual shipment number and the shipment ( & cost ) will be created in simulation mode ?
    I think that the bapi only run with external shipment number and only run in simulation mode, that´s mean the bapi can not create any shipment and cost document, if you want to create a shipment use BAPI_SHIPMENT_CREATE, to create a cost document I don´t know if there is a bapi but you can create easily with transaction VI01 (batch-input)
    The shipment number that you use to call the bapi is a ficticious number always between external range indicated in field V_TVTK-NUMKE with the shipment type that you use.
    2. is it possible to perform estimation to inbound shipments ?
    Yes it´s depend on the shipment type. In standard system 0010 is used
    In the example that I have I use an inbound delivery
    3. does the bapi creates shipment and scd in simulate mode like transaction VICI ( from sales order ) ?
    I think that the bapi only run in simulation mode and it can not create any document
    4. is there any problem if i customized my scd item categories to open manualy ?
    I think that the bapi needs to work properly automatic iten categories
    can you please post sample code ( or any other doc's ) for this bapi ?
    I send you a document with an example if you give me an e-mail because I don´t know how to attach a word document
    Best regards,

  • I just purchased an extreme.  I have an express.  The sales guy recommended setting up a hot spot with the express and use the extreme as a base station.  What does he mean and how do I do this?  What are the advantages?

    I just purchased an extreme.  I have an express.  The sales guy recommended setting up a hot spot with the express and use the extreme as a base station.  What does he mean and how do I do this?  What are the advantages?  How do I set this up?????

    I think he means to set up the main extreme as the main router or "main base station", and then use the express to "extend" the network.
    You can look up the manual for your express here for more details:
    http://support.apple.com/manuals/
    Extend the range of your network by adding AirPort Express to your existing AirPortExtreme or AirPort Express wireless network (this is called a Wireless DistributionSystem, or WDS). "
    Extending the Range of an Existing AirPort Extreme or
    AirPort Express Network
    You can extend the range of an existing AirPort Extreme or AirPort Express wirelessnetwork by setting it up in a WDS. Wireless computers can connect to the network andshare the Internet connection, share files, and play network games. If you connect yourAirPort Express to your home stereo, computers on your wireless network can useAirTunes to play music on the stereo from iTunes. If you connect a USB printer to yourAirPort Express, all of the computers on the network can print to it.
    n Open the AirPort Setup Assistant on a Macintosh, or the AirPort Express Assistant on acomputer using Windows XP. Follow the onscreen instructions to extend the range ofyour AirPort Extreme or AirPort Express network.
    Note: Extending the range of a network using WDS may reduce overall networkperformance.

  • What does the community recommend as an appropriate response in light of reports that "an estimated 600,000 or more Macs are currently compromised and part of a massive botnet thanks to the Flashback Trojan."  Is Apple taking steps to mitigate the threat?

    What does the community recommend as an appropriate response in light of reports that "an estimated 600,000 or more Macs are currently compromised and part of a massive botnet thanks to the Flashback Trojan."  Is Apple taking steps to mitigate the threat?
    See article in PC World at:  http://www.pcworld.com/businesscenter/article/253403/mac_malware_outbreak_is_big ger_than_conficker.html
    I have a MacBookPro and my wife has an iMac. I assume both are equally vulnearble.
    MLSCOS

    There are checks one can perform to see
    1: If any of their machines have been seen on the Flashback botnet
    http://public.dev.drweb.com/april/
    2: Terminal commands to see if their machine is infected (use copy and paste, then press enter)
    https://www.f-secure.com/v-descs/trojan-downloader_osx_flashback_i.shtml
    3: Preventative methods to avoid becoming infected.
    Update Java via Software Update.
    Disable Java in all your web browsers preferences (notice Java is not Javascript)
    Check your status of all browser plug-ins
    https://www.mozilla.org/en-US/plugincheck/
    Firefox + NoScript add-on + Temp Allow All Button on Firefox's toolbar to turn on scripts only on sites you trust.
    Learn how to make bootable clones, this way a complete erase can occur and a reverse clone done.
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents
    4: Resources if one is infected
    Data Recovery, wiping entire machine, reinstalling OS X, returning clean files, etc.
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • With Premiere elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Codec and Aspect settings for a crisp video and a small file size?

    With Premiere Elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Aspect and Codec settings , for a crisp video with a small file size?

    Gary Krouse
    We will customize a very detailed reply, but
    (a) What are the properties of your source media?
    (b) What did you or the program set as the project preset to match the properties of the source media?
    (c) What specific requirements do you have for this H.264.mov export file?
    File size can be a compromise between bitrate, file size, and quality.
    Thanks.
    ATR

  • What are the papers we have take for OCA & OCP

    Hi,
    Can anyone of you tell me that what are the papers we have take for OCA & OCP.
    Thanks in advance.

    Please look at the following link this should help you.
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=141
    thanks

Maybe you are looking for

  • After iTunes 10.6 update, program won't open

    I just downloaded the iTunes 10.6 update and now my iTunes will not open. The icon in my dock will jump a few times, as if the program were opening, but then nothing happens. Any fixes?

  • Shopping cart classic with reservation scenario?

    Dear Colleagues, I have created a shopping cart with internal goods (stock item). The shopping cart created a reservation in ERP MM system. Now, I try to create a confirmation against the shopping cart in SAP SRM system. However, the button 'confirma

  • Actionscript error checking not working?

    Does error checking only work on actionscript files that are imported by main file? Also...will error checking not work on the current open file if another file contains errors?

  • Install Flash Player 13.0.0.214 hangs at 95%

    Hi All, there seems to be a recurring problem on installing Flash Player, I had exactly the same issues with Flash 12, is there a fix for this yet or must I go back to Flash 11. Mac OS X 10.6.8 Mac Pro Intel Xeon 2.66

  • Don´t execute pre_insert trigger in a form deployed with form server

    I have a form developed with form6i. Executed in C/S mode, run ok; but executed in wed mode, the pre_insert trigger don´t fired. Using froms server in OAS relaease2.