Warehouse builder training

we are looking to conduct an on-site Oracle training session for warehouse builder. right now we have only 3 trainees and are allowed to have up to 16 without any cost implications. is anyone in the metro new york/new jersey/connecticut area interested in filling these slots? The training is not free and will be divided up equally amongst all trainees. The more trainees, the cheaper the cost.
For more information call Chris at 631-664-2538

Hello,
If you are looking DW fundamentals, you can look into Ralph Kimball's Dimensional modeling approach. A good book to start for this would be The Data warehouse Toolkit by Ralph Kimball. You can get more info at http://www.ralphkimball.com. There is also a different approach to DW and that is Bill Inmon's. His approach is called the "Corporate Information Factory". You can get more info at his website http://www.inmoncif.com/.
Hope this helps!!
Srinivas.

Similar Messages

  • Oracle warehouse builder 10g r2 .  omb plus scripting

    Hi all,
    im new to this forum,can anybody help me how to learn omb scripting n also expert in owb. help me. will be available 24/7.

    Oracle Warehouse Builder Training
    http://www.oracle.com/technology/products/warehouse/htdocs/OTN_Training.html
    OWB10g R1 tutorial:
    http://www.oracle.com/technology/obe/obe_bi/Lesson14_Extending_OWB_through_Scripting/Extending_OWB_through_Scripting.htm
    OWB10g R2 tutorial (developing Experts):
    http://www.oracle.com/technology/obe/10gr2_owb/10gr2_owb_extend/extensibility/extensibility.htm
    OWB11g R1 tutorial (developing Experts):
    http://www.oracle.com/technology/obe/11gr1_owb/owb11g_update_extend_knowledge/less6_experts/less6_experts.htm
    TCL Tutorial:
    http://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial.html
    http://en.wikipedia.org/wiki/Tcl
    OWB documentation:
    OWB9i (Scripting guide):
    http://download.oracle.com/docs/html/B12187_02/toc.htm
    OWB10g R1 (Scripting reference):
    http://download.oracle.com/docs/cd/E10926_01/doc/owb.101/b12152/toc.htm
    OWB10g R2 (Scripting reference):
    http://download.oracle.com/docs/cd/B31080_01/doc/owb.102/b28225/toc.htm

  • 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"

  • Problem in import of MetaData file in Oracle Warehouse Builder 9.2

    My Problem is Related to Oracle WareHouse Builder.My system's configuration is following :-
    Machine : P4
    Operating System :Windows XP
    ORacle : Version 9.2
    Oracle WareHouse Builder 9.2
    Ram :1GB
    SGA Size :Approximately 650M
    I have 2 MetaData files which I have to import into OWB.
    First file's size is 9M.It got imported properly in 4 minutes without any error.
    2nd File's Size is 30M.when
    I start importing this MEtaData file.It goes upto 35% in Progress Bar.But after that it does not show any improvement.
    I have left the machine running with this option upto 24 hours.
    But nothing happened .It still shows only 35%.
    I have checked log file/Trace file/Alert log files ,but there is no error in these files.
    If any body have any solution about it,Please reply ASAP.I am stucked in this problem from last 7-8 days.
    Waiting for reply
    Thanks & Regards
    Harvinder Singh

    Thanks for your reply Igor.
    As posted the OWB 10.1.0 software is running against a 9.2.0.8.0. database, so OWB still uses DBMS_JOB instead of DBMS_SCHEDULER in this database. In addition I already tested scheduling a simple job to run an OS command as suggested in note 365539.1 , and job scheduling is working fine.
    There are no invalid objects in this database.
    Yasmin

  • 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.

  • Problem in 10g warehouse builder installation

    I installed 10g warehouse builder on windows xp but when I was trying to deploy the mapping it show a error .
    VLD-2771: System privileges may not allow extraction from source EMP.
    please help me out of this problem

    Hello,
    You might build mapping where you manually configure some target/source object to have database schema and/or database link. In this case OWB warns you that mapping could fail due to lack of access privileges to that object.
    But if you explicitly grant appropriate privilege to mapping’s owner – that’s OK. Mapping will work fine but your will still get this warning during validation/deployment.

  • 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 10.1.0.4 on Windows 2008 - 64 bits

    Hi Gurus.
    I'm currently working with a customer who wants to migrate all their database-servers to Windows 2008 on 64-bits processors. They're using Oracle Database Enterprise Edition 10g Release 2 (10.2.0.4) and Oracle Warehouse Builder (10.1.0.4). The OWB-clients will still run on Windows XP. I've used the "Certify"-funcionality on Metalink, but it doesn't really answer my questions. (It does* ansver some of my questions, but it also raises a few new ones....)
    My main question is: Can you run serverside OWB 10.1.0.4 on Enterprise Edition 10.2.0.4 for Windows 2008 64-bits?
    Thanks in advance:-)
    Best regards
    Helge
    Edited by: user613304 on Mar 6, 2009 11:10 PM

    No.
    Oracle Warehouse Builder version 10.1.x was desupported on 16-JUL-2007.
    The desupport notice is available on Metalink (Note 376384.1).
    The Warehouse Builder installation as part of the 11.1.0.7 installation should be certified, but I cannot find specifics.

  • 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

  • Oracle Applications Release 12 and Oracle Warehouse Builder 10gR2

    Hi
    I'm trying to deploying process flows to Workflow but I get the following error:
    RPE-02054: The version of Oracle Workflow is incompatible with this Control Center. Required 2.6.3, but found 2.6.0.
    Comment I found on another thread: "As far Workflow Versions with Oracle Applications is concerned, it is always 2.6.0. Workflow is not identified with its 2.6.x versioning in Oracle Applications. The 2.6.x.x versioning is purely for Workflow Standalone."
    Oracle Warehouse Builder Client: 10.2.1.31
    Oracle Warehouse Builder Repository: 10.2.0.1.0
    Oracle Applications Release 12
    Any help would be appreciated.

    May be the excerpt from the other thread is a response I posted.
    So, when you say, deploying process flows to Workflow, I do not understand what you are doing exactly? If this involves the Oracle Warehouse Builder you may want to explain a little more in detail since I do not understand how OWB works with Workflow. But as far as I have heard, it is Workflow standalone that is packaged with OWB but you are deploying into Oracle Applications.
    What is the version of Oracle Workflow Builder you are using?
    Is the steps you are doing certified to be done with Oracle Applications R12?
    Thanks

  • Oracle Warehouse Builder 10.1.0.4

    Hi All,
    I am searching for Oracle Warehouse builder 10.1 release which is compatible with Oracle database 10gR2 on solaris x86 server.
    I have found softwares for solaris sparc but nothing seems available for oracle 10gR2 on solaris x86.
    OWB 10.1.0.3 is compatible with oracle database 10gR1 and owb 10.1.0.4 and owb 10.1.0.5 are only compatible with 10gR2.
    Currently we are facing some problem with Owb 10.2.0.1 so we have to relay on owb 10.1 release.
    Can any one help me to find link for downloading
    OWB 10.1.0.4 or 10.1.0.5 for solaris x86 server...
    Thanks

    I am still unable to find any owb 10.1.x.x release for solaris x86 environment.
    Do any one have any link for this??
    Message was edited by:
    Fkhalid

  • 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

  • Oracle 9i Warehouse builder...

    HI,
    We are in the process on designing a datawarehouse.
    Please let me know if Oracle ware house builder provides interfaces to the follwing financial systems :-
    1)Great Plains     V6.0
    2)Sun     4.2.6
    3)Oracle Financials     11.5.8
    4)Navision     2.6
    5)Sage Line 100     6.1
    6)Sage Line 100     7
    7)CostPoint     4.0 Service Pack 3
    8)JD Edwards     
    9)SAP     
    10)Exchequer     5.52.083
    11)Agresso     5.4 Service pack 2
    12)ACCPAC     5.1A & 5.2A
    13)Hyperion Enterprise     5.1
    Kindly help

    You should post this question to the Oracle Warehouse Builder forum.
    Warehouse Builder

  • Warehouse Builder 9.2

    Hi All,
    I would like to the differences between Oracle Warehouse Builder 9.2 and earlier 9.0.
    Also how easy it is to migrate projects in 9.0 to 9.2?.
    Regards
    Balachandar Ganesan

    There have been several versions of OWB9i released (9.0.2, 9.0.3, 9.0.4 and 9.2). To learn more about OWB 9.2, please check out OWB's collateral library on OTN:
    http://otn.oracle.com/products/warehouse/htdocs/OTN_collateral.html
    It's easy to migrate projects from OWB 9.0 to 9.2. For detailed instructions, see chapter 3 of the OWB 9.2 Installation and Configuration Guide:
    http://otn.oracle.com/documentation/warehouse.html

