Using DAC for running Non BIApps infa jobs n running 2 EP in parallel

Hi,
We have already setup BI Apps prod environment using DAC, Informatica and OBIEE 11g for one of our customer.
Now, we want to check possibility of using DAC for running Non BIApps related informatica jobs.
(As we have only weekly run of DAC execution plan on weekends and Informatica and DAC are idle most of the time during weekdays)
Customer wants a separate new small datamart to be setup which will cater reporting requirements for different department and has no relation or any link with existing BI Apps datawarehouse.
Just wanted to check if it will violate licensing terms (if we use DAC for Non BI Apps workflows and run another EP)?
Also, is DAC Build 10.1.3.4.1 capable of running two execution plans in parallel?
We heard long back that running two EP parallel feature will be lunched in DAC 11g version. Any pointers or new in this space?
Thanks in Advance,

From what I recall, you CANNOT load a "separate" DB instance that is NOT OBIA. If you create a small custom datamart INSIDE the exitsing OBIA schema, then it is acceptable. However, if you are using DAC (regardless of if its one plan or two plans) to load a NON-OBIA target, this may violate the licensing agreement. You may need a separate standalone license for Informatica and use Informatica's scheduler tool. If you want to use DAC, make sure your target is inside the OBIA DW.
Pls mark correct...

