Regarding Help

Hi all,
please give me suggestion,I am a oracel developer but i got a opportunity to slide to DBA,Please send us how to prepare and learn DBA activities..If anybody having good material regarding DBA(don't tell like google or oracle sites)..if anybody having please send us.
thanks in advance

And here are documents.
[url http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14196/toc.htm]Oracle Database 2 Day DBA
[url http://download-west.oracle.com/docs/cd/B19306_01/server.102/b28051/toc.htm]Oracle Database 2 Day + Performance Tuning Guide

Similar Messages

  • Regarding help to identify errors in 10g xe

    Hi,
    plz help , how to identify the error code in sql command line (like ORA-04030).

    Hi,
    This might help
    http://download.oracle.com/docs/cd/B25329_01/doc/admin.102/b25107/memory.htm#BGBFCHGI
    Regards,
    Jari

  • Regarding Help File

    Hi All,
    I used the following code for showing the help of user form. Means when i run user form through .Net it shows in SAP and when i will press F1 then it shows help of that user form. It works fine.
    But in my .CHM help file i have two or more form information in that file. I want suppose i wil open first form i want display help of that perticular form from that file and when i wil open second i want to desplay help of second form from that file. How i show help of perticular form from .CHM file.
    If pVal.MenuUID = "275" And pVal.BeforeAction = True Then
                    If SBO_Application.Forms.ActiveForm.TypeEx = "ChkRdo" Then
                        Dim psi As New ProcessStartInfo()
                        psi.UseShellExecute = True
                        psi.FileName = "C:\Documents and Settings\Harish Patil\Desktop\Checkbox and Option button\ChkOpt\ChkOpt\New HTML Help.chm"
                        Process.Start(psi)
                        BubbleEvent = False
                    End If
                End If
    Thanks and Regards,

    check call specfic file in CHM file
    The trick is load the chm file with parameters.

  • Regarding help for merep_sbuilder and merep_mon transactions

    Hi,
    Where do I get help for the MI related transactions in SAP WAS like merep_sbuilder and merep_mon
    I want help documentaion to make out the log shown in merep_mon.
    There are also lot of options while enabling the syncbo like push etc. What is the significance of these options.
    Do suggest where I can find proper documentation for the above
    Regards
    Raja Sekhar

    Hi Raja,
    just go through this troubleshooting guide for smart synchronizations.
    http://sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/909d75c3-0801-0010-5f92-920a78c53daa
    from this document , u will get a clear picture on merep_mon and transactions for troubleshooting .
    just refer this Installations document also ..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/mi/best practices for sap mobile engine 2.5/bblibrary/documentation/mi25_installation_guide.pdf
    <<
    There are also lot of options while enabling the syncbo like push etc. What is the significance of these options
    >>
    r u talking about the mass data upload in the case of T01 n t51 SyncBos.?.  make it clear.
    Regards
    Kishor Gopinathan

  • Status 51 regarding help

    Hi,
    i am getting this message please can u suggest me this help
    Conditions in IDoc E1EDP05 have been transferred: Check data
    Message no. VG201
    Diagnosis
    Condition data has been sent to the IDOC segment. This data is not automatically transferred.
    Procedure
    Check the incoming data and, if necessary, copy it into the document manually.
    Regarding
    anil

    Hi,
    Is your message type COND_A?
    ~ Bineah.

  • Regarding help on sap

    How should i go about finding path for particular topic on help.sap.com
    for instance if i want screen painter i go for path http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/801c61454211d189710000e8322d00/frameset.htm
    similarly if i want to know about different path how to go about finding the path.
    Regards.
    Edited by: chidambar dixit on Jan 1, 2008 4:55 PM

    http://www.easymarketplace.de/online-pdfs.php
    http://help.sap.com/saphelp_erp2004/helpdata/en/35/2cd77bd7705394e10000009b387c12/frameset.htm
    http://www.sapabaplive.blogspot.com/
    >award points if helpful

  • Regarding help for selecting module in SAP

    Dear Sir,
    Myself manish kumar singh still working  as an enduser in SD & PP  (R/3) module.But now i want to select one module from both of them. But i confuesed for selecting one. I am graduate from commerce side and now persuing MBA. I am working in Excsie deptt. Pls help me for selecting the module and also pls guide me the good institutes for coaching which is chepest and also located in delhi.

    Hi Manish,
    As in my view PP will be good one.
    Regarding SAP training centers, check the below list of all the SAP Authoried training centers where from you can pursue the course:
    http://www.sap.com/asia/services/education/centres/partners.epx
    Regards,
    Subhasha

  • Regarding Help File *F1*

    Dear Experts,
    I have Facing Problem while pressing "F1"
    The following error massage comes
    Navigation to the webpage was canceled
      What you can try:
         Retype the address.
    Thanks & Regard
    Nishikant S Virkhare

    HI
    Check that you can access the help file. If it has not worked before you will need to doenload it. You may choose to have a help file per client of a shared help file.
    This can be set from the B1 Client under Help pulldown menu / Document settings.
    There are lots of config issues that can come in to play, especially windows permissions
    You should search the forum as this will have been posted many times before.
    Peter

  • Clarification regarding " " & ""  - Help

    The below code produces
    $ java t103
    Hello World!
    HelloWorld!
    is there any logical or any difference in using the two ways of declaring c and cc, because in one of the program that I was writing i was figuring out the problem for a long time and this was issue. I figure out the problem and solved it, but was not sure the actual reason for such a behavior by java. Could somebody help me please.
    class t103
         public static void main(String[] args)
              String c = " ";
              String cc = "";
              System.out.println("Hello" + c + "World!");
              System.out.println("Hello" + cc  + "World!");
    }

    I dont know it was kind of strange to me also, I also knew that the cc is length of zero and c is one. But then why did the behavior of the program change by changing this. Meaning when I used c it never worked and when I used cc it worked perfectly fine.
    This is the code snippet, When I declared charSequence " " with a space it never got passed through the for loop that I have mentioned and when I changed it to "" it works fine. So it was not clear to me why it worked when I changed it.
    String charSequence = "";
              charSequence += theBoard [ r ] [ c ];
                      for( int i = r, j = c;
                     i >= 0 && j >= 0 && i < x && j < y;
                     i += z, j += a )
    /code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Regarding Help file style

    Hi all,
    I am new to RoboHelp. We created  "Application Help" project and generated .chm file sucessfully.Every thing is working fine with generated help file.
    Check the MicrosoftWord2007 help file by click on F1.My client wants the same look and feel with my help file.
    Does any one know if it is possible to generate the same look & feel help file with Adobe RoboHelp. If yes what type of project should i select from the availabe projects list and how can we generate?.
    Any suggestions would be appreciated....

    Hi madhubmk and welcome to the RH community.
    I dare say most of what MS offers could be achieved by RH. Bare in mind that MS can afford to throw resources into their help documentation to come up with a heavilly customised look and feel. That is something that most places can only dream of. MS help uses a customised window, lots of DHTML drop downs, custom icons, etc. all of which can be handled by RH. I'd go back to the client and get them to highlight exactly which elements they like and then go from there.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

  • Help regarding HELP

    Hi guru's
    i wants to display a help documentaion for a perticular iview.how to do that
    wen i typed
    http://<server>:5000/irj/portal/prtmode/help
    i want to get that perticular help document for perticular ivew.
    how to do that.
    plz help me
    thanks in advance

    Hey rajesh
    Now u defintely be wondering hw to do ,,so may be these links below can be handy
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/f5/eb51730e6a11d7b84900047582c9f7/frameset.htm">webbased url iviews</a>
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/b13842b23d690de10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2f/84e378f6244113b0816b5d00cd3747/frameset.htm
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=102673">foroum</a>
    Swathi
    Do offer pts nd ncourage:-)

  • How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Simple question whcih i cannot find the simple answer to:  How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Hi Lecia,
    You have several choices.
    Use the first set of controls in the Format Bar. One of these is a Color well (red in the image). Select the cell(s) in which you want the text coloured, then click the well to open its Color palette, and choose your colour.
    Use the Text Inspector. Open the inspector, click the Text button (T), and use the tools there (similar to the set in the Format Bar).
    Press command-T to open the Fonts Window. This offers a few more options than are available in the Inspector or the Format bar.
    Regarding "Help": I'd recommend using the Numbers '09 User Guide, which you can download via the Help menu. Easier to search, and easier reading than the individual Help articles. search 'text color' to quickly get to instructions on applying colour to text.
    Regards,
    Barry

  • How to install help file on local PC

    Dear All,
    One of our customer's local machine has problem when open the help file. The help file said navigation to the webpage was canceled. They are on SAP2007 PL49
    Tried
    1) Download from the shared folder - not helpful
    2) Delete the help folder and copied from the shared folder and install from local - not helpful
    3) Open the help file in IE directly - can be opened
    Thank you in advance.
    Regards,
    Yuka

    Yuka,
    Have you checked this thread?
    Re: Regarding Help File *F1*
    Thanks,
    Gordon

  • SAP Business Partner - Regarding "Doing Business as" field

    Hello All,
    There was a requirement from my client that they need to have a filed "Doing Business as " in BP category ORGANIZATION.
    I was not able to find the field in SAP BP. How can I really confirm if this field is delivered by SAP before I say we need to do ABAP level coding?
    My lead tells me it is available in CRM.  I am working in SAP INSURANCE solutions.
    Any help here would be highly appreciated.
    Thanks and Regards,

    help me

  • Help values - Selection Screen

    Hi All,
    I have a selection screen as below.
    Parameters:
    P_WERKS LIKE MARC-WERKS,
    P_MATNR LIKE  MATNR.
    Now I require help for materail when Press F4, the materail should be only that belongs to the Plant entered in the selection screen.
    Please suggest.
    Regards,
    Helpful answers are surely rewarded

    Hi,
    First get the plant from the screen,
    Then according to the palnt you get , do the select statment.
    Last using FM: F4IF_INT_TABLE_VALUE_REQUEST.
    Do you use dialog program or general program?
    If you use dialog program, you can use POV.
    process on value-request.
      field p_matnr  module mod_get_F4.
    module mod_get_F4.
    select matnr from MARC into table it_matnr
    where WERKS = P_WERKS .
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield              = 'MATNR'
         dynpprog               = 'ZTEST'          " program name
         dynpnr                 = '1000'             " screen number
         dynprofield            = 'P_MATNR'
         VALUE_ORG              = 'S'
        tables
          value_tab              = it_matnr
    exceptions
       parameter_error        = 1
       no_values_found        = 2
       others                 = 3
    if you use general program:
    at selection-screen on value-request for p_matnr.
    select matnr from MARC into table it_matnr
    where WERKS = P_WERKS .
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield              = 'MATNR'
         dynpprog               = 'ZTEST_C'          " program name
         dynpnr                 = '1000'             " screen number
         dynprofield            = 'P_MATNR'
         VALUE_ORG              = 'S'
        tables
          value_tab              = it_matnr
    exceptions
       parameter_error        = 1
       no_values_found        = 2
       others                 = 3
    Hope it helps.
    Regards,
    Chris Gu

