Wheres my Unix OWB 10 G

Hi all, I am possibly one of the few using OWB on Solaris.
When can we expect to see the Unix OWB 10G ???
No good having only the Dev Client for 10G.
I want to upgrade my server components, although, Im not going to use the upgrade script, the version from 9.04 to 9.2 did not work, so I suspect trying to run it from 9.2 to 10G will not work either.
Dont get me wrong the script did run to completion, the problems started when you tried to modify the target schema using the wizards, it kept saying you need blah runtime, basically it really screwed up the runtime to the point I had to manually remove all OWB objects and start from scratch.
So assure me please, someone upgrade from OWB 9.2 to 10 G on solaris, then use the 10 Runtime to drop a target schema(the 9.2 upgraded one), add a target schema (the previously upgraded dropped one), and see if it does not give the error about needing a 9.2 runtime.
Next drop/remove the upgraded 9.2/10 G runtime platform, and all targets.
Reinstall the runtime, under same user, reinstall all targets. Try deploying all objects again from design client.
Hmm, case 2, Install a new 10 G runtime into Solaris DB, use same target schemas as the 9.2 platform. Parallel operation along side existing 9.2.
attempt changes using 9.2 and 10G, any runtime platform object confilcts???
If you can say OWB upgrade from 9.2 to 10 G is fine given those cases, then I am happy upgrading my production OWB systems should be somewhat easier.
Oh and again, when is Solaris 10 available ?? :)
Thanks,
Richard.

Hi Richard,
Not sure what issues you ran into with the 904 migration, but if there are any I hope you contacted support so we can fix it.
We tested the 9 to 10 conversion extensively and in our cases that worked. We tested with many cases, and if there is one in your case that does not work please do log a tar so we can improve this for our users.
I will try the upgrade tomorrow and see what happens if I do drop a target.
On your second case, I'm not sure how you can consider using the same schemas on the same box as running in parallel? I think you will run into fundamental problems if you run 10g and 9.2 into the same schemas. How can OWB figure out which table to write into, and you can't have 2 incarnations. I would not recommend you doing this. I also think this is a fairly unconvential way of running parallel...
But I will try to replay some of the things you mentioned.
On the Solaris one, just to warn you ahead of time, Solaris will be only supported for 64 bit OS. The reason in database support and therefore OWB support is limited to 64 bit Solaris as of 10g RDBMS and OWB 10g (basically the same tech stack).
Solaris is being addressed as we type, so I would expect the UX platforms to all come available within the next couple of weeks.
Thanks,
Jean-Pierre

