Ops Centre Newbie - Getting Started.

Hi experts,
We’ve recently made the decision to utilize Ops Centre to patch, provision OS and firmware throughout our UNIX (Solaris & Linux) estate. Whilst I understand the importance to undertake the relevant training, at this point, it’s looking unlikely as the current asking price for such tuition is too expensive.
I’ve managed to install and configure Ops Centre using the available online Oracle documentation onto a Solaris 10 - SPARC (Oracle VM) platform taking extra care that all pre-requisites outlined in the site preparation guide were met. I opted for the limited configuration during the install (no asset discovery, proxy deployment, storage library etc) but did decide on connected mode and it seems to be working fine. I’ve deployed the co hosted proxy controller and have managed to perform a custom asset discovery on a particular subnet.
To help us further reach our goals, I’d appreciate if the following questions could be answered in detail (were possible).
1. In order to apply patches to assets, it’s my understanding that each asset needs to be managed hence each asset must have the agent installed?
2. What purpose do storage libraries serve and based on our requirements (as above), do we require any?
3. We have many servers on many different subnets. From my understanding, a proxy controller is required per subnet. Is that the case? Or can the amount of proxy controllers be limited by DHCP or alike for example?
4. If a proxy controller is required per subnet, then it’ll be far more advantageous for us to deploy proxy controllers into virtual platforms (preferably Oracle Linux). Would this be possible?
Thanks,
D.

1. In order to apply patches to assets, it’s my understanding that each asset needs to be managed hence each asset must have the agent installed?Correct.
2. What purpose do storage libraries serve and based on our requirements (as above), do we require any?Storage Libraries are primarily for virtual guest storage. zones, ldoms underlying storage.
Not to be confused with the Software Libraries, which can store the patches, firmware images, OS isos, flash archives, etc.
You can always add both Storage and Software libraries later if you want.
http://docs.oracle.com/cd/E18440_01/doc.111/e18416/chapter_softwarelib.htm#BABBDJFH
http://docs.oracle.com/cd/E18440_01/doc.111/e18416/chapter_storagelib.htm#sthref42
3. We have many servers on many different subnets. From my understanding, a proxy controller is required per subnet. Is that the case? Or can the amount of proxy controllers be limited by DHCP or alike for example?For OS Provisioning, yes. Or a proxy may be connected to and server multiple subnets for OS provisioning, too. For patch and firmware, not required, as long as ports are open between the proxy and managed assets.
http://docs.oracle.com/cd/E24628_01/doc.121/e21484/network_reference.htm#autoId5
4. If a proxy controller is required per subnet, then it’ll be far more advantageous for us to deploy proxy controllers into virtual platforms (preferably Oracle Linux). Would this be possible?Yes. Only restriction (not listed in your requirements though) is that Linux proxies cannot OS Provision OVM Server for Sparc systems (LDOM Control Domains), and in general Solaris OS Provisioning is a little bit limited because the Linux proxies don't have the JET framework built in.
http://docs.oracle.com/cd/E18440_01/index.htm