Similar Messages

  • Using DAC for custom Environment

    Hi All,
    I would like to know that, can we use DAC to schedule , run the loads for custom ETL environment(not BI APPS), does DACt supports. Below is is my set up
    -Oracle 11g DB(source and target )
    -Informatica 9 installed
    -Mappings, workflows are developed
    -DAC 11g is installed
    Now I want to set up DAC so that I can run loads from DAC instead of Informatica. Please any let me know high level steps. Is it different from BI APPS environmen if so kindly let me know configuration
    Thanks in advance

    Short answer is NO...as per licensing agreements, you can only use DAC and OBIA to load a OBIA DW target.
    pls mark correct

  • Using DAC for implementation of two change capture views on same base table

    Hello
    We have a need to create 2 views (V_INS_CLAIM & V1_INS_CLAIM) on a single table (S_INS_CLAIM) using DAC & Image tables.
    The V_INS_CLAIM will be used to load ODS on a hourly basis and
    The V1_INS_CLAIM will be used to load DataMart on a daily basis.
    For this purpose, we propose using the following approach:
    1) Create 2 separate containers - one for ODS and one for Datamart.
    2) Use a separate image table suffix (for the same table) on each container e.g.
    - Use image suffix 51 on S_INS_CLAIM for the ODS container (will result in image tables having suffix 51)
    - Use image suffix 61 on S_INS_CLAIM for the Datamart container (will result in image tables having suffix 61)
    3) In the ODS container, the change capture process would create a view V_INS_CLAIM using
    the base table S_INS_CLAIM and the I/R/D tables using image suffix 51
    For this folder the 'Drop and Create Change Capture Views Always' flag will be set to True
    All views for this container will be created with the prefix "V_"
    4) For the Datamart container, we propose to set the flag 'Drop and Create Change Capture Views Always' to False.
    This would ensure that DAC never drops/creates the view (assuming that the view was already created by the ODS container)
    For creating the change capture views, we propose to create the views using sql procedures.
    All views for this container will be created with the prefix "V1_"
    The above procedure would ensure that we have distinct views created for each target (ODS & Datamart), which are refreshed at different intervals.
    Alternatively, instead of creating 2 views with different names in the SIEBEL schema,
    we could create 2 schemas - one for ODS and the other for Datamart and create the change capture
    views separately in each schema (using separate I/R/D image tables - as mentioned above).
    Please let me know which of the above 2 approaches would work and supported by DAC and which would be the better option ?
    Thanks

    1.) Wrong forum. Go here: Business Intelligence Applications
    2.) Soft delete or hard delete? Sound to me like you want to get rid of teh records. I.e. deleting history.
    3.) Normal upsert mapping swon't do, you'll need delete mappings (depending on #2)

  • Useful tool for running essbase as a service

    Essbase as a service makes it difficult to control single applications. If you use 'Process Explorer' by Sysinternals.com (a kind of task manager) you are able to identify your application in the list of running essbase processes. You need to add the column 'Command Line' and get full information including the App Name as a tooltip when pointing on this column.

    This is planned for 1.2

  • How can i use dlls for running rtc3?

    how can i use the dll libraries to use for the rtc3 software?

    amolchoudhary wrote:
    can anyone please help me???
    How? You provide almost no useful information.
    What is rtc3?
    Why do you think you have to use DLLs?
    What did you try so far that hasn't worked?
    What is it you want to accomplish?
    You see what you ask here is just about the same as if someone would ask you to tell them what screw he needs to fix his car.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Invalid SQL Statement when using execute for running Procedures

    Hi ,
    I create a simple stored procedure , it was created successfully , when i tried to run the StoredProcedure , it is giving me
    exec myStoredProcedure() ;
    please tell me why this is coming .

    hi
    i am using oracle 10g with asp.net
    i have created a procedure and it executed successfully, when i executed with exce <storedproc>
    but when i call up this procedure with .net it is giving an error like this..
    ERROR [42000] [Oracle][ODBC][Ora]ORA-00900: invalid SQL statement
    any one pls suggest me how to resolve this issue
    here is my stored procedure
    create or replace
    procedure sp_AddTrial (parStudyName VARCHAR2,     parContactName VARCHAR2,     parContactNumber varchar2,     parDescription varchar2,     parFactorName in varchar2, parTreatmentName in varchar2) is
    Pos int;
    Pos1 int;
    parName varchar2(50);
    parTName varchar(30);
    parFactorNames varchar2(500);
    parTreatments varchar2(500);
    parWeight int;
    parValue varchar2(20);
    parValue1 varchar2(20);
    parValue2 varchar2(20);
    parValue3 varchar2(20);
    begin
    parFactorNames :=parFactorName;
    parTreatments :=partreatmentname;
         insert into mivrs_studyinfo(
    study_id,
    study_name,
    contact_name,
         phone_number,
    description,
    created_date,
    modified_date
    values
    mivrs_studyinfo_seq.NEXTVAL,
    parStudyName,
    parContactName,
    parContactNumber,
    parDescription,
    sysdate,
    sysdate
    if parTreatments is not null then
    parTreatments := Concat(TRIM(parTreatments),',');
    Pos1 := INSTR(parTreatments,',');
    insert into temp values(1,'test');
    IF length(parTreatments)!= 0 then
              WHILE Pos1 > 0
    loop
    insert into temp values(2,Pos1);
                   parTName := TRIM(SUBSTR(parTreatments,0, Pos1 - 1));
    parTreatments := SUBSTR(parTreatments,Pos1 + 1);
                   Pos1 := INSTR(parTreatments,',', 1);
    parWeight := TRIM(SUBSTR(parTreatments,0, Pos1 - 1));
    IF length(parTName) != 0 then
    insert into mivrs_treatments (treatment_id, treatment_name, weight, study_id, created_date, modified_date) values (mivrs_treatments_seq.NEXTVAL, parTName, parWeight, mivrs_studyinfo_seq.CURRVAL,sysdate, sysdate);
    end if;
                   parTreatments := SUBSTR(parTreatments, Pos1+1);
                   Pos1 := INSTR(parTreatments,',');
              END loop;
         END IF;
    end if;
    if parFactorNames is not null then
    parFactorNames := Concat(TRIM(parFactorNames),',');
    Pos := INSTR(parFactorNames,',');
    IF length(parFactorNames)!= 0 then
              WHILE Pos > 0
    loop
                   parName := TRIM(SUBSTR(parFactorNames,0, Pos - 1));
    parFactorNames := SUBSTR(parFactorNames,Pos + 1);
                   Pos := INSTR(parFactorNames,',', 1);
    parValue := TRIM(SUBSTR(parFactorNames,0, Pos - 1));
    parFactorNames := SUBSTR(parFactorNames,Pos + 1);
                   Pos := INSTR(parFactorNames,',', 1);
    parValue1 := TRIM(SUBSTR(parFactorNames,0, Pos - 1));
    parFactorNames := SUBSTR(parFactorNames,Pos + 1);
                   Pos := INSTR(parFactorNames,',', 1);
    parValue2 := TRIM(SUBSTR(parFactorNames,0, Pos - 1));
    parFactorNames := SUBSTR(parFactorNames,Pos + 1);
                   Pos := INSTR(parFactorNames,',', 1);
    parValue3 := TRIM(SUBSTR(parFactorNames,0, Pos - 1));
    IF length(parName) != 0 then
    insert into mivrs_stratificationfactors (factor_id, factor_name, study_id, value1,value2,value3,value4) values (mivrs_stratfactors_seq.NEXTVAL, parName, mivrs_studyinfo_seq.CURRVAL,parValue,parValue1,parValue2,parValue3);
    end if;
                   parFactorNames := SUBSTR(parFactorNames, Pos+1);
                   Pos := INSTR(parFactorNames,',');
              END loop;
         END IF;
    end if;
    end;
    thank u
    Sowjanya

  • Use FlashPlayer for a non administrator system on WinXP

    Hi,
    I use winxp, and when i create a non admin session, i can't
    see the Flash animation on IE. It's like flash isn't installed.
    However, on the admin session, i can see the Flash animation
    without problem. Someone can help me?
    thanks

    Hi Miguel,
    Have a look at the constraints mentioned in RFC adapter:
    Receiver adapters only support external RFC servers that register themselves with an SAP gateway. You cannot start external RFC servers. In addition, secure communication using SNC (Secure Network Communication) between receiver adapters and an external RFC server is not supported.
    http://help.sap.com/saphelp_nw04/helpdata/en/33/c6e63b60c25767e10000000a11402f/content.htm
    Regards
    Vijaya
    Message was edited by: vijaya kumari

  • Could I download firefox 20 and 21 and use one for personal and one for professional purposes.

    I am currently using Firefox for my work at home job but I am also taking online classes and my school recommends Firefox as their supported browser. My Job recommends using a separate browsers for personal needs. My question is could I download lets say Firefox 22 and use that for professional purpose and download Firefox 21 and use that for completing my school work.

    You can only open the Profile Manager if all Firefox instances are closed.
    You can install multiple Firefox versions via a custom install in different installation folders and only use the older Firefox version when you really need it.<br />
    Do a custom install and install each version in its own program folder to use multiple Firefox versions.
    * https://support.mozilla.com/kb/Custom+installation+of+Firefox+on+Windows
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/
    See:
    *http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    *http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    *http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    You can use the -no-remote command line switch to open another Firefox instance with its own profile and run multiple Firefox instances simultaneously.
    *http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

  • Has anyone used Motion for 'still graphics' (300dpi)?

    I used Motion a lot several years ago on a film. Great app. I'm producing a series of Ebooks right now, with many graphics. I'm using Pages, Photoshop, EasyDraw, for the graphics ... but remember how marvelous Motion was.
    I'm wondering if it is possible to use Motion just for doing still graphics? And how one might set the resolution to reflect this (something like 300 dpi), ... or can one set any size (a very large 72dpi (given it's designed for motion and video) that can then be translated to 300 dpi after the fact.
    If anyone has ever used Motion for simple non-motion graphics, I'm all ears,
    Ben

    First of all, create a new document in Photoshop: enter your output format (US Letter, A4, whatever) with 300 dpi settings. Then change your units from to pixels and that is the size that your motion project should have.
    Remember though, that Motion outputs only in RGB that has a much wider gamut than CMYK, which is the colorspace of print. So you might still have to color proof your image in Photoshop.
    Also, depending on your graphics card, Motion has a limit of image sizes it can work on: 2K, 4K or 8K in the current models. For large print formats that could be not enough.
    I would never use Motion for print jobs. However I can imagine that I could export (with transparency) some effects like stills from animated particles, 3D replicators and import them into my photoshop composition. So Motion could be used more like an extra tool.
    Michal

  • Headphones for running/jogging

    Any suggestions for headphones that can be used for running/jogging.
    Here's some more detail:
    I will use them 50% for running/jogging, 50% for general listening, sometimes on airplanes.
    I was looking at the Etymotic ER-6i ($150 retail; $90 online), so that is my target price/quality range.
    I am just concerned with ruining higher quality earphones by using them for running, BUT I want a decent-sounding pair for running (i.e. I don't want to just use a second crappy pair).
    Any suggestions welcome. Thanks!

    Hello maxwell:
    Thank you for posting this type of question. Believe it or not, I hear questions like this quite often from people. Many people report that the standard issue Apple headphones hurt their ears. Also, these headphones don't tend to stay in your ear as well.
    There are many headphones out there that sell for a lot of money, however, it sounds like for what you want them for, you need both a durable, yet portable pair of heaphones. Koss has a set of headphones that will blow your mind. They are basically earplugs with speakers attached to them. I used them in a car full of singing people, and with my iPod at about 1/2 volume, I could barely hear them. They do a great job of blocking out the world around you. Not only to they decrease the noise around you, but the quality of the sound they produce is amazing. I LOVE lifehouse and listen to them all the time. When I bought these headphones I put on some lifehouse, and I realized that ALL the headphones I had ever listened to had cut out some of the sounds in the songs. They were small things, but really high sounds, and really low sounds both come through on these headphones - something I really like. They are also the ONLY earbuds I have ever heard that have any good bass. Of course they aren't like having a subwoofer, but they are the next best thing. The cost, well, don't let it scare you into thinking they aren't good.
    You can check them out here:
    http://www.koss.com/koss/kossweb.nsf/p?openform&pc^eb^PLUG
    Message was edited by: Brenton. It was edited to ensure accurate descriptions and up-to-date costs.

  • Running same scenario in parallel for different values

    Hi all, I have a requirement that,on a high level, calls for running a scenario "in parallel" for a set of values that are passed into it. To break it down, say you have a scenario that does some processing (could be anything), and in order to do this processing, it needs a list of values (say 1, 2 and 3). What we need is that the scenario runs for these three values at the same time, the reason being it may run 10 mins for 1, 20 mins for 2, and 10 mins for 3 and we don't want to wait for it to finish for 1 and move onto 2 and finish 2 and then move on to 3. In order to test this can be done, ideally we'd like to see in the operator that when the scenario is kicked off, it is running for all three values simultaneously. Please gurus, if there is any way this can be achieved, do let me know.
    Thanks so much!

    Hi Bhabani, Thanks for your response. I think you've understood the requirement perfectly. It will generate different sessions for each loop. What I'm trying to test here is whether each of those sessions will be launched at the same time. Using the asynchronous mode should, in theory, ensure that they are but how can we verify this? Is there anything we can include in the package (maybe some Odi Tool) that will visibly show that all the sessions have been kicked off?
    Appreciate your help!

  • I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Is it necessary to add? If so, how do I add H Tags to iweb.

    I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Are they necessary to add?  Why would one add these tags and how do I add H Tags to iweb? And are there examples to look at? I am slowly learning about simple web design and assumed that iweb was stand alone without having to write code. Is this one of the reasons iweb is no longer supported? Thanks for looking at this!

    A simple text page like this:
    Heading
        sub heading
              text paragraph ....
    Is traditionally represented by html tags like:
    <h1>Heading</h1>
         <h2>sub heading</h2>
              <p>text paragraph ... </p>
    I would guess that the use of h1-h6 tags helps search engines to understand the structure of a page as the tags imply a certain structure.
    This can be compared to more generic tags like <div> that could represent any kind of content - and may be what iWeb uses (you'll have to check yourself).
    I would generally recommend that you use some kind of up to date blog/site building tool, perhaps Wordpress or Squarespace (I haven't used either one myself) that support current web technologies - this should reduce your SEO issues and make it easier to properly support mobile/tablet users.

  • Can I use data guard to create a RAC standby database for a non RAC primary

    Hi,
    we need to RAC our production database but the normal methods will mean a long outage. It is possible to create a standby as a single node RAC database and when ready do a graceful failover to the standby database and open it for business. The next step would be to create another RAC node from this on the original server.
    servers are already cluster aware, using ASM etc
    Oracle 10.2

    Yes, you will be able to setup RAC stnadby for a non-RAC Primary. For primary it just needs a available destination for redo shipping it doesn't matter whether it's RAC enabled or not. And ofcourse you are using 10.2 anyway only one node will be running MRP and that is too in standby mount mode.
    However since you have are using You may follow below sequence.
    1. Setup a new standby as RAC enabled.
    2. Perform a switchover.
    3. Shutdown the Old primary (which is standby now).
    4. Install CRS and RDBMS on the old primary and it's new node.
    5. Modify the cluster_database=TRUE and cluster_database_instances=<required number of instances>.
        With above modification mount the standby database in standby mode and start MRP.
    6. Introduce the database and instances to the OCR using SRVCTL add command.
    7. Once you your database is synchronized with Primary do a switchover.
    9. Now you can repeat step 3 to 6 on the other site too.   <- if you need your secondary site to be RAC enabled too
    10. Finally both the sites should be RAC enabled.
    Hope this is helpful!!!
    Thanks,
    Asif Haliyal

  • What are the tables used for ACR & Master data daemon job?

    Hi Experts,
    What are the tables used in the backend for ACR & Master data daemon jobs. I would like to see the details of CHANGERUNMONI or ACR/Hierarchy Change run.
    Kr,
    Praveen

    Hi Praveen,
    Have you tried these tables BALHDR, BALDAT and BALOBJT for checking master date daemon delta status. It may not give you complete details. but definitely helps.. If you find any more details please do let me know..
    Thanks,
    Bharath

  • How to run a batch file using DAC

    Gurus,
    Please suggest if there is a way to run .bat files using DAC ? I suppose it can be done by configuring Execution Type as External Program. Please suggest how can this be achieved.
    Thanks

    I performed the same steps given in the link and ran the ex plan, but the task shows running and never completes. In my case i have created bat file for a different purpose (not for purging cache).
    Is the path shown in Step 5 the default path or it can be any path ? Please suggest.
    Thanks

Maybe you are looking for