In urgent need of Warehouse Builder 10.1.0.1 (alternatively 10.1.0.2)

Can anyone please point me to a downloadlocation where I can find Warehouse Builder 10.1.0.1 (or 10.1.0.2) for Windows ?
On the Oracle download-page, only version 10.1.0.4 is available.
regards
Henrik Poulsen

Yes I am looking for release 1.
The link provided is for 10.1.0.4 - I am looking for 10.1.0.1 or 10.1.0.2
regards
Henrik Poulsen

Similar Messages

  • URGENT | Need HELP to build programmatic view criteria

    Hi
    I need to build programatic view criteria like below,
    ((JobId = "SH_CLERK" AND Salary > 2500) OR ( Salary > 2500))
    AND (DepartmentId =100)
    Kindly help how can we achieve this,
    The ViewCriteriaItem objects like below, how to link them to achieve like above statement.
    ViewObjectImpl empVOImpl = getEmployeesView1();
    ViewCriteria vc = empVOImpl.createViewCriteria();
    ViewCriteriaRow vcr = vc.createViewCriteriaRow();
    //criteria for employee id
    ViewCriteriaItem vci1 = vcr.ensureCriteriaItem("JobId");
    vci1.setValue("SH_CLERK");
    //criteria for showing employees whose salary are more than 10000
    ViewCriteriaItem vci2 = vcr.ensureCriteriaItem("Salary");
    vci2.setOperator(">");
    vci2.setValue(new Number(2500));
    //criteria for department
    ViewCriteriaItem vci3 = vcr.ensureCriteriaItem("DepartmentId");
    vci3.setOperator("=");
    vci3.setValue(new Number(100));
    vc.addElement(vcr);
    empVOImpl.applyViewCriteria(vc);
    - Rajesha
    Edited by: user12820425 on May 15, 2013 10:18 AM

    Hi Rajesha,
    You can follow below steps.
    1)Create VOImpl for VO on which you have query based.
    2)Remove Column(eg.JobId) from standard Default ViewCriteria
    3)In VOImpl create method to Create View custom Criteria, Add element
    public ViewCriteria  addCustomVC(){
                ViewCriteria vc = null;
                vc = this.createViewCriteria();
                vc.setName("customVC");
            ViewCriteriaRow vcRow = vc.createViewCriteriaRow();
            vcRow.setConjunction(ViewCriteriaRow.VC_CONJ_AND);
            if(getJobId() != null){ 
                vcRow.setAttribute("JobId", "' job_id = "+getJobId()+"'"); 
            }else {
                vcRow.setAttribute("JobId",null);
            vc.addElement(vcRow);
    return vc;
    }4)Override standard method public String getCriteriaItemClause to exclude above columns
        @Override
        public String getCriteriaItemClause(ViewCriteriaItem viewCriteriaItem) {
            //JobId
            if( "JobId".equals(viewCriteriaItem.getName()) ) {
                return (String) viewCriteriaItem.getValue();   
            }else{
                return super.getCriteriaItemClause(viewCriteriaItem);
        }5)Override public void executeQuery() method to add custom view criteria
    @Override
        public void executeQuery()
                applyViewCriteria(addCustomVC(), true);
                super.executeQuery();
                removeApplyViewCriteriaName("customVC");
        }Thanks,
    Jit

  • Scheduling in Warehouse Builder

    Hi all,
    There is an urgent requirement for scheduling in warehouse builder in my project. Can any one provide me the doucument for the scheduling processes in warehouse builder.

    Hi
    There's 2 ways I've done this:
    1 Use the scheduler in OWB - you need to license the Enterprise ETL option but then it's just a case of reading the manual and setting it up. You will need to have Oracle Workflow installed which is a bit more
    involved but there's lots of posts about that elsewhere on the forum.
    2 Use DBMS_SCHEDULER to run your processes or mappings. Read this blog at Rittman Mead: [http://www.rittmanmead.com/2005/04/28/scheduling-an-owb-90492101-mapping-or-process-flow-using-dbms_job/]
    Set up the function and then call it via a pl/sql block which can be scheduled. Very quick to get set up and doesn't need a license.
    Hope that's enough to get you started
    Pete

  • Problem in DB Link creation ( Oracle warehouse builder 3i  )

    I am facing a problem in DB Link creation.
    Backend: Oracle 8i Server on my machine
    DW Software: Oracle warehouse builder 3i ( client , repository asistant.....)
    Operating system: Windows NT 4 SERVICE PACK 6
    I wants to use the scott database( default database given by oracle ) as my input source.
    How can I create the DB LINK ( for scott database) ?
    How can I create the DB LINK ( for any other database) ?
    Should I need to add anything in Setting of"ODBC DATASOURCE ADMINISTRATION"
    ==================
    Settings done:
    ==================
    DB Link Name :scott
    Host name
    Host name: my machine's ip address
    port number: 1521
    oracle sid: prashant ( my oracle sid)
    user name:scott
    password:tiger
    ==================
    Gives error:
    ==================
    Testing...
    Failed.
    ORA-02085 Database link %s connects to %s
    *Cause:   a database link connected to a database with a different name.
    The connection is rejected.
    *Action:   create a database link with the same name as the database it
    connects to, or set global_names=false.
    Please change it to false by doing :
    first option:
    Log in the database with DBA privilege and use the command:
    alter system set GLOBAL_NAMES = false
    second option:
    Change the GLOBAL_NAMES to false in database system parameter file, init.ora
    ==================
    Options tried:
    ==================
    1. I tried to change GLOBAL_NAMES = false but still not able to create the DB LINK.
    2. As per suggestion of one the friend
    "A file named "Logon.Properties" under the directory $OWB_HOME/wbapp
    in this file please set the property
    OWBSingleUserLockUsage = false"
    I tried the same but it is still not working.
    How should I proceed further.
    I am expecting URGENT FEEDBACK.
    Reply me on : [email protected]
    From
    Prashant

    I solved the problem.
    Procedure I followed :
    UNINSTALL ORACLE WRAEHOUSE BUILDER SOFTAWARE.
    'GLOBAL_NAMES = FALSE' in init.ora file.
    RESTARTED MY MACHINE.
    INSTALL THE ORACLE WRAEHOUSE BUILDER SOFTAWARE.

  • Urgently need help with this

    Hi!!
    I urgently need help with this:
    When I compile this in Flex Builder 3 it says: The element type 'mx:Application' must be terminated by the matching end-tag '</mx:Application>'.
    but I have this end tag in my file, but when I try to switch from source view to desgin view it says, that: >/mx:Script> expected to terminate element at line 71, this is right at the end of the .mxml file. I have actionscript(.as) file for scripting data.
    This is the mxml code to terminate apllication tag which I did as you can see:
    MXML code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#007200, #000200]" width="1024" height="768" applicationComplete="popolni_vse()">
    <mx:HTTPService id="bazaMME" url="lokalnabaza/baza_MME_svn.xml" showBusyCursor="true" resultFormat="e4x"/>
    <mx:Script source="dajzaj.as"/>
    <mx:states>
    <mx:State name="Galerije">
        <mx:SetProperty target="{panel1}" name="title" value="Galerije MME"/>
        <mx:SetProperty target="{panel2}" name="title" value="opis slik"/>
        <mx:SetProperty target="{panel3}" name="title" value="Opis Galerije"/>   
        <mx:AddChild relativeTo="{panel1}" position="lastChild">
        <mx:HorizontalList x="0" y="22" width="713.09863" height="157.39436" id="ListaslikGalerije"></mx:HorizontalList>
                </mx:AddChild>
                <mx:SetProperty target="{text1}" name="text" value="MME opisi galerij "/>
                <mx:AddChild relativeTo="{panel1}" position="lastChild">
                    <mx:Label x="217" y="346" text="labela za test" id="izbr"/>
                </mx:AddChild>
                <mx:SetProperty target="{label1}" name="text" value="26. November 2009@08:06"/>
                <mx:SetProperty target="{label1}" name="x" value="845"/>
                <mx:SetProperty target="{label1}" name="width" value="169"/>
                <mx:SetProperty target="{Gale}" name="text" value="plac za Galerije"/>
            </mx:State>
            <mx:State name="Projekti"/>
        </mx:states>
    <mx:MenuBar id="MMEMenu" labelField="@label" showRoot="true" fillAlphas="[1.0, 1.0]" fillColors="[#043D01, #000000]" color="#9EE499" x="8" y="24"
             itemClick="dajVsebino(event)" width="1006.1268" height="21.90141">
           <mx:XMLList id="MMEmenuModel">
                 <menuitem label="O nas">
                     <menuitem label="reference podjetja" name="refMME" type="check" groupName="one"/>
                     <menuitem label="reference direktor" name="refdir" type="check" groupName="one"/>
                  <menuitem label="Kontakt" name="podatMME" groupName="one" />
                  <menuitem label="Kje smo" name="lokaMME" type="check" groupName="one" />
                 </menuitem>           
                 <menuitem type="separator"/>
                 <menuitem label="Galerija">
                     <menuitem label="Slovenija" name="galSvn" type="check" groupName="one"/>
                     <menuitem label="Nemčija" name="galDeu" type="check" groupName="one" />
                 </menuitem>
                 <menuitem type="separator"/>
                 <menuitem label="projekti">
                     <menuitem label="Slovenija" name="projSvn" type="check" groupName="one"/>
                     <menuitem label="Nemčija" name="projDeu" type="check" groupName="one" />
                     <menuitem label="Madžarska" name="projHun" type="check" groupName="one"/>
                 </menuitem>
             </mx:XMLList>                       
             </mx:MenuBar>
        <mx:Label x="845" y="10" text="25. November 2009@08:21" color="#FFFFFF" width="169" height="18.02817" id="label1"/>
        <mx:Label x="746" y="10" text="zadnja posodobitev:" color="#FFFFFF"/>
        <mx:Panel x="9" y="57" width="743.02814" height="688.4507" layout="absolute" title="Plac za Vsebino" id="panel1">
            <mx:Text x="0" y="-0.1" text="MME vsebina" width="722.95776" height="648.4507" id="Gale"/>
        </mx:Panel>
        <mx:Label x="197.25" y="748.45" color="#FFFFFF" text="Copyright © 2009 MME d.o.o." fontSize="12" width="228.73239" height="20"/>
        <mx:Label x="463.35" y="748.45" text="izdelava spletnih strani: FACTUM d.o.o." color="#FBFDFD" fontSize="12" width="287.60565" height="20"/>
        <mx:Panel x="759" y="53" width="250" height="705.07043" layout="absolute" title="Plac za hitre novice" id="panel3">
            <mx:Text x="0" y="0" text="MME novice" width="230" height="665.07043" id="text1"/>
            <mx:Panel x="-10" y="325.35" width="250" height="336.61972" layout="absolute" title="začasna panela" color="#000203" themeColor="#4BA247" cornerRadius="10" backgroundColor="#4B9539" id="panel2">
                <mx:Label x="145" y="53" text="vrednost" id="spremmen"/>
                <mx:Label x="125" y="78" text="Label"/>
                <mx:Label x="125" y="103" text="Label"/>
                <mx:Label x="0" y="53" text="spremenljivka iz Menuja:"/>
                <mx:Label x="45" y="78" text="Label"/>
                <mx:Label x="45" y="103" text="Label"/>
            </mx:Panel>
        </mx:Panel>
        <mx:Label x="9.9" y="10" text="plac za naslov MME vsebine" id="MMEnaslov" color="#040000"/>
         </mx:states></mx:Application>

    I know it's been a while but… did you fix this?
    It looks to me like you are terminating the <mx:Application> tag at the top. The opening tag should end like this: resultFormat="e4x">, not resultFormat="e4x"/> (Remove the /).
    Carlos

  • A bug in the warehouse builder regarding mappings of dimensions

    Hi there
    I do not know if this is the right place to submit a possible bug. Anyways - here goes.
    Warehouse builder client: 10.1.0.2.0
    Warehouse builder repository: 10.1.0.1.0
    I'm creating a dimension, having one level attributes property as a varchar2(30). Thus it has a length of 30. Now, later on I decide this was an error. I update the property to a number, deploys, and reconcile the dimension inbound in the mapping. From now on, it will give an error, since it remembers the length. And a number has a size, not a length. If I remove the dimension from the mapping, and inserts it again, the error still occurs.
    By the way, I am able to reproduce this.
    Anyone who has experienced this, and can blame the stupid user (me) or classify this as a bug?
    Yours
    Kim Andersen

    Hi Igor
    The "error" is actually a "warning":
    Warning: VLD-1004: Column length of ASD_ASDASD is longer than the target column length.
    where ASD_ASDASD is the dimension property, which I altered. It is annoying, though, to have warnings on the list, that aren't needed. And I also spent considerable time thinking that was the error in a mapping, whereas it was a stupid mistake made by me somewhere else :)
    If it's a registered bug, do I get to win some branded Oracle candy?! :)
    Yours
    Kim

  • Oracle warehouse builder - OWB & Oracle 10g Db on SuSE

    hi folks,
    i have Oracle 10g db on my laptop; and it runs great!
    but since i am trying to gain skills in data warehousing and business inteligence, and after reading about oracle warehouse builder, i decided to install it on my laptop as well.
    but i can not get my head around the docs for installing OWB.
    is the only requirement for OWB to have an OWB_ORACLE_HOME environment variable on linux? how do we start OWB service automatically?
    has anyone installed OWB with oracle on the same pc?
    i would appreciate your comments.
    thanks in advance,
    Nicolas

    Thanks Andreas,
    i have printed and followed the advice on these documents.
    that is how i have got confused about this OWB_ORACLE_HOME.
    i would very much appreciate if could provide me with some brief description of which environment variables are needed for OWB installation.
    regards,
    nicolas

  • Warehouse Builder - Workflow - How to integrate both?

    Hi All
    I have installed Oracle Workflow Server in a SUN machine; and the Oracle
    Workflow Client (Builder) in a WIN2000 machine.
    In the SUN machine, I already had installed Oracle9i and OMS (Oracle
    Management Server) version 9.2.0.1.0.
    In the WINDOWS 2000 machine, I already had installed the Oracle9i
    Client and the OWB (Oracle Warehouse Builder) version 9.0.3.35.0. Workflow Builder
    was installed together with Oracle Client components.
    I have a OWB (Oracle Warehouse Builder) project, and I deploy and schedule JOBS in OEM.
    Now I need Oracle Workflow in order to better ordering, manage and schedule that jobs.
    I'm reading the following documentation:
    Oracle Workflow Guide (Release 2.6.2)
    http://www.csis.gvsu.edu/GeneralInfo/Oracle/workflow.920/a95265.pdf
    But I think Oracle Workflow is very complex to learn quickly.
    My OWB Project has several mappings that load tables in a Data Warehouse.
    When I deploy these mappings one by one, in OEM, I can execute them in OEM
    and they work well.
    But when I use the Workflow Deployment Wizard, I create a new Workflow
    Project (Item type and Process).
    But I can't Launch this process. I go to Launch Process in Workflow page
    (http://<my_machine>:<port>/pls/<WorkDAD>/) but when I iniciate the project,
    it stops in the OWB Standard Begin Function. It does not go ahead.
    Well, when I use the Workflow Deployment Wizard inside OWB, it generates jobs that can
    be viewed inside OEM (Oracle Enterprise Manager) too. But when I submit
    these jobs, I can't get success too.
    Can somebody help me? May you guide me in order to solve my problem, or send me some
    documents or links about workflow, and it's integration with OWB and OEM?
    Best regards
    Adriano Sastre Vieira
    Especialista em Sistemas
    Inatel Competence Center
    +55 35 3471 9335
    [email protected]

    Mark, I've already made the steps you suggested.
    As it did not works yet, I will explain step by step what I've made, and the versions of the softwares:
    In my Win2000 machine (development) I have installed:
    - OWB version "9.0.3.33.0" and updated it to "9.0.3.35.0". (in a Oracle9iDS ORACLE_HOME).
    - the OEM version "9.2.0.1.0" and Oracle Workflow Builder version "2.6.1.5.2" (in a Oracle9i ORACLE_HOME), both were installed with Oracle9i Client. Here maybe an error is the OWF Builder version, is there an newer version of it?
    In a SUN SOLARIS machine (the server) we have installed:
    - OMS version "9.2.0.1.0".
    - OWF Server version "2.6.2" (installed with Oracle "9.0.2.1").
    - Apache HTTP Server version "1.3" (also installed with Oracle "9.0.2.1").
    - The repository for OWB, OEM and OWF (both 3 are different schemas in one database), and the target Warehouse (another database) are installed in this machine (SUN) too.
    Well, working in my OWB project I can normaly deploy my tables, views and mappings in the target warehouse.
    I can also run these jobs (generated by OWB) and they populate the Warehouse tables. It is exactly what I need, but now I need to schedule and order these jobs in workflow, you know.
    When I run the Workflow Deployment Wizard (in OWB), in the "connect information for the Workflow Server" screen, I fill in with the "owf_mgr" username and its password. In the next screen I choose one or more mappings.
    Next, suppose I fill in the Workflow Item Type as WIT_DW and the Workflow Process as WP_DW.
    And in the last screen, I check the option "Deploy the Workflow Process into OEM".
    It generates 4 jobs in OEM:
    - WIT_DW_OWB_STD_BEGIN
    - WIT_DW_OWB_STD_END
    - WIT_DW_OWB_STD_ERROR
    - WIT_DW_WP_DW
    Next, I go to the Oracle Workflow Builder, open the project I've created (in the Database), make the flow, and save the project.
    Next, I come back to the OEM and Submit the "WIT_DW_WP_DW" job, but it does not work. So, there's something wrong yet.
    About the Workflow Queue Listener:
    - Together with OWB 9.0.33.3.0 installation, there's the directory "extras\wfql_unix". I copied this directory contents inside "$ORACLE_HOME" in SUN.
    - Inside OWB, in the Warehouse Module, in the "Configuration Properties DATA_WAREHOUSE" screen, I filled in the "Run
    Time Directories > Queue Listener Directory" field with "/disk1/oracle/owb/bin/solaris". (It's the local where the workflowqlsnr.sh is located). And in the field "Queue Listener Host" I put the name of the SUN machine.
    - But I can't run the workflowqlsnr.sh with success. Some java errors occurs. Is there anything to do or configure yet?
    More questions (Please I'd very glad if you could help me):
    - Is there some thing I need to configure in the Workflow Manager page?
    (http://[machine]:[port]/servlets/em/oam/wfm/wfmLogin$tns_address=)
    E.g., change or add Background Engine / Agent Listener / Queue Propagation / Purge.
    - Is there some thing I need to configure in the Workflow home page?
    (http://[machine]:[port]/pls/[WorkDAD]/wfa_html.home)
    - How do I erase the Workflow Items Type in the Workflow Home Page? I runned the "workflowqclr.sh" but it didn't erase.
    Thanks again
    Adriano Sastre Vieira
    Especialista em Sistemas
    Inatel Competence Center
    +55 35 3471 9335
    [email protected]
    You wrote:
    Adriano,
    In order to manage the dependencies between the mappings using Oracle Workflow you have to do the following:
    - Deploy your mappings (PL/SQL into the database; ABAP to the SAP machine; SQL loader on to the target database's file system).
    - Register all mappings in OEM (that is, using the tcl scripts and the OEM register button).
    - Run the Workflow deployment wizard to create the process steps in Oracle Workflow. At the end of the wizard, you can choose to create Workflow jobs to invoke the process flow.
    - Use Workflow Builder to build the actual process flow (so far you have only created the process steps). Save the process.
    - Either use OEM to submit the process or use the workflowqlsnr.sh to invoke the workflow queue listener manually. In order to use OEM, make sure you have set the Workflow Queue listener path correctly in the configuration of the target module.
    Then... figgers crossed... it should work.
    Hope this helps,
    Mark.

  • Designer Vs. Oracle Data warehouse builder

    Dear all,
    Currently I'm responsible of building a Data warehousing project using Oracle database. I'm trying to decide on a tool for modelling my datawarehouse. I have two options:
    1) Designer: we have some experience with this tool and we are using it for our main OLTP application.
    2) Oracle Data Warehouse builder: we are using this to design our ETL processes.
    I want to get some advice on whether the OWB is capable of modelling my datawarehouse and of doing a retrofit action. also, I try to standardize on the tools that are using in the Data Warehouse department (currently we are using only OWB).
    I will appreciate for any other advice to help in my selection process.
    Best Regards,
    Bilal

    Hi,
    In my experience this choice depends on the implementation of the datawarehouse. If you are building a "pure" Kimball style dimensional data warehouse you should be able to do this using OWB. I have architected such a DW in the past using only OWB, so I am speaking from experience.
    If on the other hand you are planning to implement an Inmon style CIF, if your requirements includes an operational data store (ODS), or if you for any other reason anticipate that you are going to be doing a lot of ER modeling, then I would not recommend using the current release of OWB for modelling. (Note however that there are significant improvements to the modelling capabilities in the Paris release of OWB, so this may change in the future)
    The advantage of improved maintainability when using a single tools needs to be weighted against the improved functionality if you choose a combination of the two. In the "two tool" scenario strict development and deployment routines need to be enforced to avoid that the model in Designer comes out of sync with the metadata in OWB. (Consider the effect of a developer making a change to a table definition in OWB and deploying it directly to the database without updating the model in Designer.)
    Hope this helps.
    Regards,
    Roald

  • Oracle Warehouse Builder

    Dear buddies,
    I need to migrate my tables and data from SQL Server 2005 to Oracle 10g.
    My boss's requirement is I must be able to redo it at any point of time. Meaning, I should be able to use the script at any point to recreate the tables and reload them independently without using SQL Server or the existing configurations.
    Does OracleWarehouse Builder provide such scripts after the migration or in the process of migration, which can be reused independently?
    There are about 7 SQL Server databases and each has around 270 tables. Some would be totally new and some would involve merging.
    Please advice me.
    Thanks.
    Nith

    Hi everyone,
    I tried to Just started like this
    1 - Start - All programs - Oracle Home - Warehouse Builder - Administration - Repository Assitant - Basic Install -
    2 - User Name=rep_user
    password=rep_user
    sysdba user name = sys
    sysdba password = the password i gave during the database creation (using dbca)
    hostname=localhost
    port number = 1521
    oracle service name = test6 (the name for the database & instance for which i just created)
    When I click Next, this error pops us:
    INS009: Unable to connect to the database with user SYS. jaba.sql.SQLException: IO Exception: The Network adapter could not establish the connection.
    The remaining disk space for that drive is few gigs and I have created the database with the 16384.
    Please advice on how I should go about this.
    I have been struggling to perform my migration. I really hope someone would be able to guide me through.
    OS: Windows 2003 Enter Edition
    Oracle 10g
    And I am not able to access anything from SQL Plus after I installed Oracle Warehouse Builder.
    So, is the error I am facing something like to do with a bad installation? Do I need to uninstall my OWB or uninstall my oracle and OWB and reinstall them?
    Please guide me.
    Nith
    Thanks a lot.
    Nith

  • How ETL (mappings) is done in Warehouse Builder ??

    Hi All,
    I am new to warehouse builder and was wondering if there is tutorials or video tutorials on how mapping works in warehouse Builder.
    I need to use this builder to map different tables from different schemas.
    example:
    schema_1 schema_2
    table1 -----> maps to ------> table2
    col1 -----------------> col1
    col2 ---------------> col2
    col3 --------------> col3
    Anything to get me started would be great.
    Thanks for the help.
    Edited by: Rooney on May 21, 2012 12:36 PM
    Edited by: Rooney on May 21, 2012 12:37 PM

    Hi,
    Here are some videos:
    - http://www.youtube.com/watch?v=BUHGSr10gJs
    - http://www.youtube.com/watch?v=Y_V1Lurzwbc
    The better approach is to read the User's Guide http://docs.oracle.com/cd/B28359_01/owb.111/b31278.pdf
    Mina

  • Idea on Warehouse builder

    Hi
    Im new to Warehouse builder and as of now, i've installed Oracle10G warehouse builder. Now i've started working on OWB Client. But i dont know the original purpose of it and other components present in it. Can anybody pls guide me the work flow of warehouse builder and its components. Please guide me on this or give me some reference docs or the work flow to easily understand it. I've the documents that come along with installation but that seems to be too huge and a difficult one to follow for the beginner. so pls give some guidance
    Regards
    S. Kokila

    Indeed, OWB is an ideal tool for this.
    The ETL process you need to transfer from one database to another can be implemented using OWB. The name, Warehouse Builder, can be a little misleading. You do not have to be building a data warehouse, but OWB is still the tool for the job.
    You can use OWB to design the star schema target, design and implement the ETL process (Extraction, Transformation and Loading) to transfer the data from the OLTP schema(s) to the star schema(s) or straight into Oracle OLAP.

  • Deploy on Warehouse builder hangs after validations sucessfull (ora-01017)

    Hello,
    i've a problem with deploying the mappings on warehouse builder.
    I know what's causing it, but i cannot find out how can i fix it.
    Ive a database registered as "target" (not same bd where OWB repository is), where i want to deploy the mappings, that database has been registered with and user (SISED).
    All is working fine until the password of this user SISED has been changed. Know when i try to do the deploy OWB ask me for the autentification of the runtime repository (owbrt_user), then it sucessfully validate the mapping, but when it tries to deploy (generate the package) it fails with ORA-01017 - Invalid Username/Password.
    This is because somewhere in owb repository, the password of user SISED remains the old one. I've try to put SISED password as the old one, and after it works.
    So my question is how can i change the password registered on OWB for the target database's user SISED. I try to do it with OWB client, but i cannot see this option in any place.
    My mail is: [email protected] (if need some more detail for help me).
    Thanks in advance,
    regards,
    Pedro Ribeiro

    Hi,
    Have you tried to re-register the location in the Control Center?
    In Control Center locate the location, right click and choose register. Think this might be the case, unless I've totally misunderstood you.
    regards Ragnar

  • How to run a unix script from oracle warehouse Builder

    Hi,
    can any one share the information about, running the unix script or scripts using oracle warehouse builder.
    Regards,
    Ak

    One way is define a workflow. Inside the workflow you put
    1)an external process that "points to" the shell script and then
    2)put the mapping
    The external process must have the "COMMAND" parameter set to the name of the shell script. If the script has parameters you must put them in the "PARAMETERS LIST" separated by "?" (for example, ?par1?par2).
    The path where OWB executes the external process I think is the ORACLE_HOME of the OWB.
    f you don't use workflow, you can try with this more complex solution. I tried with 9i and OWB 9.2 and it's working well.
    You create an autonomous procedure (within a package or not) :
    CREATE PROCEDURE Extract_Email_List
    DECLARE
    PRAGMA AUTONOMOUS_TRANSACTION;
    And use the sys.shell script that you need your dba/unix admin to install first of all, with a call like that.
    sys.shell('sh ' || txt_dir_name || '/send_email_marketing.sh ' || txt_dir_name || ' ' || email_addr );
    Then you import your procedure into OWB and use it in your mapping with the "pre-mapping" icon (you can set parameters for your proc with constants if you want).
    To implement sys.shell, go to metalink and find "Note:168065.1" - "How to call a UNIX shell script from PL/SQL".
    Once it's done once, it's not so bad. But I would still recommend the workflow approach also..
    I hope this helps.

  • Problem with Starting with Oracle Warehouse Builder 11g Release 1

    Hello,
    I want to do the training modules for owb. I installed Oracle Databes 11g2 and was attempting to load all the demo files from the learning module Starting with Oracle Warehouse Builder 11g Release 1 (http://st-curriculum.oracle.com/obe/db/11g/r1/owb/owb11g_update_getting_started_intro/lesson1/less1_start.htm)
    I get an error during the running of the tcl scripts in omb plus. Everything works until the last files in which an object cannot be found. I get the following error:
    OMB02923: Attribute TIMES_CAL_MONTH_CODE of group SALES of operator SALES_OUT does not exist.
    The only reference i can find to this is in the load_sales.tcl file from the zip-file and i have no idea what is going wrong. As a result 5 mappings are missing in the end result (all LOAD_.. mappings)
    Can anyone assist me with this problem and provide a solution?
    thank you in advance

    Additional information after looking at the tcl files and the data in OWB that was loaded.
    The section where the error occurs connects two parts of a mapping, the OUTGRP1 and the SALES_OUT. THe SALES_OUT is based upon the cube Sales. This cube contains all the data that is being connected except for the 'TIMES_CAL_MONTH_CODE'. I have no idea based upon the code of the creation of the cube where they take the data from. None of the connected attributes is named specifically. The cube also contains the several groups, one of these is time. If you open the details of the group the list of input attributes lists the needed attribute but it is not listed seperatly like all the others that are connected for the mapping. Does anybody have an idea how to solve the problem based on this extra information and the code listed below.
    Code connecting outgrp1 and sales_out:
    OMBALTER MAPPING 'LOAD_SALES' \
    ADD CONNECTION FROM ATTRIBUTE 'AMOUNT' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'AMOUNT' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'COST' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'COST' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'QUANTITY' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'QUANTITY' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT' \
    ADD CONNECTION FROM ATTRIBUTE 'CHANNEL_SOURCE_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'CHANNELS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'SUBCATEGORY_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'PROMOTIONS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'PRODUCT_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'PRODUCTS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'CITY_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'CUSTOMERS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT' \
    ADD CONNECTION FROM ATTRIBUTE 'FINISH_MONTH' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'TIMES_CAL_MONTH_CODE' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'
    Code for creating the cube:
    OMBCREATE CUBE 'SALES'\
    SET PROPERTIES (BUSINESS_NAME, DESCRIPTION, DEPLOYMENT_OPTIONS)\
    VALUES ('Sales Cube', 'Sales Cube', 'Deploy All')
    OMBALTER CUBE 'SALES' ADD MEASURE 'AMOUNT'\
    SET PROPERTIES (DATATYPE,PRECISION,SCALE,BUSINESS_NAME,DESCRIPTION)\
    VALUES ('NUMBER',10,2,'Sales Amount','Sales Amount')
    OMBALTER CUBE 'SALES' ADD MEASURE 'QUANTITY'\
    SET PROPERTIES (DATATYPE,BUSINESS_NAME,DESCRIPTION)\
    VALUES ('NUMBER','Sales Quantity','Sales Quantity')
    OMBALTER CUBE 'SALES' ADD MEASURE 'COST'\
    SET PROPERTIES (DATATYPE,PRECISION,SCALE,BUSINESS_NAME,DESCRIPTION)\
    VALUES ('NUMBER',10,2,'Sales Cost','Sales Cost')
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'TIMES'\
    SET REF LEVEL 'MONTH' OF DIMENSION 'TIMES' AT POSITION "1"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'PRODUCTS'\
    SET REF LEVEL 'PRODUCT' OF DIMENSION 'PRODUCTS' AT POSITION "2"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'CHANNELS'\
    SET REF LEVEL 'CHANNEL' OF DIMENSION 'CHANNELS' AT POSITION "3"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'CUSTOMERS'\
    SET REF LEVEL 'CITY' OF DIMENSION 'CUSTOMERS' AT POSITION "4"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'PROMOTIONS'\
    SET REF LEVEL 'SUBCATEGORY' OF DIMENSION 'PROMOTIONS' AT POSITION "5"
    OMBALTER CUBE 'SALES' ADD COMPOSITE_DIMENSION 'SALES_COMP'\
    SET REF DIMENSIONS ('PRODUCTS','CHANNELS','CUSTOMERS','PROMOTIONS');
    OMBALTER CUBE 'SALES' IMPLEMENTED BY SYSTEM
    puts "SALES defined"

Maybe you are looking for

  • BPM:  System_Error" SOAP fault message received

    Hi, We upgraded SAP system from 4.7 to ERP2004 on 09/17/05. We have XI-3.0 version from last 9 months and this BPM was working good so far. We have not changed anything in it except we upgraded the SAP system. We are using ABAP proxy from SAP to send

  • Errors with reading images

    i am creating a paint program with which users will be able to import their own images. this is my first applet so i do not know how to fix these runtime errors i am receiving. they are: java.security.AccessControlException: access denied (java.io.Fi

  • Why on earth use nested tables?

    Hi I'm boning up on PL/SQL (again) in anticipation of getting a new job. I have many years of experience in various data-related roles, many of which used Oracle. On the issue of collections, I find myself asking, in the light of my experience, and n

  • Lightroom 3 and Flickr

    Hi, Looking at lightroom at the moment and have had a play with the demo version. I am very interested in its FLICKR cabilities and suspect unfortunelty it doesn't go far enough. At the moment I convert files to 100k and add a watermark using Photosh

  • Help!!! Lost all my settings!

    Help! Just lost all my settings. Didn't do nything, just went to look at my Mail. Clicked on Mail in dock, and found that all my emails had gone from all boxes. Closed Mail and re-opened. It showed a box headed "Wecome to Mail" with "You have no emai