Define a dedicated connection in mapbuilder  to conn. on a database in MTS

Hello,
I'm trying to find a way to configure mapbuilder to use a dedicated connection to connect on a database configure in MTS. Normally, with OCI8, we have to specified a connection like bellow to connect in dedicated.
(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=server)(PORT=1521))(CONNECT_DATA=(service_name=instance)(server=dedicated))
Is it possible to do it ?
Thanks,
Pierrot

Hello Simon,
when you open About dialog and press the "more info" button, you get a long list of information.
Beginning of the "Path Information", you will see a line starting with "SAP GUI system prefs".
The value should be what you are looking for.
Best regards
Rolf-Martin

Similar Messages

  • Shared versus dedicated connections in the fragmentation of shared pool mem

    Hi,
    I have a old Oracle 8.1.7 database server.
    I have a legacy application with no source code. This application don't use memory efficiently (no bind variables, etc.) , ie memory becomes fragmented.
    I know that exists two ways to connect the database (dedicated and shared)
    Based on this, I want to know which of the two options creates more fragmentation. I know that recommendation is to use dedicated connection, but I'm not sure if this is recomendation is applicable in this particular environment.
    Thanks in advance.

    Whether you use shared or dedicated connections makes no difference for fragmentation in the shared pool. Whether your hard parse or do not hard parse does matter.
    Measures you can take
    - make sure often used packages like dbms_standard are pinned in the shared pool using a startup trigger
    - set session_cached_cursors to 50 or 100. This will reduce parsing.
    Sybrand Bakker
    Senior Oracle DBA

  • Hyperion web analysis reports: Error defining Drill through connections.

    Hi
    we are facing problems while defining Drill through connections.
    I am trying to define Drill through connection for oracle but i am unable to define.
    I am having pracle client in my system and getting error: Getting connection failed.
    In details: oracle.jdbc.driver.OracleDriver
    DB connection string: jdbc:oracle:thin:@HOST-NAME:1521:ORCL
    Here i have entered IP address in HOST-NAME and service name in ORCL.
    Do we need to do anything(prerequisites) before define Drill through ?
    Please help me on this.
    Nagesh.

    Hi,
    1. First check whether jdbc driver(ojdbc14.jar) file is present into "C:\Hyperion\BIPlus\InstallableApps\WebAnalysis _war\WEB-INF\lib" folder.
    OR
    C:\Hyperion\deployments\Tomcat5\WebAnalysis\webapps\WebAnalysis\WEB-INF\lib (any one of these depends upon the class u assigned)
    Plz check the classpath as well.
    if ojdbc14.jar file is not present in any of these path, place it there.
    2. Java is case sensitive, SO ur server name should be in CAPS. (First, try to connect to Relational DB thru New-->DBconnection-->Relational)
    Plz let me know if u still have any issue.
    Best of luck
    Edited by: user649490 on Feb 26, 2009 9:51 PM
    Edited by: user649490 on Feb 26, 2009 9:52 PM

  • Setting "dedicated.connection" Causes Error

    Hi,
    We have OC4J stand-alone 10.1.2.0.2 running on Red Hat Linux.
    We currently have an SR (service request #5736059.993) open with Oracle Support.
    In that SR, Oracle Support has recommended that we set property "dedicated.connection" to "true". When I do that, I get the following error:
    com.evermind.server.rmi.RMIConnectionException: Server shutdown
            at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:50)
            at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:22)
            at __Proxy3.create(Unknown Source)
            at its.fnd.sflto.ejb.EJBSFltData.<init>(EJBSFltData.java:174)
            at its.fnd.sflto.SFltObjectFactory.<init>(SFltObjectFactory.java:206)
            at its.fnd.sflto.SFltObjectFactory.getInstance(SFltObjectFactory.java:184)
            at its.apps.fltload.FltLoadApp.load(FltLoadApp.java:567)
            at its.apps.fltload.FltLoadApp.loadFlights(FltLoadApp.java:512)
            at its.apps.fltload.FltLoadApp.main(FltLoadApp.java:384)Isn't "dedicated.connection" deprecated?
    Is this why we are getting the error?
    We are running a single instance of OC4J, no clustering.
    Thanks,
    Avi.
    Message was edited by:
    Avi Abrami

    Hi Avi,
    As far as I know, the property dedicated.connection is an OC4J 9.x property.
    In the manual
    Oracle® Application Server Containers for J2EE Services Guide 10g Release 2 (10.1.2)
    you will find in the chapter
    2 Java Naming and Directory Interface
    the following text about the new property dedicated.rmicontext:
    This property replaces the deprecated dedicated.connection setting. When two or more clients in the same process retrieve an InitialContext, OC4J returns a cached context. Thus, each client receives the same InitialContext, which is assigned to the process. Server lookup, which results in server load balancing, happens only if the client retrieves its own InitialContext. If you set dedicated.rmicontext=true, then each client receives its own InitialContext instead of a shared context. When each client has its own InitialContext, then the clients can be load balanced.
    The dedicated.rmicontext property defaults to false.
    Best,
    Manfred

  • Large UGA in a Dedicated connections DB

    Hi all,
    I obtained the total PGA and UGA memory used by current sessions from the query below. All the connections used Dedicated connections.
    My question is: Why the UGA is that large (close to total PGA)? Is that normal for a database that doesn't have any Shared Server connection. What's the reason for that?
    Oracle 11g R1
    Windows 2003 SP2
    SQL> SELECT n.name, round(SUM(value)/1024/1024,2) MB
      2  FROM V$SESSTAT s, V$STATNAME n
      3  WHERE s.statistic# = n.statistic#
      4  AND n.name in ('session pga memory')
      5  group by n.name
      6  union
      7  SELECT n.name, round(SUM(value)/1024/1024,2) MB
      8  FROM V$SESSTAT s, V$STATNAME n
      9  WHERE s.statistic# = n.statistic#
    10  AND n.name in ('session uga memory')
    11  group by n.name
    12  ;
    NAME                                                         MB
    session pga memory                                       816.82
    session uga memory                                       782.36

    hi
    it is normal
    PGA Memory
    The Program Global Area (PGA) is a memory region that contains data and control information for a single process (server or background). The PGA is made up of the following:
    Session Information - (UGA)
    A PGA in an instance running without the shared server requires additional memory for the user's session, such as private SQL areas and other information. If the instance is running the shared server, this extra memory is not in the PGA, but is instead allocated in the SGA (the Shared Pool).
    Stack Space
    A PGA always contains a stack space, which is memory allocated to hold a session's variables, arrays, and other information.
    Uga is the bigest area in pga
    hope this helps
    zekeriya

  • Dedicated Connect Host System Dream Configuration?

    I have the opportunity to request a PC or Mac laptop specifically to host Connect sessions but need some advice. What should I ask for? Is there an ultimate set-up that can best handle any contingency for hosting a Connect session? Which browser works best? Which one should I avoid? Are certain support apps or plug-ins more valuable than others? How much processor speed is enough and when is it just overkill? Is more RAM always better?
    If you could design a dedicated Connect PC or Mac, what would YOU ask for?

    Knowing the history of Apple and Adobe, I would stick with a PC. Not just around the Flash issue (which I don't believe will be an issue), but more around the fact that Apple likes to make significant back end changes to their OS with new versions, and it tends to break the functionality of the Connect Add-In so you are left waiting for Adobe to make changes to the Add-In to accomodate Apple's changes.
    I peronally use FireFox, but I have seen little differnece in functionality or issues with other browsers. Since the meeting room runs in the Flash Player, it is prety browser agnostic.
    For processor speed and RAM, just go with the idea that more is better. The more you get now, the longer your system will be relevant to everyday computing, and that matters most.

  • "No access point defined. Define one in Connection...

    Hello, I have my Nokia N* for about two years now. I would always send MMS , but now I can't. This is the first time I am trying to send an MMS on Symbian Anna despite the fact of updating it months ago.
    This is what happens:
    1. I try to send a picture via SMS... which of course then becomes an MMS.
    2. "No valid access point defined. Define one now?
    3. I click YES
    4."No access point defined. Define one in Connection settings."   and the message dissapears. I then go to-->
    5. TOOLS>SETTINGS>CONNECTIVITY>SETTINGS>NETWORK DESTINATIONS
    6. There are 6 Internet Access Points and 4 WAP Access Points ( I added 5 Internet ones trying to figure this out and 3 wap ones trying to figure this out)
    MY SETTINGS:
    TOOLS>SETTINGS>CONNECTIVITY>SETTINGS
    1. MOBILE DATA&colon; On
    2. ALLOW MOBILE DATA USAGE: Worldwide
    MESSAGES>SETTINGS
    1. MMS creation Mode: FREE
    2.ACCESS POINT IN USE (WITH A GREEN STAR): MMS send
    3.MULTIMEDIA RETREIVAL: Always automatic
    Please help me!  =]

    I called my provider "TIM" and they have no idea what I am talking about when I asked them to please send me a new Access Point setting for MMS. Why was this working perfectly before Anna>? and now not? My provider is the same.

  • Two dedicated connections for 1 session

    Folks,
    I am new to Discoverer tool as such.
    Therefore I have this question, pl pardon me if it very basic.
    When I use the desktop edition of Discoverer to make a connection to the Oracle db.
    One the database side, it creates 2 dedicated connection for that Discoverer session.
    Is this normal, so something is not right in my environment configuration.
    Where should I look etc.
    Thanks,
    Ashish

    Hi there,
    The reason you have two dedicated connections, is because Discoverer makes two connections to the database - one to the End User Layer tables, and one to the source database tables themselves.
    This is mentioned in metalink note 62315.1 "SQL*Net Tracing Requirements for Discoverer" at http://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&id=62315.1
    Hope this helps
    Mark

  • How to connect APEX with MYSQL via Apex's Database link

    How do i connect APEX with MYSQL via Apex's Database link? The OBE doesn't go into specific detail about how to link the two.
    can someone please elaborate on what these are and where i can find them in mysql:
    Database Link Name      
    Connect To Schema      
    Password      
    Remote Hostname or IP      
    Remote Host Port      
    SID or Service Name      
    I need to link to mysql database so I can set up a 3D pie chart in apex

    Hi jononioo
    A database link is a device for connecting between Oracle database instances only. Oracle does have a method for connecting to other database systems (Transparent Gateway) but this is restricted to other commercial databases and I don't believe there is a gateway for Mysql. (I could be wrong)
    I don't know Mysql but maybe there is some way to push data to the Oracle instance. Other than that, is there any reason why the data has to reside in the Mysql database?
    Regards
    Andre

  • Cannot connect Oracle Form to my Oracle 10g Database

    Hi Guru,
    Could you guys help me out on below? I have been running Oracle 10g personal XE edition and Sql Developer on Windows XP. I am able to connect using TNS as connect type when I am connecting from my SQL Developer to my database.
    Today, I installed Oracle Forms, Form builders. I choose connect and provide these info
    username: my username
    password: my password
    Database: XE
    I received ORA- 12154 TNS: could not resolve the connect identifier specified.
    Anyone I doing something wrong?

    Hi,
    What is your forms version (The location of tnsnames.ora is different for 11g).?
    As Baig mentioned, you first need to create an alias in the tnsnames.ora file, like
    mydb =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP) (HOST = <your_host_name_where_db_is_installed>)(PORT = <port_default_is_1521>))
        (CONNECT_DATA = (SID = <SID_In_your_case_i_suppose_it_is_XE>))
      )Then, from forms you connect like
    username: my username
    password: my password
    Database: mydb <== This is the alias you've created in your tnsnames.ora as above
    HTH
    -Arun

  • Connect Oracle 10g Developer with Oracle 8i database

    Is it possible to connect Oracle 10g Developer with Oracle 8i database. If possible then plz guide how i can.

    with Oracle Developer 10g 9.0.4 is no problem to connect to Oracle 8i.
    with Oracle Developer 10g 10.1.2. you need the Patch 8.1.7.4 for 8i, i think.

  • Connect SAP Application with out of SAP Databasa (integration)

    Dear All;
    can any budy help me how to user DBCO to make a connection with non-SAP database.
    Regd
    AJ

    AJ,
    If not done already, please review the following notes and links (depending on the database that you want to connect to):
    Note 339092 - DB MultiConnect with Oracle as secondary database
    Note 323151 - Several DB connections with Native SQL
    Note 955670 - DB multiconnect with MaxDB as secondary database
    Note 738371 - Creating DBCON multiconnect entries for SQL Server
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/connection-between-sap-system-with-external-oracle-database-with-tcode-dbco-1178583?cv=expanded
    https://websmp109.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002040342006E
    Hope this helps.
    PJ

  • Training - Will Adobe Connect Pro provide access to an SQL database?

    Hi,
    I'd be totally indebted to find out the following information regarding Adobe Connect Pro as we're evaluating it for hosting Captivate created content.
    Background: Adobe has an API and we are hoping that we can make  our  own custom form and then upload additional Trainee information (say they  have two cell numbers or their birthdate) into the hosted Adobe Connect  site for our training.  We want Trainees to be able to register themselves via a form that we host and have the push in via the Adobe Connect API.  It's too painful for us to have to make a userid for the trainees each time.
    Question 1) Is there a way for us to get access to the SQL Trainee database hosted with Adobe Connect?  If so how is that done?
    Question 2) Will the custom values (e.g. the phone and birthdate) that are made on our form and passed to Adobe Connect's LMS viewable by the Admin Reports interface?
    Question 3) Will the custom values (e.g. the phone and birthdate) that  are made on our form and passed to Adobe Connect's LMS viewable wihin the SQL database if we have access to that (see question 1).
    Thank you!
    Dave

    Thanks you for the post.
    http://moviesonlineworld.com

  • What is the correct wording to connect to an SQL Server Express 2014 database?

    I am connecting to an Access 2007 database:
    oleConnection = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\...\\Db.accdb");
    What is the correct wording to connect to an SQL Server Express 2014 database?
    bhs67

    Hello,
    Please make sure you change RemoteServer with the computer name of the intended SQL Server server.
    Make sure the SQL Server instance have enable TCP/IP and Named Pipes protocols. Use the following article to enable them:
    http://msdn.microsoft.com/en-us/library/ms191294.aspx
    Start SQL Server Browser Service using SQL Server Configuration Manager.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Connecting Web dynpro application to an SAP database

    Hi
    Iam new to the Web dynpro
    I created a proto type for this screen.
    In my project ,under one of the module "std Allo" option will come.By clicking that "std allo" screen will come.
    In that Create , Export buttons is there.In that, table is present consists of Allowance Code, sub code,type,level,expense type,amount fields are present.
    1. After clicking create button , these elements are present.
    Save and Cancel buttons are present.
    allowance code - (i/p field) , sub code - (i/p field) , period Type - (Dropdown by key) ,
    Type - (Checkbox group) , level - ( Dropdown by key) , expense type - ( Dropdown by key) ,
    trip - ( Dropdown by key) , currency - ( Dropdown by key) ,amount - (i/p field)
    2.By clicking first row in the table ,,
    delete ,edit cancel buttons are present.
    same elements are present which i mentioned in step 1.
    To connect to the R3 database, Function module is required.Can any one help what are the specifications i need to give to the ABAP team to develop a Function module for this appluication.
    Please tell me procedure.
    Regards
    Sushma

    Iam trying to connect my web dynpro application to R3 Database.
    Iam having list screen consistts of Create and Export buttons and table.
    Table Fields :
    Allowance Code , sub code ,Type , Level , expense Type , amount
    After clicking  Create button ,
    the screen consists of save and Cancel buttons.
    Allowance Code  -- (Input Field)
    Sub Code --  (Input Field)
    Period Type -
    (Dropdown by key)
    Type -
    (Radio button Group)
    Level --- (Dropdown by key)
    Expense Type -(Dropdown by key)
    Trip - (Dropdown by key)
    Currency - (Dropdown by key)
    Amount --(Input Field)
    In the Create screen  all these fields are present. But in the table in the List Screen it is taking only mandatory Fields.
    For this our Abapers created
    Fun Mod : Zup_Allowance_Input
    Table     : ZMSTR_ALLOW 
    Iam getting error in this code under IdataType in this "Save Button ".
    Can any one help me where i went wrong in this code.or else please provide the Code for this.
    public void onActionSave(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSave(ServerEvent)
         try{
              String str1=wdContext.currentStdAllowanceElement().getAllowanceCode();
              String str2=wdContext.currentStdAllowanceElement().getSubCode();
              IDataType dataType = wdContext.nodeStdAllowance().getNodeInfo().getAttribute("PeriodType").getDataType();
         String index=wdContext.currentStdAllowanceElement().getPeriodType();
         String str3=wdThis.getTextFromSimpleType(dataType,index);
                                  wdComponentAPI.getMessageManager().reportSuccess("wetreer                "+str3);
         String arr[]={"Fixed","Actual"};
         for(int i=0;i<arr.length;i++)
    IPrivateEtrecStdCreateView.ICheckElement e=wdContext.nodeCheck().createCheckElement();
    wdContext.nodeCheck().addElement(e);
    e.setType(arr<i>);
    IDataType dataType = wdContext.nodeStdAllowance().getNodeInfo().getAttribute("").getDataType();
              String index=wdContext.currentStdAllowanceElement().getLevel();
              String str5=wdThis.getTextFromSimpleType(dataType,index);
    wdComponentAPI.getMessageManager().reportSuccess("wetreer                 "+str5);
    IDataType dataType = wdContext.nodeStdAllowance().getNodeInfo().getAttribute("ExpenseType").getDataType();
    String index=wdContext.currentStdAllowanceElement().getExpenseType();
    String str6=wdThis.getTextFromSimpleType(dataType,index);
    wdComponentAPI.getMessageManager().reportSuccess("wetreer                 "+str6);
    IDataType dataType = wdContext.nodeStdAllowance().getNodeInfo().getAttribute("Trip").getDataType();
    String index=wdContext.currentStdAllowanceElement().getTrip();
    String str7=wdThis.getTextFromSimpleType(dataType,index);
    wdComponentAPI.getMessageManager().reportSuccess("wetreer                 "+str7);
    IDataType datatype = wdContext.nodeStdAllowance().getNodeInfo().getAttribute("Currency").getDataType();
    String index=wdContext.currentStdAllowanceElement().getCurrency();
    String str8=wdThis.getTextFromSimpleType(dataType,index);
    wdComponentAPI.getMessageManager().reportSuccess("wetreer                 "+str8);
    String str9=wdContext.currentStdAllowanceElement().getAmount();
    Zup_Allowance_Input input=new Zup_Allowance_Input();
              input.setAllow_Opt("C");
              input.setAllowance_Code(str1);
              input.setSubcode(str2);
              input.setType1(str3);
              input.setLevel1(str5);
                         input.setExpense(str6);
                         input.setCurr_Key(str8);
    wdContext.nodeZup_Allowance_Input().bind(input);
    wdContext.currentZup_Allowance_InputElement().modelObject().execute();
    String str10=wdContext.currentOutputElement().get();
    if(str10.equalsIgnoreCase("3"))
    String errorMessage = "Inserted Successfully !";
    IWDEventHandlerInfo windowHandler = wdControllerAPI.getViewInfo().getViewController().findInEventHandlers("OK");
    IWDConfirmationDialog windowDialog = wdComponentAPI.getWindowManager().createConfirmationWindow(errorMessage, windowHandler, "OK");
    windowDialog.open();
    windowDialog.setWindowPosition(300,250);
    }if(str10.equalsIgnoreCase("2"))
    String errorMessage = "Duplicate Value !";
    IWDEventHandlerInfo windowHandler = wdControllerAPI.getViewInfo().getViewController().findInEventHandlers("OK");
    IWDConfirmationDialog windowDialog = wdComponentAPI.getWindowManager().createConfirmationWindow(errorMessage, windowHandler, "OK");
    windowDialog.open();
    windowDialog.setWindowPosition(300,250);
    }catch(Exception e)
                 wdComponentAPI.getMessageManager().reportSuccess(e.toString());
        //@@end
      //@@begin javadoc:onPlugFromEtrecStdView(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onPlugFromEtrecStdView(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onPlugFromEtrecStdView(ServerEvent)
         wdContext.currentStdAllowanceElement().setAllowanceCode("");
            wdContext.currentStdAllowanceElement().setAmount("");
            wdContext.currentStdAllowanceElement().setSubCode("");
        //@@end

Maybe you are looking for