Execute main function created by OWB mapping

Hi,
If any one has sample code to run the main function created by OWB mapping?
I try to execute the mapping from sqlplus. But I don't know how to compose the WB_RT_MAPAUDIT.WB_RT_NAME_VALUES input parameter.
Thanks for your help.
William

Please refer to the sql_exec_template.sql file which can be found under the <owb_install>\owb\rtp\sql directory.
Regards:
Igor

Similar Messages

  • Executing an OWB mapping from sqlplus

    Hi
    I am trying to run an OWB mapping using the OWB provided script sqlplus_exec_template.sql. Here is the syntax I use:
    @Script\sql\sqlplus_exec_template.sql OWB_RUN_OWNER CODE_LOC PLSQL MAPPING_TI "," ","
    I am able to successfully execute my task when I use the above script. However, when the account pertaining to 'CODE_LOC' is locked, the script fails and gives me an error message that the account is locked.
    Our security standards expect the CODE_LOC account to be locked. Is there a way around it ? When the mapping is executed, does the Runtime repository owner lookup the task from the Code location or attempts to connect to the account ?
    Can someone advise me on whether I can successfully execute a mapping that is deployed to a locked account ?
    Thanks

    Hi
    The only way I can think of is when the account X is locked, to have granted execute on the packages for the map to schema Y which is unlocked and execute the package MAIN procedure/function from schema Y.
    Cheers
    David

  • How to use functions in OWB (mapping/mapplet/pluggable)

    Hi all,
    we haev developed some sql code for populate data into respective tables. currently we are building mappings to populate data with help of sql code which we created earlier.
    1> in sql code we have called some functions to populate some columns. in owb how do we call functions and which is the best way to do eigther mapping or mapplet/pluggable level.
    we have to pass in put parameter to functions like MONTH,REGION,OFFICE,FINACIAL YEAR like that.
    in owb how do we pass.
    please find the code.
    insert into con_gdpi2
    SRNO,
    REGION,
    OFFICE,
    MONTH,
    FINANCIAL_YEAR,
    DEPT_NAME,
    DEPT_CODE,
    POL_CAT,
    TOT_PREM_UPTO,
    PUB_SEC_PREM_UPTO,
    ORG_DIR_PREM_UPTO,
    ORG_IND_AGENT_PREM_UPTO,
    ORG_CORP_PREM,
    ORG_BROKER_PREM_UPTO,
    ORG_BANKASSURANCE_PREM_UPTO,
    ORG_REFERRAL_PREM_UPTO,
    TIED_SEC_PREM,
    OTH_SEC_PREM
    select
    seq_gdpi2.nextval,
    gdpi2.REGION,
    gdpi2.OFFICE,
    gdpi2.MONTH,
    gdpi2.FINANCIAL_YEAR,
    gdpi2.DEPT_NAME,
    gdpi2.DEPARTMENT_CODE,
    '-' pol_cat,
    gdpi2.TOTAL_PREMIUM_UPTO,
    gdpi2.PUBLIC_PREM,
    gdpi2.DIRECT,
    gdpi2.IND_AGT,
    gdpi2.CORPORATE,
    gdpi2.BROKER,
    gdpi2.BANKASSURANCE,
    gdpi2.REFERRAL,
    gdpi2.TIED,
    OTHER_SEC_PREM_FOR(to_char(MONTH),to_char(FINANCIAL_YEAR),DEPARTMENT_CODE,OFFICE) as OTHER_SEC
    from
    dual,
    (select temp1.REGION
    ,temp1.OFFICE
    ,temp1.DEPT_NAME
    ,temp1.DEPARTMENT_CODE
    ,temp1.FINANCIAL_YEAR
    ,temp1.MONTH
    ,sum(temp1.TOTAL_PREMIUM_UPTO) TOTAL_PREMIUM_UPTO
    ,sum(temp1.IND_AGT) IND_AGT
    ,sum(temp1.BROKER) BROKER
    ,sum(temp1.CORPORATE) CORPORATE
    ,sum(temp1.BANKASSURANCE) BANKASSURANCE
    ,sum(temp1.DIRECT) as DIRECT
    ,sum(temp1.REFERRAL) REFERRAL
    ,sum(temp1.TIED) TIED
    ,sum(temp1.PUBLIC_PREM) PUBLIC_PREM
    from
    (select temp.REGION
    ,temp.OFFICE
    ,temp.DEPT_NAME
    ,temp.DEPARTMENT_CODE
    ,temp.FINANCIAL_YEAR
    ,temp.MONTH
    ,temp.policy_id
    ,sum(temp.TOTAL_PREMIUM_UPTO) TOTAL_PREMIUM_UPTO
    ,case when sum(temp.DIRECT) = 0 then sum(temp.IND_AGT) else 0 end as IND_AGT
    ,sum(temp.BROKER) BROKER
    ,sum(temp.CORPORATE) CORPORATE
    ,sum(temp.BANKASSURANCE) BANKASSURANCE
    ,sum(temp.DIRECT) as DIRECT
    ,sum(temp.REFERRAL) REFERRAL
    ,sum(temp.TIED) TIED
    ,sum(temp.PUBLIC_PREM) PUBLIC_PREM
    from
    (select
    substr(at.ATN_VOUCHER_NUMBER,1,2)||'0000' as REGION
    ,substr(at.ATN_VOUCHER_NUMBER,1 , 6) as OFFICE
    ,(case when aa.ACC_DEPARTMENT_CODE=31 then 'Motor'
    when aa.ACC_DEPARTMENT_CODE=32 then 'Motor T.P'
    when aa.ACC_DEPARTMENT_CODE=39 then 'Motor T.P.Pool'
    end) as DEPT_NAME
    ,aa.ACC_DEPARTMENT_CODE as DEPARTMENT_CODE
    ,t.FISCAL_YEAR as FINANCIAL_YEAR
    ,'AUGUST' as MONTH
    ,pp.policy_id
    ,case when pp.STAKE_HOLDER_ID = 2 then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as TOTAL_PREMIUM_UPTO
    ,case when pp.STAKE_HOLDER_ID = 3 then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as IND_AGT
    ,case when pp.STAKE_HOLDER_ID = 46 then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as BROKER
    ,case when pp.STAKE_HOLDER_ID = 517928030012008 then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as CORPORATE
    ,case when pp.STAKE_HOLDER_ID = 544821913052008 then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as BANKASSURANCE
    ,case when pp.STAKE_HOLDER_ID = 544472422042008 then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as DIRECT
    ,case when pp.STAKE_HOLDER_ID = 544885218052008 then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as REFERRAL
    ,case when org.BUSINESS_TYPE like 'Block/Tied Business%' then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as TIED
    ,case when org.BUSINESS_TYPE like 'Public Sector Business%' then (atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT ) else 0 end as PUBLIC_PREM
    from
    accounting_transaction at
    ,accounting_trn_detail atd
    ,account aa
    ,account bb
    ,POLICY_PARTY pp
    ,time t
    , (select * from organization_policy_holder where effective_end_date is null) org
    where
    at.ATN_ACCOUNTING_TRANSACTION_ID = atd.ATN_ACCOUNTING_TRANSACTION_ID
    and atd.ACC_ACCOUNT_ID = aa.ACC_ACCOUNT_ID
    and aa.ACC_ACC_ACCOUNT_ID = bb.ACC_ACCOUNT_ID
    and bb.ACC_ACCOUNT_TYPE = '1101'
    and at.POLICY_ID = pp.POLICY_ID
    and at.policy_id is not null
    and pp.party_id=org.org_policy_holder_id(+)
    --and bb.ACC_GL_CODE like '%.130700%'
    --and t.MONTH_NAME= 'AUGUST'
    and trunc(at.ATN_TRANSACTION_DATE) between '1-APR-2008' and '31-AUG-2008'
    and t.CAL_DATE = trunc(at.ATN_TRANSACTION_DATE)
    and pp.policy_party_id in
    ( select max(pp1.policy_party_id) from policy_party pp1
    where pp.POLICY_ID = pp1.POLICY_ID and pp.STAKE_HOLDER_ID = pp1.STAKE_HOLDER_ID
    group by
    pp1.policy_id
    ,pp1.stake_holder_id
    )temp
    group by temp.REGION
    ,temp.OFFICE
    ,temp.DEPT_NAME
    ,temp.DEPARTMENT_CODE
    ,temp.FINANCIAL_YEAR
    ,temp.policy_id
    ,temp.MONTH)temp1
    group by temp1.REGION
    ,temp1.OFFICE
    ,temp1.DEPT_NAME
    ,temp1.DEPARTMENT_CODE
    ,temp1.FINANCIAL_YEAR
    ,temp1.MONTH
    )gdpi2;

    You have to create first your function in OWB :
    Database / Oracle / Your module / Transformation / Functions
    Then in a mapping, use an expression operator :
    * drag and drop the column that you want for our function in the ingroup
    * double click on the expression operator : add an output variable, closed the operator windows
    * click on your outpuy variable and then click in the expression field of the attributes properties (on the left)
    * enter your expresson :
    OTHER_SEC_PREM_FOR(to_char(MONTH),to_char(FINANCIAL_YEAR),DEPARTMENT_CODE,OFFICE)* connect your output attributes to your target table
    Success
    Nico

  • OWB mapping name function?

    Hi,
    I am currently using a pre-mapping and post-mapping operators to kick off stored procedures to insert/update a record in my 'execution status' table. The inserted record in 'execution status' table has details like mapping name, process flow name, target table name etc.
    I am presently hardcoding the parameters - mapping name, process flow name and targettable name in a constant operator to pass these as input parameters to the stored procedures used in pre & post mapping.
    My query is - is there anyway I can avoid hard coding the values? that is , in owb do we have a function which tells us the name of the mapping, target table and process flow which is executing a mapping ? If so I can use the function to pass the mapping name, process flow name and target name to feed my stored procs that way I do not have to change my mapping name, table name in each different mapping.
    Thanks & Regards

    Hi,
    If you wish to get mapping names in the current mapping (OWB 10g), then you can use dynamic parameter get_runtime_audit_id and owb system views owbrt_sys.ALL_RT_AUDIT_MAP_RUNS, wbrt_sys.ALL_RT_AUDIT_STEP_RUNS
    (for example select ... from owbrt_sys.ALL_RT_AUDIT_STEP_RUNS WHERE MAP_RUN_ID = get_runtime_audit_id) or use dynamic parameter get_model_name
    read this: http://blogs.oracle.com/warehousebuilder/newsItems/viewFullItem$184
    If you wish to get mapping names in the process flow then read this thread:
    How to know which map is failed in a process flow if we have more than 2
    Regards
    Message was edited by:
    user468943

  • How to deploy and run of a mapping created in owb in developer suite

    Hello, could you please help me to check where is wrong?
    I use WAREHOUSE BUILDER of ORACLE 9I DEVELOPER SUITE and I do it as below:
    1, create a OWB REPOSITORY named "OWB" with WAREHOUSE REPOSITORY Assistant in the SUITE ;
    2, create a OWB Runtime REPOSITORY named "OWB1" with WAREHOUSE Runtime Assistant in the SUITE;
    (i wonder why not to ask me to create a connected user and target schema like in OWB product alone?)
    3, open OWB CLIENT and create a new project named TESTPROJECT;
    4, create a source module and a target module.
    5, create a simple mapping, which is the field link between two tables which
    have the same structure(i swear that any vertified error will not occur).
    6, select this mapping and choose Generate in the menu of "module". Then select
    "Generate Script" in the window of Generation mode, Then select Deploy in
    the window of RESULT Generation Window after altering the tab of Mapping, and fill in the user information
    which is the same as OWB Runtime Assistant. After select Creation button in the
    window of data-base deploy, it shows the error that "table or view do not
    exist".
    I don't know where is wrong or this error means? And how to solve it?
    Is there anybody help me?
    and what the diffence on earth between the OWB in the DEVELOPER SUITE and the one as a single product?
    Thanks a lot in advance!

    could you please help me to check where is wrong?

  • How to create and execute a function whose return value is  a table

    hi folks ,
    i would like know how to create and execute a function whose return value is a table ,
    am new to pl/sql ,
    my statement for the function is
    SELECT ct.credential_code, c.expiration_date
    FROM certifications c, credential_types ct
    WHERE ct.crdnt_id = c.crdnt_id
    AND c.person_id = person_id;
    i would like to have the result of the above query as return value for the function.
    Thanks in advance ,
    Ashok.c

    hi Ps ,
    Can you please do small sample ,
    that would help me in clear understanding
    thanks in advance
    ashok.c

  • How to Execute a OWB Mapping or a Process from SQLPLUS editor?

    I need to know how can we execute a OWB mapping from SQLPLUS editor or from a Stored Procedure.

    Hi,
    You can use the MDL export/import utility for this, but as you are importing into the same repository you will end up with importing into the same project again.
    So for this you can follow the workaround as:
    ->Take export of the required mapping from the project OWB_B
    -> Rename the Project OWB_B to some thing like OWB_B_1(or any other name), note that you have to rename both logical and physical name of the project
    -> Rename the project OWB_A to OWB_B and if you import the MDL all the objects will be imported to OWB_B then you can rename back the project to OWB_A
    -> Finally rename the project OWB_B_1 to OWB_B (to its original name).
    Regards,
    Pnreddy

  • Execute a function module from sapportal without to create the users in R/3

    I have a pdk application in sapportal. This pdk application will be execute for any sapportal users which don't have R/3 users. The problem is the follow.. in this pdk application there is a R/3 function module that must be execute, ¿how can i execute this function module without to create the users in R/3?

    Hi Michael,
    Create a JSP dyn page application. Hope you have the table name and in R/3 there will be Function modules already available which we also can reffer.
    Then from this JSP dyn page application, call this particular function table.
    wE DON'T  have to create a user for this.
    Regards
    Arun Jacob
    P.S please award points for helpful suggestions.

  • Regarding default select clauses executing during OWB Mapping execution -

    All-
    While observing the statements executing during an OWB(11gR2) Mapping execution,by monitoring the session using SQL Developer
    Iam finding the following statements executing multiple times and possibly consuming more of the mapping execution time:-
    SELECT MAX(EXECUTION_AUDIT_ID) FROM ALL_RT_AUDIT_MAP_RUNS WHERE MAP_NAME = :B1
    SELECT SYS_CONTEXT('owb_workspace' , 'workspaceID' ) FROM DUAL
    SELECT nvl2(translate(20040101, 'A1234567890','A'), 'F', 'T') FROM DUAL
    SELECT USER FROM SYS.DUAL
    These statements have no relation to be business logic being implemented.And seem to be generated by OWB default settings.
    Can anyone please let me know how to reduce the frequencey of the above mentioned statements or if possible remove them from the OWB mapping execution.
    So that the mapping would run more faster

    Hi,
    these statement are required to set the runtime audit data. Usually, they do not really impact the performance of a mapping so there is not need to bother about them.
    What causes performance problems is usually the business logic part of the mappings.
    You may purge old runtime metadata manually. Look at the script
    %ORACLE_HOME%\owb\rtp\jrtaudit\owbsys\purge_audit_tables.sqlDocumentation is included.
    Regards,
    Carsten.

  • Row movement Disabled at DB- creating problems in OWB mapping

    Hi All,
    We have a OWB mapping 'XXXXX' with Default operating mode set to 'setbased-failover to rowbased' mode.The generation mode is set to 'Row Based'.This is called in a processFlow 'YYY'
    This was running fine until sometime ago.
    Recently at the database row movement on tables was disabled.
    After this the 'YYYY' fails with a 'Warning:ORA-01403: no data found' when it calls 'XXXXX'.
    Any idea on what this means.Is it something to do with the row movement disablin done recently?
    Is the default operating mode and generation mode combination selected by us valid.
    Please provide any inputs /queries by which we can trace the exact problem.
    Many Thanks!!
    BRgds
    Sridha

    I don't think that issue will be with OWB.
    take generated code and run in directly in database and check are you getting the same error.
    Cheers
    Nawneet

  • OWB mapping deployment error

    Hi I got similar kind of error.. created a simple mapping for one small table.. the generated PL/SQL is as bellow. When I try to deploy the mapping I am getting warnings as shown bellow.. Could any body help me ?
    Warnings:
    ORA-06550: line 0, column 0:
    PL/SQL: Compilation unit analysis terminated
    ORA-06550: line 1, column 14:
    PLS-00304: cannot compile body of 'CNTY_MAP_9' without its specification
    ORA-06550: line 1, column 14:
    PLS-00905: object OWBDATAUSER.CNTY_MAP_9 is invalid
    ORA-06550: line 129, column 1:
    PL/SQL: Declaration ignored
    ORA-06550: line 129, column 24:
    PLS-00201: identifier 'WB_RT_MAPAUDIT' must be declared
    PL/SQL Block :
    -- Note: This generated code is for demonstration purposes only and may
    -- not be deployable.
    CREATE OR REPLACE PACKAGE ""CNTY_MAP_9"" AS
    OWB$MAP_OBJECT_ID VARCHAR2(32) := '';
    sql_stmt VARCHAR2(32767);
    get_abort BOOLEAN := FALSE;
    get_abort_procedure BOOLEAN := FALSE;
    get_trigger_success BOOLEAN := TRUE;
    get_errors NUMBER(22) := 0;
    get_status NUMBER(22) := 0;
    get_error_ratio NUMBER(22) := 0;
    get_global_names VARCHAR2(10) := 'FALSE';
    -- Status variable for Batch cursors
    "VAL_CNTY_9_St" BOOLEAN := FALSE;
    -- Function Main
    -- Entry point in package ""CNTY_MAP_9""
    FUNCTION Main RETURN NUMBER;
    END ""CNTY_MAP_9"";
    CREATE OR REPLACE PACKAGE BODY ""CNTY_MAP_9"" AS
    -- Function "VAL_CNTY_9_Bat"
    -- performs batch extraction
    -- Returns TRUE on success
    -- Returns FALSE on failure
    FUNCTION "VAL_CNTY_9_Bat"
    RETURN BOOLEAN IS
    BEGIN
    EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML';
    BEGIN
    INSERT
    INTO
    "VAL_CNTY_9"
    ("STATE",
    "CNTY",
    "ABBR",
    "SHORT_DESC",
    "LONG_DESC")
    (SELECT
    /*+ NO_MERGE */
    "VAL_CNTY"."STATE" "STATE",
    "VAL_CNTY"."CNTY" "CNTY",
    "VAL_CNTY"."ABBR" "ABBR",
    "VAL_CNTY"."SHORT_DESC" "SHORT_DESC",
    "VAL_CNTY"."LONG_DESC" "LONG_DESC"
    FROM
    "ISRSVAL"."VAL_CNTY"@"PROTO_SOURCE_9_LOCATION" "VAL_CNTY"
    COMMIT;
    EXCEPTION WHEN OTHERS THEN
    ROLLBACK;
    COMMIT;
    RETURN FALSE;
    END;
    COMMIT;
    RETURN TRUE;
    END "VAL_CNTY_9_Bat";
    FUNCTION Main RETURN NUMBER IS
    get_batch_status BOOLEAN := TRUE;
    BEGIN
    PROCEDURE EXEC_AUTONOMOUS_SQL(CMD IN VARCHAR2) IS
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    EXECUTE IMMEDIATE (CMD);
    COMMIT;
    END;
    -- Initialize all batch status variables
    "VAL_CNTY_9_St" := FALSE;
    "VAL_CNTY_9_St" := "VAL_CNTY_9_Bat";
    RETURN get_status;
    END Main;
    END ""CNTY_MAP_9"";
    /

    Is the schema that you are deploying to a member of OWB (security in the global explorer)? Are they registered as a target schema? I have a synonym for created in each of my registered target schemas for the owb.WB_RT_MAPAUDIT object.

  • Error while running OWB mapping package from sql prompt

    hi all,
    i have deployed my owb mapping in oracle. Now i want to execute this from the sql prompt. the foolowing error is giving when i try to run.
    SQL> DECLARE
    2 RetVal NUMBER;
    3 P_ENV WB_RT_MAPAUDIT.WB_RT_NAME_VALUES;
    4 BEGIN
    5 RetVal := TEST1.TEST_MAP.MAIN ( P_ENV );
    6 END;
    7 /
    RetVal := TEST1.TEST_MAP.MAIN ( P_ENV );
    ERROR at line 5:
    ORA-06550: line 5, column 19:
    PLS-00302: component 'TEST_MAP' must be declared
    ORA-06550: line 5, column 3:
    PL/SQL: Statement ignored
    pls help me for finding the solution.
    -Regards
    Raj Kumar

    You need to split your data and create (at least 5) worksheet targets.
    For example if you have a ROW_NUMBER column you can use for instance a
    Conditional Split for something like:
    ROW_NUMBER % 5 == 0 for Case 1 (excel 1)
    ROW_NUMBER % 5 == 1 for Case 2 (excel 2)
    ROW_NUMBER % 5 == 2 for Case 3 (excel 3)
    ROW_NUMBER % 5 == 3 for Case 4 (excel 4)
    ROW_NUMBER % 5 == 4 for Case 5 (excel 5)

  • Problem in OWB map for source change capture

    The problem is as follows:-
    Our OWB map between two different databases, captures change in data at source and populates them in target. It is a one to one map. The map is failing to process some rows from source database though it gives no:of errors as 0 in the audit view thus we infer that the map is running successfully.
    In our case, we have a composite key ( Instance_id, Version_number) at source as well as target. One instance_id can has more than one version number. We have observed that the view is picking up all the version_number for a particular instance_id but the map is unable to populate the last version_number to the target table.
    But when this map was executed in another environment and it is successfully populating all the data in the target.
    The brief description of the map is as follows:-
    The map has a view which captures all the changes in data (insert and update) .From this view we filter the rows which were already processed in previous map run (with help of watermark). Then we sort the rows based on DML type and watermark . These rows are then mapped to a target table. The loading type of the map is INSERT/UPDATE.

    Hi Nagesh,
    When we are doing I18N for that Application. Go to Navigator Tab
    Here Select Particular Projects--à src-àPackages-àsap-àvijay
    To internationalize the Web Dynpro application, copy the automatically generated *.xlf files and save them under a new name in the same directory.
    The new name must meet the following convention:
    u2022 .xlf
    For example, if you are creating *.xlf files for German,
    Use the language key de.
    Here Click on OK
    After that we can edit and translate these new *.xlf files in the S2X Editor.
    ApplyTemFirstView.wdview_de.xlf-àClick on Resource Text Tab
    Select Particular Text and Change the language to German-àClick on EDIT Button
    Here Enter German Lang-àClick on OK
    Now Go to Web Dynpro Explorer Tab
    Select Project-àRC Click on Rebuild Project
    Select Project-àRC Click on Reload
    Then Deploye the Application
    How to Check in Explorer. It is converting to German Language or not
    Open Internet Explorer
    Tool-àInternet Options -àClick on Languages Button-àClick on ADD Button
    Select German Language--àClick on OK
    Now We will Check in Portal
    Created Web Dynpro iView in Portal. That iView assign to the particular WorkSet-àAssign to Role
    Select that user Can Change Language
    Regards
    Vijay Kalluri

  • Does ExtendScript have a concept of "main" function/method like when script is included as a library

    I was just wondering whether ExtendScript has any concept like a main method, whereby if the current script is included by another script like a library import it will not execute this main function/method and only execute it when the script is run directly.
    Similar to Java's main() method and Python's __main__.
    If not, is there a workaround to mimic such behavior generically?

    I cannot reproduce this.  Can you create a very simple repro of this issue and post to OneDrive?
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Can not run OWB Mapping automatically by OEM? .  Very urgent. Pls help me

    Hi all,
    Pls help me.
    I am using OWB 10g under Oracle 10g. I want to run OWB Mapping automatically by OEM.
    I installed Oracle Database 10g fully but don't have OEM in this. After that, I installed Oracle Client 10g. In this product, there is OEM 10g. I read some topic as "want to run owb mappings thru job schedule" and also read http://otn.oracle.com/products/warehouse/htdocs/oem_scheduling_viewlet_swf.html
    But my OEM not as same as in this . It don't have job menu and OEM Console Login window and don't have also where I can put username/pwd to login into OMS???
    I don't know this problem.
    Pls help me.

    Hi,
    Here are two possible solutions:
    1) If you have OEM 9i anywhere in your environment you can use this for scheduling the OWB jobs.
    2) If your environment is 10g only you need to install 10g Grid Controll. This product has replaced the OMS / Java console of earlier releases, and contains the same functionality for scheduling jobs.
    Note that if you are using the sql_exec_template to execute your mappings you can schedule and run these from any machine on the network, not just the target server.
    Hope this helps,
    Roald