Similar Messages

  • Where is unix/linux agent located on scom 2012 r2 server

    hey there,
    my boss tried to install scom unix agent manually, and asked me where the unix agent located on scom 2012 r2 server.
    Is it "GetOSVersion.sh" the one he looks for? If it is not, then wherw it is located
    I'm a Windows guy and have no idea what that .sh file is. Please help~~

    The "GetOSVersion.sh" is a script that is first executed when you try to push an agent out to
    a unix/linux server. It then tells SCOM what version of the agent it needs to download and install.
    As for the location:
    Management Server: \System Center Operations Manager\Server\AgentManagement\UnixAgents\DownloadedKits
    Gateway Server: \System Center Operations Manager\Gateway\AgentManagement\UnixAgents\DownloadedKits
    I suggest to push the agent out vs manual install as you then don't need to worry about manually signing certificates/installing agent. Its saves considerable amount of
    time and your then managing your agents from a central location. 
    Oh and as Steve mentioned make sure you download the Unix Management pack bundle (MPB) and not from the online catalog. This is due to the MPB is what actually contains the agents where as the catalog is just the management packs.
    Cheers,
    Martin
    Blog:
    http://sustaslog.wordpress.com 
    LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Some advise on 'WHERE EXISTS' in OWB.

    Hello :-) me again.
    I have read a number of topics regarding 'WHERE EXISTS' statment and OWB... got confused so i thought i ask your option.
    OWB 10 r2.0.1.31 paris/windows
    I need to tune one of my maps - nothing fancy, just a simple delete:
    I need to delete values from tables A if they are equeals to the values in table B.
    Both of my tables have index on matching fields, however it is non unique index and there is no primary or unique key on the tables that i could use. Both tables are not that big either - table A just under 1mil records and table B about 300K records/
    So i created simple map -
    Mapped table B to table A, set loading type for table A to delete, set 'Match column when deleting' on the matching column .The map was validated without any problems, the tests on a small data set were fine and bob's my uncle!
    However, when i submitted the map with 'real' tables - it took a very long time to run (over an hour). I have other more complex maps (and loads of them) and everything is ticking nicely! so what is the problem with this map?
    The code generated by OWB for the delete statment as follows:
    DELETE FROM TABLE_A
    WHERE TABLE_A.MATCH_COL = TABLE_B_MATCH_COL
    and it does take ages to run from TOAD.
    So i tried running
    DELETE FROM TABLE_A a
    WHERE exists (select n.MATCH_COL from TABLE_B n
    where a.MATCH_COL = n.MATCH_COL)
    it took no time at all.
    Now how do i have to construct my map in order for OWB to generate WHERE EXISTS code? Is it better to use lookup or set operator? outer join? which one of them would be WHERE EXISTS?
    I have another map set up identically but with larger numbers (over 70 mil records in table A). it has been running sinse yesterday lunch time! So any help/thoughts/suggestions on this matter would be greatly appreciated.
    Thank you very much
    Kind Regards
    Vix
    null

    Hi Ed.
    Thank you very much for your reply - greately appreciated!
    I did look into TOAD when trying to 'tune' it before askling for help. The query does gazzilion tables scans (from Long Ops in TOAD), the main reason why it takes forever is 'db file scattered read' (from waits in TOAD). I checked this job first thing this morning and it's still running!
    I have been using OWB Paris for the past year or so and i don't know everything there is not know about it. So i don't know how to make it to produce the code with 'WHERE EXISTS' instead of
    DELETE FROM "TABLE A"
    WHERE ( "TABLE A.MATCH_COL IS NULL AND :b1 IS NULL
    OR "TABLE_A.MATCH_COL" = :b2)
    I tried putting non-unique index on MATCH_COL of table A, and put unique index on matching column in table B (ensured that there are no duplicates in table B etc) but oracle pessimiser decided not to use it and i don't really know if the hints are working in OWB and how to make them work with OWB code (i pressume just putting them in the code as normal or is there a 'special' way of doing it?!).
    I think i am just going to wrap up my statment in a procedure and just execute the procedure within OWB. I wanted to avoid doing so as i like the auditing granularity with OWB (and if it is a procedure it just calls it, executes it and that's it).
    Once again thank you very much for all your help with this issue. May be someone else would have some other ideas how to make it work in OWB? If i manage to improve the performance with this particular map - i will post it here, just in case someone else is having the same problem.
    Kind Regards
    Vix
    Message was edited by:
    Vix
    - I am takling about my second job that is still running - table A has over 70 mil records and table B has over 600K records.

  • Link for UNIX OWB

    Hi All,
    Can any one of you tell me the link for OWB.
    I have Unix server with 10g, now I need to install OWB in that system. can any one of you tell me the download link.
    Regards,
    Kumar.

    Hi,
    10.2.0.1: http://www.oracle.com/technology/software/products/warehouse/index.html
    Patch 10.2.0.3: In metalink (patch number 6264457) for AIX5L Based Systems (64-bit), HP-UX PA-RISC (64-bit), Linux-x86-64 (AMD64/EM64T), Linux x86
    Patch 10.2.0.2: In metalink (patch number 5696353) for AIX5L Based Systems (64-bit), IBM Power Based Linux, IBM zSeries Based Linux, HP-UX Itanium, HP-UX PA-RISC (64-bit), Linux Itanium, Linux-x86-64 (AMD64/EM64T), Linux x86, Solaris Operating System (SPARC 64-bit), Solaris Operating System (x86)
    Regards
    Detlef

  • Where is "Unix core"

    I am trying to use an app that won't work. In conversations w/ the dev. I was told that I evidently the "unix core" is missing from my OS 10.5
    I have Pacifist and the install disk. Where are the files on the install disk packages that contain the "unix core"?

    I'm going to assume this is a GUI application, like GIMP or Inkscape and that by Unix core he's talking about the core windowing software, X11, which is not installed by default with Mac OS.
    Insert your 10.5 installation DVD and open the folder titled "Optional Installs". Inside of that folder you'll find the Optional Installs.mpkg. Launch that application installer and accept the standard installer questions.
    When you get to Installation Type, display the details for the Applications directory, and select X11 for installation.
    Assuming, that is, my assumption is correct. Since Unix is pretty much the core of Mac OS X, folks trying to assist you are having to make some guesses.

  • WorkFlow OWB Jobs

    Is there a way to run the Workflow jobs independent of Oracle clients (OWB and OEM)? We currently have OWB client for windows installed on our machine and cannot use windows to run our jobs in our production environment. Is there a way to run OWB jobs in unix?

    Hi,
    Assuming the 3 users/schemas after the OWB installations are owb,owbuser,owbrun(runtime)
    Login with Owbuser ID/pwd to Unix sqlplus
    then execute the following line (all in one line)
    @/build/owb92/owb/rtp/sql/oem_exec_template.sql owbrun CDS_TXN_LOAD_PROCESS_FLOW_LOC PROCESS CDS_TXN_LOAD_PROCESS_FLOW_01 "," ","
    where
    @/build/owb92/owb/rtp/sql/oem_exec_template.sql - complete path of oem_exec_template.sql file
    CDS_TXN_LOAD_PROCESS_FLOW_LOC - process flow location
    CDS_TXN_LOAD_PROCESS_FLOW_01 - process flow name
    PROCESS - keyword to run workflow process
    Cheers
    Ranjeesh

  • Where is the startup demeon located in? I need to kill it.

    I'm trying to delete and uninstall an old version of Norton Utilities, but it keeps popping up a dialog at startup telling me that Norton Utilities has detected a new version of Mac OS.
    I found out Norton keeps crashing my system (from the crash log) and corrupting my disk volume because the FileSaver keeps changing my disk volume info. I have used their uninstaller to uninstall it but it couldn't find any Norton existing. I manually deleted every Norton trace in Application Support folder, Library folder, Preference Pane folder, Preferences folder. I did a SpotLight search on all traces of "Norton" and "Symantec" and delete them all. I also looked at the Startup Items in Account preference, and none exist there.
    But the startup demeon still pops up, so Norton still exists somewhere, most likely under unix directory. I need to delete it because it keeps screwing up my disk volume info, and crashing me randomly. So where does unix's startup demeom live?
    Message was edited by: nicoladie

    Symantec Uninstaller 1.0.2 – Mac OS X – VersionTracker is the official uninstaller. Otherwise see,
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash. Applications may create preference files that are stored in the /Home/Library/Preferences/ folder. Although they do nothing once you delete the associated application, they do take up some disk space. If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application. In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder. You can also check there to see if the application has created a folder. You can also delete the folder that's in the Applications Support folder. Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item. Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder. Log In Items are set in the Accounts preferences. Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab. Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term. Unfortunately Spotlight will not look in certain folders by default. You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead. Download Easy Find at VersionTracker or MacUpdate.
    There are also several shareware utilities that can uninstall applications:
    AppZapper
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Windows Central Instance ABAP+JAVA plus UNIX ABAP dialog instances ?

    Hi everybody,
    we are an SAP software partner and provide SAP complementary software on UNIX and Windows platforms.
    Part of our software (a gateway) needs to be installed on the SAP application server.
    In order to setup a cross-platform test environment for our developers, I was thinking about extending the existing SAP ERP 6.0 Windows-based Central Instance (IDES, Oracle, usage types ABAP+JAVA) by multiple ABAP dialog instances which run on different UNIX flavours (Solaris, AIX, Linux).
    I searched the SAP Notes and found nothing which could confirm my plans, as this is quite an unusual setup and heterogenous systems are usually the other way round (CI on UNIX, DI on Windows).
    SAP Note 1067221 however mentions that DIs on different OS platforms are only partly supported, but it seems this is only valid for JAVA DIs?
    As I need only ABAP DIs, I hope my plans are fine?
    Many thanks for your feedback
      Markus

    > I searched the SAP Notes and found nothing which could confirm my plans, as this is quite an unusual setup and heterogenous systems are usually the other way round (CI on UNIX, DI on Windows).
    Well - what is "usual" depends on the requirements
    It's possible to do that. Technically there's no difference whether an application server is Unix or Windows based.
    There are, however, a few things to take care of:
    - if your system is non-Unicode, sorting algorithms are different on different platforms. Unicode systems use ICU which is cross-platform
    - if you want to automatically distribute your kernel on system start you will need to create a "share" on the Windows machine and make it accessible from  the various other platforms. You can, however, ensure "manually", that you use the same kernel patchlevels on all systems, then this is not needed
    - Windows is LittleEndian whereas most Unix systems are BigEndian, depending on if you exchange data between those systems (means, binary data, files through NFS) the programs must be aware of the fact, that a file can be either LE or BE.
    Markus

  • Unable to make alias of UNIX executable

    I've installed an open source X-11 app using Fink, and it works fine, but it's kind of difficult to get to (buried deep in a directory structure), so I wanted to make an alias of the app in my Applications folder. Couldn't do it -- the "Make Alias" entry was not there when I right-clicked on the icon; it was grayed out in the File menu, too.
    What's the problem, and how do I fix it?
    I know I could make a symlink, but I want to know why alias doesn't work.

    Hi.
    Probably it's because you don't have write permissions to the directory where the unix executable lives. Instead of using the menu item, hold down the apple & opt (or alt) keys while dragging the file - the cursor should change to the alias symbol - to another location (like the desktop) to create an alias there. I just tried it and it worked fine.
    Although it would obviously be easier to drag it straight to the Applications folder since it's conveniently placed on the sidebar - I didn't think of that before.
    Message was edited by: chris_R

  • What are the unix commands w.r.t pl/sql

    How unix commands will help in pl/sql.
    what are those commands,why UNIX ie preferable than windows environment.
    cheers...

    Chinnu wrote:
    How unix commands will help in pl/sql.
    what are those commands,why UNIX ie preferable than windows environment.Unix isn't used in PL/SQL. PL/SQL is a language in it's own right and Unix is the operating system that Oracle can run on.
    Oracle will run quite happily on both Windows and Unix environments (as well as some other *nix specific versions e.g. linux etc.).  Unix is often preferred by people for a server environment as it has a history of being a more stable operating system, but there are plenty who use Windows as a server environment too (we ourselves have both windows and unix servers).
    There are advantages and disadvantages to both. e.g. it is more easy to treat an MS Excel spreadsheet as an external database using an Excel ODBC driver and Oracle Hetereogeneous services if you are using a windows server, whereas on Unix you generally have to purchase a special ODBC driver to cope with Excel files, but likewise Unix has some benefits over Windows aside from the reliability factor.

  • ODI and OWB???

    Hi every one I would like to know the difference between Oracle Data Integrator and Oracle Warehouse Builder. Can I use ODI in place of OWB or in reverse??
    Thanks,
    Pratap.

    1. OWB comes free with the 11g DB where as you need to buy ODI.
    2. ODI is acquired by Oracle from Sunopsis where as OWB is Oracle's own.
    3. ODI is compatible with Webservices etc where as in OWB you cannot call a webservice.
    4. For ODI the metadata can be stored in any relational database from any vendor; where as OWB you need Oracle to store the metadata.
    5. OWB is ETL whereas ODI is ELT. It takes the power of the target database for Transformation.
    6. Data Quality comes free with OWB whereas you need to Buy DQ as a separate module for ODI
    7. ODI is completely written in open standard Java language not sure about OWB
    8. OWB is good for Data Mininng.
    9. ODI easily integrates with Oracle SAO suite tools such as BPEL and ESB
    10. I may be wrong but - I think Informatica is a better tool for pure and complex data warehousing projects. Where as ODI is an excellent tool for Integration projects.
    my 2 cents
    :)

  • How to pass BindVariables to External Process (Workflow)

    I build a shell script (unix) which accepts a command line parameter .... a "filename"
    The "filename" is a dynamic name!
    The workflow is build with a custom input parameter "filename" ... which I want to pass to an external process, which calls this shell script:
    How can I do that ?
    ExtProcess:
    Command : Val=/bin/ksh
    Parameter_List : Val=":/home/bin/myscript.sh:${Task.Input}:"
    (Binding ":Filename" replaces the whole value, sorry)
    Succes_Threshold: Val=0
    Script : Val="" , Binding=":Filename"
    ... does not pass the value of ":Filename"
    Script : Val="/tmp/fixed.name"
    ... works only with fixed names
    what I really need is something simple like:
    Parameter_list : Val=":/home/bin/myscript.sh:${Parameter.Filename}:FIXPARAM:"
    or Script : Val=":${Parameter.Filename}:${Parameter.Param2}:${Parameter.Pram3}"
    ... similar problem I had with FTP, I found no way to pass dynamic filenames or other parameters (except LOCATION Parameters)
    ... similar problem I had with EMAIL I found no way to include PARAMETERS to the mail body (except to replace the whole body by 1 parameter)
    Is there a solution or is in current version OWB 9.2 only "static" parameters supported.
    I also was missing to pass OUTPUT-parameters for example of a TRANSFORMation,
    I also was missing some urgent SYSTEM-parameters for self identification of the process(like "SYSTEM.TASK_NAME" "SYSTEM.EXECUTION_AUDIT_ID" "SYSTEM.ITEM_KEY" )
    Thanks for all hints and best regards
    Martin

    Actually... After further investigation this may not be needed. I'd be interested in the answer, to understand what is possible.
    The concept of passing parameters in the OWB workflow designer is rather limited, in my humble opinion. Sure, you can designate a "start" sequence that takes a parameter and you can pass that to mappings/transformations but there is no chance for feedback. Ie, if I manually (or through some rigged script) execute the flow with the "PARAMETER" then it will be able to bind. What about mid-flow. IE, select the record to be "processed", then call a "flow" with that as a parameter.
    Am I mistaken? Is there a way to expose the "out" parameters of a mapping, or the return of a "transformation function" as "OUTS" in the process flow.
    Of course, in a world where everything is OWB and in the DB one can leave data in tables, and pick it up on the other mappings. HOWEVER, most BI systems involve external retrievals, etc. that need a bit more "intelligence" then "run and return 1,2,3" . :)
    Hope this is helpful for product feedback. If I'm mistaken on the WF capabilities please clue me in. :)
    btw, I'm an OWB fan, certainly. The progress over the past two years has been excellent.

  • FILTER logic getting jumbled when GENERATED...

    Environment:
    OWB10g Client on Windows XP Professional
    Repository - 9.2.0.4 on UNIX (AIX 5.2)
    Target - 9.2.0.4 on UNIX (AIX 5.2)
    I have a FILTER operator with the following in it:
    ( INOUTGRP1.ORDER_TYPE_PDDCTO = 'RX' And trunc ( INOUTGRP1.TRANSACTION_DT_PDTRDJ ) = trunc ( sysdate ) And trunc ( INOUTGRP1.FP_NEED_DT ) <= trunc ( INOUTGRP1.REQUEST_DT_PDDRQJ ) ) Or ( INOUTGRP1.LINE_TYPE_PDLNTY IN ( 'S','DM' ) And INOUTGRP1.STOCKING_TYPE_IBSTKT = 'P' And INOUTGRP1.UNITS_OPEN_PDUOPN > 0 And INOUTGRP1.ORDER_TYPE_PDDCTO = 'O3' And trunc ( INOUTGRP1.SCHED_PICK_DT_PDPDDJ ) < trunc ( sysdate ) )
    It is an 'OR' between two separate sets of logic.
    When the mapping is Generated the above code comes out like this:
    WHERE -- ( = )
    AND
    -- ( = )
    AND
    -- -- -- -- -- -- -- -- -- ( ( = 'RX' And trunc ( ) = trunc ( sysdate ) And trunc ( ) <= trunc ( ) ) Or ( IN ( 'S' , 'DM' ) And = 'P' And > 0 And = 'O3' And trunc ( ) < trunc ( sysdate ) ) )
    Can someone please tell me where in the %#^#* OWB is getting the above logic to translate my FILTER into the above gibberish?
    This produces a 'PL/SQL: ORA-00936: missing expression' error on that line when I try to deploy it.
    Also, on a related note that I saw a thread on earlier but can't find now, how do I get the FILTER operator to retain my CR/LF in the expanded expression of the filter?
    The tag at the bottom of the expression window, where it shows the Line and Column numbers, shows WINDOWS:CR/LF which I thought I had read would retain the CR/LF's I put in the expression to make it easier to read rather than having to scroll to the right 27 miles.
    Deep breath.
    Deep breath.
    Deep breath.
    Ommmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm.
    Ommmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm.
    I'm OK now.
    Any help is greatly appreciated. ;-)>
    Gary

    Good morning Gary,
    I remember we had the CR/LF discussion earlier, maybe it's 10g that wrecks it, got 9.2.0.4 here which works flawlessly in that sense.
    Got 10g on my laptop (of course not with me right now) but basically the only thing that bugs me there is some nasty behaviour of not showing the entire 'picture' of a mapping any more after there have been some popups (like context or property menu) in the front.
    Tip: if you want to show code in a thread use [ code] and /code] to mark it (in lowercase, without the space after the [, otherwise it would not show), e.g.:[code]
    ( INOUTGRP1.ORDER_TYPE_PDDCTO = 'RX' And trunc ( INOUTGRP1.TRANSACTION_DT_PDTRDJ ) = trunc ( sysdate ) And trunc ( INOUTGRP1.FP_NEED_DT ) <= trunc ( INOUTGRP1.REQUEST_DT_PDDRQJ ) ) Or ( INOUTGRP1.LINE_TYPE_PDLNTY IN ( 'S','DM' ) And INOUTGRP1.STOCKING_TYPE_IBSTKT = 'P' And INOUTGRP1.UNITS_OPEN_PDUOPN > 0 And INOUTGRP1.ORDER_TYPE_PDDCTO = 'O3' And trunc ( INOUTGRP1.SCHED_PICK_DT_PDPDDJ ) < trunc ( sysdate ) )
    I was about to ask you what happens if you apply this code without any CR/LF in it, but I guess you've tried that?
    Could be the OR is the culprit here. As a workaround maybe you want to try out some Boolean algebra to get rid of the OR. If memory serves me well:
    (A.B)+(C.D) equals
    NOT(NOT((A.B)+(C.D))) equals
    NOT(NOT(A.B).NOT(C.D))
    hence NOT(
    NOT( INOUTGRP1.ORDER_TYPE_PDDCTO                   = 'RX'
      AND TRUNC ( INOUTGRP1.TRANSACTION_DT_PDTRDJ ) = TRUNC ( SYSDATE )
      AND TRUNC ( INOUTGRP1.FP_NEED_DT )           <= TRUNC ( INOUTGRP1.REQUEST_DT_PDDRQJ )
    AND
    NOT( INOUTGRP1.LINE_TYPE_PDLNTY IN ( 'S','DM' )
      AND INOUTGRP1.STOCKING_TYPE_IBSTKT = 'P'
      AND INOUTGRP1.UNITS_OPEN_PDUOPN > 0
      AND INOUTGRP1.ORDER_TYPE_PDDCTO = 'O3'
      AND TRUNC ( INOUTGRP1.SCHED_PICK_DT_PDPDDJ ) < TRUNC ( SYSDATE )
    )An other option would be to use an expression operator to build a status 'column', and in this expression you build the filter logic with a case statement. Next, in the filter you use the status input to filter records.
    Hopefully one of Oracle's own OWB-guys will be looking at this forum soon (if I use JP Dijcks as benchmark, they haven't since 28th of January) and give an answer on whether your noticed behaviour is a bug.
    Good luck, Patrick

  • "XMLDOM package cannot be found"

    I get the following message while trying to set up the design repository under Oracle 9i Enterprise 9.2.0.1.0 (Unix)
    OWB version is 9.0.4.8.21 (Running from Windows)
    "lineage and impact analysis won't work if user continues this installation since XMLDOM package cannot be found under this user"
    I did not have this problem installing Oracle 9i Enterprise 9.1.??? (Windows) at home with the same OWB version..
    please help !

    Oracle XML toolkit is required in database to run lineage and impact analysis. It's under Oracle 9i Development Kit node in the components tree when you run Universal Installer.
    Note that this is documented in "OWB Install Guide", section 1.2.2.1 where it states "Install the Oracle9i database with the Oracle XML Toolkit option."
    Nikolai

  • Having multiple Node manger process in a single host machine.

    I am using weblogic server(portal)10.2.
    I am running the Node Manager to start the admin server.I have installed Java based Node manager in the host machine .Created a unix id ND1 and started the Node Manager utiliy with this id.
    I keep on creating domain for my new applicaitons and add this ND1 in each new domain group,so that ND1 will access the new domain's admin folder.
    Now when I add this ND1 in more than 16 domain groups,I got trouble in accessing the domain folder.In unix OS there is group membership limitation where a unix id cannot be in more than 16 groups.
    Anyone came acroos this issue?
    Possible options.
    1) Can we have multiple node manager ids(ND1,ND2,ND3..etc) for a single Node manager utility in single host?
    2) While starting the server,will node manager look only the nm_password.properties file in domain folder?

    You can boot multiple Node Managers if you change the NodeManager home. To do that, create a directory for each NodeManager and copy the startNodeManager script to it. Then edit the NODEMGR_HOME, LISTEN_ADDRESS, and LISTEN_PORT