Maybe you are looking for

  • Family Safety Doesn't Work on Youtube

    I've been testing the Family Safety Settings, etc., and found out anything goes on YouTube.  There's a lot of good things on YouTube, but I don't want the kids to see the nasty stuff.  Is there any way to stop the nasty stuff besides not allowing You

  • Doubles in many of my RSS feeds.

    Hello, for some reason, in many of my feeds, starting on Friday, I've been getting duplicates in my RSS feeds. Things like the rumour sites, Maccentral, Macosxhints, and others. Anyone else having this problem and have solved it? Be grateful to know.

  • Help is needed! Safari keeps crashing w/o a Modus Operandi?

    Hi, everyone - I hope you can help me with Safari's involuntary crashing: Process: Safari [236] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier: com.apple.Safari Version: 3.2.1 (5525.27.1) Build Info: WebBrowser-55252701~1 Code Type:

  • Unable to release production order

    E     C2     009     1     1     1000962               Order 1000962: Release rejected E     CO     118     1     1                    Release of order not possible

  • HTML DB with Javascript

    Hi everybody, Is it possible to have a substr(.....) in a getval ? document.getElementById('P1_RESULT').value = getVal(substr('P1_VALUE_1',3,5) * getVal(substr('P1_VALUE_2',3,5,) Thank you. Bye.