Maybe you are looking for

  • ITunes account used on work and home computer

    I use the same iTunes account on my home and work computers.  I have home sharing on.  I have always been able to purchase music on either computer and access it on both.  Recently I made quite a few purchases on my work computer but I can not access

  • How to create 2 print buttons on a sql report ?

    hello, i work on apex 4 and database 11GR2, i configure bipublisher for advanced printing. On a sql report i want to have an excel Button and a Pdf button with redirect URL. I don't know how to specify in the URL the format output. I see in the help

  • DMS_RELOCATE_CONTENT: Originals Missing

    Hi All, I need your help. I have moved original documents from 1 KPRO server to another using DMS_RELOCATE_CONTENT. Now this works quite well. Now for some other reason, i have some documents missing and they used to exists in the old KPRO. Is there

  • How to enable "Open in Adobe Premiere Pro" function

    Hi, I'm working with Audition CC 2014 and Premiere Pro 2014. I sent a squence from Premiere to Audition via "Edit in Adobe Audition". But now, when I try to export the track back from Audition to Premiere (Multitrack=>Export to Adobe Preniere Pro..."

  • Image conversion applescript

    I am not proficient in Applescript (yet) and I was wondering if anyone out there has any script that I could apply to a folder action for converting photos to 720x480. I have a user that needs a few hundred photos converted and it would be nice to no