Maybe you are looking for

  • IPad 2 will not charge or be recognized by iTunes

    Ok... before anything is said, I have read basically every thread here and elsewhere regarding this issue. I have reset the iPad and done everything else many times over. The problem here is not exactly that my iPad will not charge no matter what. If

  • Horrenduos output from top.

    Hello, We are running Oracle 10.2.0.3 on prod. The db server (host) is being used by oracle processes like hell most of the times. Assume that ORACLE_SID is "SID" SGA is set to 5G, and PGA to 4G. Server is running in DEDICATED_SERVER_MODE. PROCESSES=

  • My contacts and voicemail options were set by transfer.at the store. Now I can't get visual voicemail setup on the IPhone 4s

    Visual voicemail can't be set up after phone contacts and voicemail were transferred at AT&T store

  • Coding mask problem

    Hi All, I am facing the problem in coding mask. I have existing project coding  mask let say abcd :000/0/0/00 like this. here i am using project id of 4 char and remaing 20 for coding. i will like to use project id as abc and remain 21char for coding

  • SIP configuration on N95 problem

    Hi, I'm trying to set a SIP profile on my N95 using Nokia native SIP. My goal is to run a VoIP service named Spikko. I followed the Skippo instruction sheet (to be enclosed below), but fail to establish a connection. I checked and rechecked the SIP p