Similar Messages

  • Newbie - getting started

    Hi,
    Hopefully someone can help me here.  I'm looking to place either simulated or camera raw output (and here I mean a matrix of 8 or 10 bit values without debayering) into a RAW format so that I can experiment with the debayering, white balance, colour profiles, linearization or LUTs that I need to shift my camera output into a useable image.  I was thinking about using the Adobe DNG format - but I'm struggling to understand where to start with this.
    What I'd like to do to start with is simply create a DNG file with, say, a 10x10 image size, 8 bit data with a ramp profile: e.g.
    0 20 40 60 80 100 120 140 160 180
    0 20 40 60 80 100 120 140 160 180
    0 20 40 60 80 100 120 140 160 180
    I've been looking at using the dng_validate example and creating a new function:
    static 
    dng_error_code dng_createsim (const char *filenameOut){
    After several attempts at this, I've sort of guessed that I need to access the data buffer in negative->Stage1Image(), but I've not succeeded in this.
    Thanks for any help.
    Simon

    Following is the code I put together based on Sandy's comments.  I'm a bit sketchy on most of it, but it 'almost' compiles.  I'm a bit stuck with the raw_ifd part - I don't think I'm getting the idea about the dng_image.  I'm also unclear about defining the thumbnail - blank is fine with me.
    Thanks,
    Simon
    static 
    dng_error_code dng_createsim (const char *filename){
    int sz=10;    // size of image 
    dng_memory_allocator alloc(gDefaultDNGMemoryAllocator);
    dng_host host;
    dng_memory_block * mem_block = host.Allocate(sz*sz);
    alloc=host.Allocator();
    dng_memory_stream mem_stream(alloc);
    mem_stream.SetWritePosition(0);
    for (int i=0;i<sz;i++) 
      for (int j=0;j<sz;j++)    mem_stream.Put_uint8(j*sz);
    //dng_rect rect(sz,sz);
    dng_image Rimage();
    dng_ifd rawifd;
    rawifd.ReadImage(host,mem_stream,Rimage);
    dng_negative *negative=host.Make_dng_negative();
    dng_image_preview thumbnail;
    dng_file_stream streamout(
    "out.dng",true);dng_image_writer writer;
    writer.WriteDNG(host,streamout,*negative,thumbnail);
    return dng_error_none;}

  • Some Help to get started needed for a newbie

    I am attempting to add some simple email functionality to a small utility
    program I am writing in Delphi for my school. We have used Groupwise for
    many years and I have programmed a bit in Delphi but mainly database work.
    Can anyone tell me where to find some documentation that will help me to
    get started in using the GW Tokens API with Delphi?
    How do I install it?
    Do I need a Type Library for it to use it effectively with Delphi?
    Is there some sort of basic skeleton code that I can refer to?
    I would greatly appreciate any help that anyone might offer here.
    Thanks
    Alan Humphries

    freemat2 wrote:
    Ooops putting some info would have helped.
    It will be a long hard road but..
    for VB (so you will need to translate for Delphi)
    Add references to Groupwise.exe to your project and Groupware type library
    GWCMA1.DLL
    Then this will create a new email and drop in a few addresses if supplied
    (eg from your CRM)
    Public Sub SendEmail(ByVal lsEmailAddress As String, ByVal lsDomain As
    String, lblProgress As Label)
    Dim vCommander As Object
    Dim rc As Long
    Dim sResult As String
    Dim lsOperation As String
    Dim i As Integer
    Dim sUserName As String
    Dim sEmailTo As String
    Dim nPtr As String
    Dim lsMsg As String
    On Error GoTo Error_Trap
    lsMsg = ""
    If lsEmailAddress = "" Then
    lsMsg = lsMsg & "Please supply a recipients email address" & vbCrLf
    End If
    If lsMsg > "" Then
    lblProgress.Caption = lsMsg
    MsgBox lsMsg
    Exit Sub
    End If
    If lsDomain > "" Then
    lsEmailAddress = lsEmailAddress & "@" & lsDomain
    End If
    Set vCommander = CreateObject("GroupwiseCommander")
    DoEvents
    lblProgress.Caption = "Create email"
    rc = vCommander.Execute("NewMail()", sResult)
    sEmailTo = lsEmailAddress
    While sEmailTo > ""
    nPtr = InStr(sEmailTo, ";")
    If nPtr = 0 Then
    sUserName = sEmailTo
    sEmailTo = ""
    Else
    If nPtr > 1 Then
    sUserName = left$(sEmailTo, nPtr - 1)
    End If
    If nPtr < Len(sEmailTo) Then
    sEmailTo = Mid$(sEmailTo, nPtr + 1)
    End If
    End If
    lblProgress.Caption = "Add " & sUserName
    lsOperation = "TextSetTo(" & vbDoubleQuotes & sUserName &
    vbDoubleQuotes & "; True) "
    rc = vCommander.Execute(lsOperation, sResult)
    If sResult > "" Then
    MsgBox "Error adding " & sEmailTo & " ,because " & vbCrLf &
    sResult
    End If
    Wend
    lblProgress.Caption = ""
    DoEvents
    Exit_Proc:
    Exit Sub
    Error_Trap:
    MsgBox "Error creating email " & vbCrLf & Err.Description
    lblProgress.Caption = "Error: " & Err.Description
    Resume Exit_Proc
    End Sub
    > Michael Risch wrote:
    > > DId you look at the Groupwise developer PDF or the sample code on the
    > > website? Both should be helpful.
    > > [email protected] wrote in news:KSlQh.218$7e7.73@prv-
    > > forum2.provo.novell.com:
    > > > Thanks - this is starting to look like a long, hard road
    > > >
    > > > Alan Humphries
    > > >
    > > >> Since you are using Delphi, all I can suggest is the PDF :-(
    > > >>
    > > >> Never ever had any luck with early binding and Delphi
    > > >>
    > > >> No need to install anything besides the GW Client though
    > > >>
    > > >>
    > > >> --
    > > >> Best Regards
    > > >>
    > > >> Tommy Mikkelsen
    > > >>
    > > >> IT Quality A/S
    > > >> Denmark
    > > >>
    > > >> Novell Developer Forums SYSOP
    > > >>
    > > >> Please Report back any success or failure, That way we all learn
    > > >>
    > > >> Sorry, but no support through email
    > > >>
    > > >> "I hate bugs".......Tommy Lee Jones, MIB
    > > >>
    > > >> Be a GroupWiseR, go http://www.groupwiser.net
    > > >
    > > >

  • Getting Started (newbie, student)

    I would like to get started learning the BI module but am a little unsure exactly which things I need installed. Of course, I already have the Enterprise Edition with OLAP option installed.
    I am confused as to whether the BI package is separate and distinct from the application server or if BI requires an active application server instance in order to be installed.
    Thx

    BI requires an install of an application server. THe app servers comes in 3 flavors viz. Webcache and J2ee, Business Intelligence and Forms, AND Portal and Wireless. You should install the BI flavor.
    Hope this helps.
    Swapan.

  • Newbie looking to get started in Mac programming

    Hi,
    I have a handful of ksh scripts written for Leopard, I would like to create an interface/wrapper in C++, ref existing system prefs, to bring everything together under a suite of commands and eventually rewrite the shell scripts into C++. Is there a preferred C++ application and help resources, samples, etc to get started?

    On macintosh, the preferred language is Objective-C, and the preferred framework is Cocoa. The tools to develop in Objective-C/Cocoa (and also other languages) are installable using your Leopard install disk, or you can download them on the [ADC website|http://developer.apple.com>.
    You also have the documentations that go with it, and a lot of courses about Cocoa and Objective-C programming.

  • I'm a Newbie - Hi!: what is the best way to get started?

    Hi,
    I'm retired but used to be a Senior Design Engineer with an aerospace components manufacturer.  The questionnaire didn't ask if I was retired!
    I have a basic working knowledge of computers and applications but I struggle with jargon, (i.e. I prefer the simple approach).
    My copy of Photoshop Elements 12 arrived yesterday.  I've just finished installing it!
    The instructions were quite clear as far as the installation went but I got a bit lost when the booklet started with the "Create an Adobe ID"
    It didn't seem to give any direction.  Any way somehow I managed to get here in the end having registered my product (twice - because I didn't see any activity after I hit the button the first time!).
    I own a Sony Alpha SLT A57 camera and also a Casio Exilim FH100 although the Sony is my weapon of choice for the most part.
    I'm on a basic photography course which leads to an intermediate and then ultimately an advanced course.  I also hope to follow on with courses that have been set up for Photoshop Elements too which are also available.
    I will be feeling my way for a while yet and I would appreciate some help (which will be needed inevitably).
    First of all, what is the best way for a guy with only basic skills to get started?
    Is there a page I can go to for help from first principles?
    I look forward to being a part of this community!

    Help> Getting Started is a good starting point, as is Adobe TV - Quick Links to Elements Adobe TV Tutorials.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Need help getting started - I am a newbie and am royally confused

    I have Crystal Reports XI and VB.Net 2005 with CR functionality built in. I created reports directly in CRXI and now need to be able to use them in .Net.
    Here is where I get lost. When I created my RPT file it had me connect to a database (Access 2002) and then add a table and fields. It works great except now that I am porting to my .Net app the database it needs to connect to will always be changing (dynamic). The table and field names will always be the same. It is just the file name that changes, based on user inputs.
    So are there any tutorials, literature, help that anyone can point me to so I can get on with my steep learning curve? I started programming in VB.net and developing CR's just a short time ago and would appreciate a 'dumbed' down explanation so I can get a handle on this.
    Thanks for any help or advice offered.
    Regards
    TMA

    Here are various resources for .NET development with Business Objects products.
    Check out the developer library tutorials under the Crystal Reports section for help as well as the Crystal Reports samples in the application packages and additional code sample.
    Developer Getting Started
    [https://boc.sdn.sap.com/developer/gettingstarted]
    .NET Developer Resources
    [https://boc.sdn.sap.com/dotnet]
    Developer Library
    [http://devlibrary.businessobjects.com/]
    Links to our sample application packages:
    [http://support.businessobjects.com/communityCS/FilesAndUpdates/sample_applications_for_.NET_developers.pdf.asp]
    Additional Code samples
    [https://boc.sdn.sap.com/codesamples]
    Good luck,
    Jason

  • Newbie here getting started

    Hi everyone, I'm just getting started to record my piano pieces to my computer. I have an old Technics SX-PR700 digital ensemble. I want to record music from the piano to my macbook. Here i have some doubts.
    I want to record good audio sound as well as able to save the music notation to my computer. So I would need a midi cable right? A midi cable is able to record what notes can be played, but does it able to play actual recorded audio sound from my piano on the midi notes that is displayed on the program Audacity or Garage Band?
    If not, I would need a LINE IN cable and a MIDI to do both work..?

    Ok thanks for the helpful reply....I'm still a bit of confuse..been to many stores today to look for MIDI to USB cable Most of them are out of stock. However some sales promoters mention that, the common way to get MIDI out to computer is through another device which is the Interface. So i suppose there are direct ways from MIDI to MAC without an Interface right?
    I did a google search mention that Interface are used as electronic equipment to Communicate to laptops. So what makes MIDI to MAC without an Interface workable? Same goes to audio recording from piano to mac directly without any interface....
    My Old Technics has a Floppy Drive that records MIDI, If i can use a Floppy to record MIDI...then i do not need any cables at all....just need an external floppy drive to my mac possible?

  • Dev server the dispatcher is not getting start

    Dear all ,
    We are facing problem in dev server the dispatcher is not getting started. Plese suggest
    The log file .
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Mon Oct 05 08:43:39 2009
    B  create_con (con_name=R/3)
    B  Loading DB library 'G:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' ...
    B  Library 'G:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'G:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.220)
    B  New connection 0 created
    M sysno      00
    M sid        DEV
    M systemid   561 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    247
    M intno      20020600
    M make:      multithreaded, Unicode, 64 bit
    M pid        4936
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4936) [dpxxdisp.c   1170]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm)          38064     (1464)
    M  DpShMCreate: sizeof(tm_adm)          3609968     (17960)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpShMCreate: sizeof(comm_adm)          312000     (624)
    M  DpShMCreate: sizeof(vmc_adm)          0     (512)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000D440050, size: 4077792)
    M  DpShMCreate: allocated sys_adm at 000000000D440050
    M  DpShMCreate: allocated wp_adm at 000000000D441C30
    M  DpShMCreate: allocated tm_adm_list at 000000000D44B0E0
    M  DpShMCreate: allocated tm_adm at 000000000D44B110
    M  DpShMCreate: allocated wp_ca_adm at 000000000D7BC680
    M  DpShMCreate: allocated appc_ca_adm at 000000000D7C2440
    M  DpShMCreate: allocated comm_adm_list at 000000000D7C4380
    M  DpShMCreate: allocated comm_adm at 000000000D7C43A0
    M  DpShMCreate: allocated vmc_adm_list at 000000000D810660
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000D810690
    M  DpShMCreate: allocated wall_adm at 000000000D8106A0
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Mon Oct 05 08:43:40 2009
    M  calling db_connect ...
    C  Prepending E:\oracle\DEV\ora92 to Path.
    C  got NLS_LANG='AMERICAN_AMERICA.UTF8' from environment
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPDEV's password
    C  Connecting as /@DEV on connection 0 (nls_hdl 0) ... (dbsl 640 070308)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 000000000EE4FF20 000000000D0CDA90 000000000D0CD3C8
    C  Attaching to DB Server DEV (con_hdl=0,svchp=000000000D0CD298,srvhp=000000000EE67F78)
    C  Starting user session (con_hdl=0,svchp=000000000D0CD298,srvhp=000000000EE67F78,usrhp=000000000EE71C70)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1033
    [dboci.c      4508]
    C  Detaching from DB Server (con_hdl=0,svchp=000000000D0CD298,srvhp=000000000EE67F78)
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dbsloci.c    11395]
    C  Try to connect with default password
    C  Connecting as SAPDEV/<pwd>@DEV on connection 0 (nls_hdl 0) ... (dbsl 640 070308)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 000000000EE4FF20 000000000D0CDA90 000000000D0CD3C8
    C  Attaching to DB Server DEV (con_hdl=0,svchp=000000000D0CD298,srvhp=000000000EE67F78)

    C Mon Oct 05 08:43:41 2009
    C  Starting user session (con_hdl=0,svchp=000000000D0CD298,srvhp=000000000EE67F78,usrhp=000000000EE71C70)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1033
    [dboci.c      4508]
    C  Detaching from DB Server (con_hdl=0,svchp=000000000D0CD298,srvhp=000000000EE67F78)
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dbsloci.c    11395]
    B  ***LOG BV3=> severe db error 1033      ; work process is stopped [dbsh#3 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink#3 @ 428] [dblink  0428 ]
    B  ***LOG BY0=> ORA-01033: ORACLE initialization or shutdown in progress [dblink#3 @ 428] [dblink  0428 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1283]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   9708]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server DEVDEV_00 on host DEVDEV (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Mon Oct 05 08:43:41 2009
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        9893
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  255]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 4936) [dpnttool.c   357]
    Regards,
    Kumar

    Hi Sunny,
    Thanks , i have try to stop the database and then startup the database. Then it is giving me error
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1109237592 bytes
    Fixed Size                   737112 bytes
    Variable Size             587202560 bytes
    Database Buffers          520093696 bytes
    Redo Buffers                1204224 bytes
    Database mounted.
    ORA-01113: file 3 needs media recovery
    ORA-01110: data file 3: 'I:\ORACLE\DEV\SAPDATA3\DEV_1\DEV.DATA1'
    Please suggest what next command to recovery database in oracle 9i.
    Thanks,
    Kumar

  • Macbook pro not getting started!

    HI Community',
    i am facing issues with my macbook pro, Its not getting started and the charger does not show bright green signal. LED is bit dim.
    i Had went to service centre, it worked with their charger and had turned on but not turning in now.
    Please provide some inputs.
    thanks

    Perhaps a pin of the MagSafe connector of your charger got stuck: Apple Portables: Troubleshooting MagSafe adapters
    (Check point 7.)

  • Problems getting started with templates

    I am just getting started with the dreamweaver 30 day trial.
    I am trying to create my first file. When I try to open a new
    template file I get the message below-
    "Dreamweaver stores templates in the root folder of a site,
    but there are no sites defined. Please add a site"
    What does this mean? How do I find the templates? I am a
    total dreamweaver newbie trying to learn the program.
    Thanks

    ntmunger wrote:
    > I am just getting started with the dreamweaver 30 day
    trial. I am
    > trying to create my first file. When I try to open a new
    template
    > file I get the message below-
    >
    > "Dreamweaver stores templates in the root folder of a
    site, but there
    > are no sites defined. Please add a site"
    >
    > What does this mean? How do I find the templates? I am a
    total
    > dreamweaver newbie trying to learn the program.
    >
    > Thanks
    It's not a problem with templates.
    You have to create a site for your website - F1 will show you
    how to do
    that. Once you have a site created, you will be able to
    create new template
    files, and they can write themselves to the correct part of
    the site.
    HTH,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • Download of Getting Started guide

    I'm trying to download the Getting Started guide of 9iAS Portal Release 2, to view it offline, from the address
    http://portalcenter.oracle.com/servlet/page?_pageid=356&_dad=ops&_schema=OPSTUDIO
    but the server toolsweb.us.oracle.com isn't correct.
    Is there another link?
    Thanks

    If you go to Portal Center (OTN), under "Release 2 - Open, Productive, Complete - Learn It" you'll find a link named "View Offline" http://toolsweb.us.oracle.com/pls/tools/docs/FOLDER/ROOTFOLDER/EIT/EITDOC/DOCDELIVS/DOC_DRAFTS/WEBDBDRAFTS/GS_SITE.ZIP
    that is incorrect.
    Is that material available elsewhere?

  • Oracle not getting started

    Hi,
    We just upgraded to oracle patch set 9.2.0.8.0 Now We are not able to start database.
    OS Win2k3
    Logs:
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Mon Nov 10 22:02:15 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\DCE\SYS\exe\run\dboraslib.dll' ...
    B  Library 'D:\usr\sap\DCE\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'D:\usr\sap\DCE\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.220)
    B  New connection 0 created
    M sysno      00
    M sid        DCE
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    221
    M intno      20020600
    M make:      multithreaded, ASCII
    M pid        5332
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 5332) [dpxxdisp.c   1164]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm)          6656     (832)
    M  DpShMCreate: sizeof(tm_adm)          2379840     (11840)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpShMCreate: sizeof(comm_adm)          192000     (384)
    M  DpShMCreate: sizeof(vmc_adm)          0     (364)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 05210040, size: 2665488)
    M  DpShMCreate: allocated sys_adm at 05210040
    M  DpShMCreate: allocated wp_adm at 052117D8
    M  DpShMCreate: allocated tm_adm_list at 052131D8
    M  DpShMCreate: allocated tm_adm at 05213200
    M  DpShMCreate: allocated wp_ca_adm at 05458240
    M  DpShMCreate: allocated appc_ca_adm at 0545C890
    M  DpShMCreate: allocated comm_adm_list at 0545E000
    M  DpShMCreate: allocated comm_adm at 0545E018
    M  DpShMCreate: allocated vmc_adm_list at 0548CE18
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0548CE40
    M  DpShMCreate: allocated wall_adm at 0548CE48
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  <ES> EsILock: use semaphore instead of spinlock
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Mon Nov 10 22:02:16 2008
    M  calling db_connect ...
    C  Prepending D:\oracle\DCE\920 to Path.
    C  got NLS_LANG='AMERICAN_AMERICA.WE8DEC' from environment
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPDCE's password
    C  Connecting as /@DCE on connection 0 (nls_hdl 0) ... (dbsl 640 070208)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   0467A498   0467F534   0467EFD8
    C  Attaching to DB Server DCE (con_hdl=0,svchp=0467EF2C,srvhp=0467FB04)
    C  Starting user session (con_hdl=0,svchp=0467EF2C,srvhp=0467FB04,usrhp=046882DC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4508]
    C  Detaching from DB Server (con_hdl=0,svchp=0467EF2C,srvhp=0467FB04)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    11410]
    C  Try to connect with default password
    C  Connecting as SAPDCE/<pwd>@DCE on connection 0 (nls_hdl 0) ... (dbsl 640 070208)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   0467A498   0467F534   0467EFD8
    C  Attaching to DB Server DCE (con_hdl=0,svchp=0467EF2C,srvhp=0467FB04)
    C  Starting user session (con_hdl=0,svchp=0467EF2C,srvhp=0467FB04,usrhp=046882DC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4508]
    C  Detaching from DB Server (con_hdl=0,svchp=0467EF2C,srvhp=0467FB04)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    11410]
    B  ***LOG BV3=> severe db error 1034      ; work process is stopped [dbsh#3 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error 1034   performing CON [dblink#3 @ 428] [dblink  0428 ]
    B  ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#3 @ 428] [dblink  0428 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1282]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   9696]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server mrlr3dev_DCE_00 on host mrlr3dev (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Mon Nov 10 22:02:16 2008
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        9881
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  255]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 5332) [dpnttool.c   357]
    Regards,
    Vikas G

    We just upgraded to oracle patch set 9.2.0.8.0 Now We are not able to start database.
    you didn´t post the database start log but the SAP system log.
    did you run the necessary SQL scripts to update the database dictionary? It´s not enough to just doubleclick on runinstaller.
    Markus

  • Getting started question

    I'm sure I'll have fewer questions as times moves on, but here is another newbie question.
    I've gone through the initial getting started chapter on the 'Calculator' stateless session bean J2EE project.
    At the step:
    <i>Deploying and Running the Calculator Application</i>
    I think I successfully deploy my EAR.
    The page won't load in my browser.
    I've tried many flavors of localhost, localhost.corp.adobe.com, AHAMILTO1-XP and AHAMILTO1-XP.corp.adobe.com to port 50418/Calculator/Calculator.jsp.
    For example:
    http://localhost:50418/Calculator/Calculator.jsp
    Am I using the wrong port?  Is the port 50418 not an http port?  I guess I'm asking how do I determine my http port number?  I also tried 50000.
    I get the response during deployment:
    <i>Jan 11, 2005 2:27:57 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Deploy Thread] INFO:
    CalculatorEar.ear -> Successfully deployed file:/C:/DOCUME1/ahamilto/LOCALS1/Temp/temp54088CalculatorEar.ear
    DEPLOYMENT ...
    ==> SDM host : AHAMILTO1-XP
    ==> SDM port : 50418
    ==> URL : file:/C:/DOCUME1/ahamilto/LOCALS1/Temp/temp54088CalculatorEar.ear
    ... FINISHED SUCCESSFULLY</i>

    Hello,
    1. Does your browser show the startpage of your local WAS if you try URL http://localhost:50000
    2. Where does your port 50418 come from? It seams that you have several instances on your computer, maybe you should try http://localhost:50400/Calculator/Calculator.jsp to reach your application. XXX18 is normally the sdm port through which you deploy your application to j2ee engine.
    Maybe that helps,
    André
    Message was edited by: Andre Siegling

  • Getting started porting Linux driver

    Hello,
    If this question has been posted somewhere else please point me in the right direction.
    I'm new to solaris and my goal is to port a Linux driver (vmebus pci device on Redhat) to Solaris (X86 v5.11). The Linux driver is all written in straight C. I've installed Solaris Express Dev Edition 2/07. I see that gcc is there (under /usr/sfw/bin) but it seems like a bare-bones development environment (no enviroment variables set up , etc).
    My question is is this the right set of development tools to proceed forward with or should I be downloading something else ? Is there some easier to use graphical 'IDE like' set of tools that is more appropriate for a Solaris newbie like me ? I know Forte is a commercial product, what is the best freeware for graphical C development ?
    Regards,
    Brent
    Message was edited by:
    bbartson

    Here's what I would do... go to this website and download an ISO of a live CD. You can burn it, stick it in your CD drive, and start your PC. It will boot to Linux without ever having to format anything, that way you can tinker around with how it feels. After you are happy with that, you can download and install a distro...
    http://www.kubuntu.org/special-cds.php
    As far as disrtos go, I would choose one of the following for a first time user:
    Kubuntu (because it's easy to get started) http://www.kubuntu.org/ or
    Fedora Core 5 (because it's easy to download and add packages -- most in the Add/Remove Programs app) http://fedora.redhat.com/
    Both of these distributions have a lot of help and howtos when it comes to Oracle as well. If you don't like KDE (I do but that's personal preference) then FC5 gives you the option of Gnome or KDE and Ubuntu is the non-KDE version of Kubuntu.
    ~Jer

Maybe you are looking for

  • We have 4 different iOS devices in the same household. 2 iPhones, iPad Air

    Hello. We currently have 2 iphones, an iMac & an iPad Air in our household. We have 1 iTunes account & have always had one email address. We would like each iOS device to basically have its own identity. Mainly when using something such as Facetime.

  • Windows XP Pro startup problem

    I have a MacBook Pro mid 2009, and I installed Windows XP Pro using Bootcamp. It worked well for a few times after I installed it. But now after the screen just turns black after the Windows logo comes up. I have to shut down by holding down the powe

  • Changing PO line num in MIGO

    How I can change reference on the item of Purchase Order before document in MIGO save? 1. MB_MIGO_BADI-LINE_MODIFY - not working. Field GO_ITEM-EBELN not ready for input. 2. Assign imposible. This data is a private field of class. (SAPLMIGO)LCL_MIGO_

  • IDOC import from CRM 7.0 to SAP PI 7.0 fails: unable to read segments

    Hello, We want to import an Idoc from a CRM 7.0 system to SAP PI 7.0. The import fails with the message ""unable to read segments". The issue is related to ALL Idocs, standard and customer defined. The result of any import is that we can see the obje

  • Working around iCal alarm failure.

    Although I really like iCal, I gave up using it because alarms don't work if iCal is not turned on. The other day, I had a minor inspiration! I set iCal to turn on automatically, whenever I logged on. Thus, I get any overdue reminders immediately aft