Maybe you are looking for

  • Is it likely that I will ever have an Internet con...

    Just wondering if I will ever be reconnected to the internet again?  In our flat in the middle of nowhere in central Russia I had fibre to the premises installed the day after I requested it and at an exact time specified by me! It also costs less th

  • Calculating TDS in amount splitting in MIRO

    Hi experts, In MIRO Transaction there is an amount split tab where I put the vendor retention momey Rs 9362.34/- and  in another line the rest of the amount Rs.40000/- which i have to pay to the vendor by F110 transaction code ,the total bill value i

  • Ovm_utils: can create cpu compatibility group, but can't add vm servers

    Hi, I am running a VM server pool with mixed CPU types. Today I took a closer look at Wim Coekaerts ovm_utils, which revealed that ovm_utils is able to create (arbitrary) cpugroups and move VM servers into them. I thought that this would be a nice th

  • Port assignment for MAC mail into AOL

    What port needs to be assigned for MAC Mail (MacBook Pro,Snow Leopard) to AOL?

  • MacBook Pro HDD and logic board connection

    Hi! Recently my 1.5 year old MacBook Pro hanged while I was watching a movie. So I had to force shutdown the machine. On restarting, I was routed to "System Utilities" and I observed that there was some issue with the hard drive. I could not repair t