Where should the ODI agent be

Where should the ODI agent be. In Source server or target server
app

Well when we say the Target Location we generally means the Target Database or the Data warehouse location , since data needs to pass through the Target Server (target Database ) ,as i have mentioned before in my reply the target Tables or Database is how generally where the C$ ,i$ and various $ tables and also finally the Insert /Update takes place at the Target. When the data is there in one server ,the time for the agent to move data gets reduced and thus saved time and Efficiency.
although this is not an hard and Fast rule its just an advisable practice. There are some Architecture where the ODI is installed in another Server and the Target Database is located in another Server. Some of them goes for creating the Agent at the Server where ODI is installed and so ODI communicates back and forth to in both the Server for its ELT operation.
Again there are some who creates Agent even in the Source and Target , when there are huge loads needs to be fetched and processed.
coming back to your question when you my machine , are you talking about your personal Desktop or Laptop Machine . ? In that case i guess your Target and Source and again the Agent created will be once Machine itself.
Let me know if you require any more information or clarification .

Similar Messages

  • Architecture Q. : Where should the ODI Repository Database be installed ?

    Hi all,
    Where should the repository ODI database be installed
    => on the same server as the source database one or ?
    => on the same server as the target database one
    Thanks for your answers
    Edited by: Meapri on Feb 26, 2009 6:59 AM

    Hi Shib,
    Maybe I could agree with you if you only use ODI for DW, for instance.
    If you think about data integration, no matter what kind of system, even at transactional system, or datamart extract/load the concept of "source and target" can be any of the RDBMS at company.
    What I'm defending is that in a complex environment, where ODI is the company *"data veins"*, the concept of source and target became complex too and, in my opinion, is not possible to decide where the repository should stay just by the use of those concepts.

  • If an internal ID is changed for the Work Repository how does it affect objects that are already in it?  Will they continue to run or do you need to cycle the ODI agent?

    I was having trouble migrating the Master and Work repositories from my QA to my Prod environment.  I was getting an error message that the internal id's were alike so I changed the internal id in my Prod Master repository.  Then I tried to migrate the Work repository and was getting a similar error.  I did a search on the internet for the error message and it recommended that I renumber the Work repository so I did.    My concern now is how these changes affect the objects that are already in the repositories?  Will those objects continue to run?  Also do these changes take affect immediately or do you need to cycle the ODI agent?

    Well I cannot completely assure you but so far I have not faced any issues after a renumber. It will affect the exist object only when you have imported the object in synonym_update mode. I believe you have the daily backup of your production repository.
    Bhabani
    http://dwteam.in

  • Where should the third party JAR files be placed ?

    Hi,
    We have a requirement to perform encryption / decryption of supplier bids. In this case we require to use third party provider JAR files with OA framework code. Where should the JAR files generally be placed in such a scenario ?
    Thanks and Regards,
    Sandhya

    Checkout this post.
    How to inclue a third party .jar file in OA fwk classpath Class not found

  • Where Should the JavaScript Go if I'm Calling from the Page HTML Header?

    In the Application Express User's Guide under "Calling the JavaScript File from the HTML Header Attribute" point 4 says:In HTML Header, call the JavaScript file using the following syntax:
    <script src="/my_images/custom.js" type="text/javascript"></script>However, it doesn't say where my_images is located.
    Where should the .js file be stored?
    Thanks,
    Gregory

    naviagte to shared component in the application edit screen and upload your .js file to static files.
    now you can ref. this file as
    In HTML Header, call the JavaScript file using the following syntax:
    <script src="#WORKSPACE_IMAGES#custom.js" type="text/javascript"></script>
    {?code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to start the ODI agent ?

    Hi..
    I just installed the Oracle Data Integrator to my computer. But, how could i start the ODI agent ?..
    Could somebody guide me ?
    Thank you,
    Baharin

    Have you read the user documentation > http://www.oracle.com/technology/products/oracle-data-integrator/10.1.3/htdocs/documentation/oracledi_users.pdf
    sections
    Managing Agents....................................................................................................................... 136
    Launching a Listener Agent ................................................................................................... 136
    Launching a Scheduler Agent................................................................................................ 138
    Or you could try :- Step to setup windows agent
    Ok? Not that you ever mark your posts (Total Questions: 42 (42 unresolved))
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • My Macintosh HD volumn icon is on my desktop, not the HD alias icon. Where should the volumn icon be put.

    Tonight I saw that I had 2 HD icons on my desktop.  When I went to info, I found out that one is the actual volumn icon and the other is an alias.  Where should my Macintosh HD volumn icon be stored on my computer.  I worry that if it is on the desktop, it might be deleted or put in the trash, if this is even possible.

    If you've your Finder preferences set to show hard drives, etc., on the Desktop then that's where you'll see them... nohing to worry about.
    If you've an alias for the drive, you can simply Trash it. No need to have it on the Desktop as well.
    Clinton

  • Where is the user agent string located for Firefox 4? In the previous versions, it was in the Help-About menu.

    Just curious on the location of the user agent string for Firefox 4. I don't want to edit or change it, I just want to view it. In previous versions of Firefox, it was in the Help-About menu. It doesn't appear to be located in this spot for Firefox 4.
    Any assistance would be greatly appreciated.
    Thanks!

    '''about:support''' = Help > Troubleshooting Information

  • Where should the certificate be installed??

    Hi,
    It is possible to install certificates in the Internet Explorer, there is a certificate store for the JRE and there is a certificate store for java web start.
    If I have a java web start application which is started via Internet explorer where does the sertificate need to be installed? in IE, in the JRE or in Java Web Start?
    Thank you in advance for an explanatio as I don't find this question addressed in the documentation.
    Regards,
    David

    Did you check this , this is very helpful
    http://technet.microsoft.com/library/hh534377(v=exchg.141).aspx
    Where Technology Meets Talent

  • Where should the interface be? (extending the Remote interface)?

    Hello,
    I've created a simple rmi server on one machine, sonsisting of two files:
    OkServer.java:
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface OkServer extends Remote {
    public String getOk() throws RemoteException;
    }OkServerImpl.java:
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface OkServer extends Remote {
    public String getOk() throws RemoteException;
    }and on another machine, I've created a client:
    import java.rmi.RMISecurityManager;
    import java.rmi.Naming;
    public class OkClient {
    public static void main (String args[]) throws Exception {
         if (args.length != 1)
         throw new RuntimeException("Syntax: OkClient <hostname>");
         System.setSecurityManager(new RMISecurityManager());
         OkServer OkSvr = (OkServer)Naming.lookup("rmi://" +
                                  args[0] + "/OkServer");
         String when = OkSvr.getOk();
         System.out.println(when);
    }Now the problem is, when I try to compile the client (only consisting the file above),
    it says of course:
    OkClient.java:36: cannot find symbol
    symbol : class OkServer
    }This is normal, right?
    Then, I should copy the interface (that is also at the server) to the client machine?
    So the interface file HAS TO BE on both the server and the client????

    If you want to install OVM with the production option then you will basically need three distinct hosts:
    a) the database host, where you install SE/EE on (XE is not for production use and not supported for production use!)
    b) install OVM Manager on any computer running OEL 5 (or later)
    c) install OVM Server on a bare metal host who's hardware is supported
    As far as the SE/EE license goes: Oracle always allows anyone to download and install their software to try it out. If you are putting your setup into production, that is not covered and demands an support contract with Oracle. And from using Oracle for many years, there will come the day when you will need it… ;)
    So long story short: grab the Oracle SE/EE installation and be familiar with it - Oracle DB that is, otherwise you'll be sitting there pulling your hair out and yell at your computer.
    Or, try the not yet released 3.2.x version of OVMM with runs against MySQL - most likely the easy way to go.

  • Where should the Debug Database.txt file go for AE CS6 on windows 7?

    Hi,
    I'm trying to use this work around to get cuda working when using aerender from the command line. It says to edit the Debug Database.txt, but I have searched my whole computer and it doesn't exist. So I guess I can create one in the right place, but I'm currently on windows and have no idea where to put it.
    I know it should go in the preferences folder but where is that in windows 7?
    thanks

    I strongly recommend against trying to do this. It is untested and unsupported. The article that you linked to is by someone who has tried this on a Mac, so there aren't even examples out there of someone doing this on Windows.
    No Adobe employee is going to help you to use this untested and unsupported hack using a debug database flag that was added for internal development purposes.

  • Where should the support classes of servlets, JSPs and EJBs be placed

              Hi
              Could you please tell me where the support classes (simple
              java classes) used by servlets, JSPs and EJBs should be placed.
              I find that my application does not work if I place all the
              support classes of a servlet under $MYSERVER/clientclasses. I need to place some in $MYSERVER/clientclasses and some in
              $MYSERVER/servletclasses. But I figured this out my trial and error and I could not find any logical explanation why some of them should go into $MYSERVER/clientclasses and others into
              $MYSERVER/servletclasses.
              Thanks
              Regards
              Pratima
              

    you can put 'em in weblogic classpath
              Kumar
              Pratima Nambiar wrote:
              > Hi
              > Could you please tell me where the support classes (simple
              > java classes) used by servlets, JSPs and EJBs should be placed.
              > I find that my application does not work if I place all the
              > support classes of a servlet under $MYSERVER/clientclasses. I need to place some in $MYSERVER/clientclasses and some in
              > $MYSERVER/servletclasses. But I figured this out my trial and error and I could not find any logical explanation why some of them should go into $MYSERVER/clientclasses and others into
              > $MYSERVER/servletclasses.
              >
              > Thanks
              > Regards
              > Pratima
              

  • Where should the print server be?

    Hello all!
    Right now we have a cluster with two nodes for SAP (Node1: SAP & SAP PRD / Node2: Database) and all printers are installed on a different standard file server. Last week we realized that the file server is not the right place for SAP printer. If someone restarts the file server he unwillingly stops all SAP printing jobs. So we have two options now:
    a) reconfigure the file server as a cluster with two nodes to get high-availability
    b) put the printers on one of the SAP cluster nodes
    Our system partner said we shouldn´t install the printers on the SAP system, it could slow it down too much. But I don´t think they thought about the two nodes. Would there be enough performance on one of the nodes. Maybe the printers could run on the database node or on the apllication node. How do you use printers and their queues? Or is
    c) a dedicated print-server (as a two-node cluster)
    a better idea? Thanks for any ideas

    Hi Peter,
    You have not given much info so I will have to make some assumptions
    For printing, SAP firsts stores the data in the database via the spool work process then sends it off depending on the configuration of the printer access method. For local printing the data is then passed on to the spooler of your operating system where it is queued on the file system.
    If you attach a printer directly to your database or dialog(application) instance(in SAP we call them instances not nodes then that means the management of your prints would also reside on the same system which is probably not a good idea especially if you start having problems with the printer. Also, you would be adding additional IO(through transferring data to file system spooler) and storage to the system which you probably could do without. Additional processing would also be required for managing the queued data. So yes, your supplier is correct in this case especially if your print jobs are large ones at times.
    Personally, I would go for your final option c) but a) should also do fine.
    Regards,
    Nelis

  • Where should the ISBN number go in IBA?

    I'm getting ready to publish (after a year of writing) and need to aks where I should put the ISBN number - after I get it. I haven't yet got it but not sure if I should do that first or just do the ISBN later. Any suggestions - thanks :-)

    > you feel like including it in an information section, etc.
    Your decision.

  • HT2435 My Font Book, is super slow, where should the fonts be to make it faster.

    My Font Book, is super slow, it used to be ok but after I had to reset my computer is too slow, like really slow! I dont know if having users in my computer and do the fact that makes different folder locations for fonts might be the problem. And if so, were should they go to help the program be faster?

    My Font Book, is super slow, it used to be ok but after I had to reset my computer is too slow, like really slow! I dont know if having users in my computer and do the fact that makes different folder locations for fonts might be the problem. And if so, were should they go to help the program be faster?

Maybe you are looking for

  • Is it better to have more than one Catalog

    I have close to 800 GB worth of images, and I just got LR, so not sure what would be best. I will be importing my images as (Reference), since I have all my images on Ext. HD. The questions that I have is should I import my images on two separate Cat

  • Group messaging in iOS 7

    Ok so ever since I got my new iphone 5s my iMessage/text messaging has been really weird. My group messaging is not working right. Instead of getting a group message, I get messages individually from each group member. So you can't even tell its a gr

  • My MacBook Just shuts off...

    My MacBook will just shut off for no reason when i am doing work and such. I did a virus scan and all and found nothing. What is going on and why would it do this? Is there anyway to fix it? Please Help... August

  • Alert when Tasks Overdue

    Hi All, I have a problem when create the new tasks in the SAP Portal for deadline yesterday, I need configure for each hour , and day after for this task send the mail, but these configure don't send the mail. How to configure for before and after se

  • HOW TO CHANGE THE FINANCIAL TRANSACTION IN FM AFTER POSTING HAS BEEN MADE.

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. > HI IN FM I HAS BEEN POSTED ONE TRANSACTION FOR  A PARTICULAR G/L ACCOUNT. AFTER