DRCP Data resident connection pooling

Hi,
I have a quesiton form SR
Please confirm do you use DRCP "database resident connection pooling" ?
How do I determine if DRCP is enabled in my environment
Could someone help. This is urgent
Thanks,
Prasad

1. "select status from dba_cpool_info" (as SYSDBA)
If it is 'ACTIVE', it means the DRCP on the server is up.
Also, 'ps -ef | grep ora_l0', 'ps -ef |grep ora_n0' show you the pooled servers and connection brokers respectively
2. lsnrctl services
Instance "orcl11", status READY, has 2 handler(s) for this service...
Handler(s):
"N000" established:0 refused:0 current:0 max:5697 state:ready
CMON <machine: abc386, pid: 8468>
(ADDRESS=(PROTOCOL=tcp)(HOST=abc386.xyz.com)(PORT=28232))
"DEDICATED" established:70 refused:0 state:ready
LOCAL SERVER
Shows the DRCP has registered with the listener and is ready for taking requests.
3. Look at the connect string the application is using:
poolstr = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = abc386.xyz.com)(PORT = 1522))) (CONNECT_DATA = (SERVICE_NAME = orcl11)(SERVER=POOLED)))
4. While the application runs, see the DRCP stats: (as sysdba)
select num_requests, num_hits, num_misses, num_authentications from v$cpool_stats
a) if the num_requests is going up, the application is using the DRCP. Otherwise it is not.
b) If num_misses is going up and not the num_hits, DRCP is being used, but the pooled servers are not being reused. Please check for PURITY and CONNECTION_CLASS attributes.
For PHP, the purity is always SELF (reuse mode) and hence the num_hits should go up if oci_pconnect is repeated (for the same user from the same PHP.ini that has oci8.connection_class)
For OCI application, please check the attributes being used or not.
c) If NUM_AUTHENTICATIONS is going up, same as above. Please check the PURITY or if you are using oci_new_connect in PHP.
5. See the rows from v$cpool_conn_info for all the connections from the clients to DRCP. Check documentation.

Similar Messages

  • Using Database Resident Connection Pooling

    Hi all,
    <br><br>
    In trying to use Database Resident Connection Pooling in Oracle 11g, here is what I have done:
    <br><br>
    SQL> conn / as sysdba
    Connected.
    SQL> exec DBMS_CONNECTION_POOL.START_POOL();
    PL/SQL procedure successfully completed.
    SQL> SELECT STATUS,MINSIZE,MAXSIZE,INCRSIZE,SESSION_CACHED_CURSORS,INACTIVITY_TI
    MEOUT
      2  FROM DBA_CPOOL_INFO;
    STATUS              MINSIZE    MAXSIZE   INCRSIZE SESSION_CACHED_CURSORS
    INACTIVITY_TIMEOUT
    ACTIVE                    4         40          2                     20
                   300<br>
    <br>
    In tnsnames.ora file, here is what I have put:<br>
    ORA11G =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = winxp)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = ora11g)
    ORA11GP =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = winxp)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = POOLED)
          (SERVICE_NAME = ora11g)
      )<br>
    <br>
    Now, in sqlplus in attempt to use DRCP, here is what I got:<br>
    SQL> CONN HR/HR@ORA11G
    Connected.
    SQL> CONN HR/HR@ORA11GP
    ERROR:
    ORA-28547: connection to server failed, probable Oracle Net admin error
    Warning: You are no longer connected to ORACLE.<br>
    <b>Is there anything I missed to properly use DRCP.</b>
    <br>
    Thanks in advance.

    According to Metalink note:
    Subject: Using DRCP and NTS Authentication Results in ORA-28547
    Doc ID: Note:563943.1 Type: PROBLEM
    Last Revision Date: 19-MAY-2008 Status: MODERATED
    this is a bug on Windows and you should configure client sqlnet.ora so that SQLNET.AUTHENTICATION_SERVICES=NONE.

  • Database Resident Connection Pooling (DRCP)

    Hi there,
    Im playing with DRCP on SLES but its not acting as I would expect. Given the lack of any hard info out there I thought I would check my understanding as its probably/possibly flawed!
    I thought that with DRCP you would have lots of sessions in the database with a small pool of server processes (These are the "L000" processes).
    If I set my pool to have a max-size of 3 for example then I can create TWO sessions (via SQLPLUS11g) using the POOLED processes (SERVER=POOLED).
    The third process is used for "Authenitication". Ok. Fine. Good. All sessions are sat idle doing nothing and I can see in v$session and v$process that the sessions have picked up one of the "Lnnn" processes..
    Now when I come to add another session , the create-session/connect from SQLplus hangs and waits for one of the other sessions to either time-out or be closed.
    I thought DRCP would allow multiple sessions to share the same processes. Ie if session A is idle then its pooled server-process is released back to the pool - and hence would be available to be used by another session. IE a bit like shared-servers in well, Shared Server I guess!
    If the above isnt the case then is this really "Pooling" or just a case of there being pre-spawned server processes knocking about to speed up connection requests?
    Yours,
    Bob

    Hi,
    I can't believe no-one else on this forum was not able to jump in while I was busy!
    I wasn't aware of that OTN article I merely read the docco. However, having read this now and read your comments, I still don't get where you are coming from as (to me) the article just backs up what I think. But I could be wrong.
    In fact to quote exactly what you've posted:
    "Clients are persistently connected and authenticated to the Broker. Clients
    request the Broker to provide pooled servers when they need to perform some database activity, use them, and then release them back for reuse by other clients."
    I read this as clients get a connection from the broker, uses it and releases it. With emphasis on the client. So if the client hasn't released it, it's still got it.
    "...The pooled server is handed back to the broker when the client releases it."
    I mean again, emphasis on the client releasing it. If the client doesn't release it, it's still got it and so can't be used by any other client.
    I do believe the diagram is misleading, it seems to imply that an idle (grey) client is just 'connected' to the broker, implying for a pooled connection to be back in the pool then the client just has to be merely idle rather than releasing it. The Busy/Idle w.r.t. DB activity doesn't help either as we all know a client can be connected but not doing anything with that connection. So I see how that can cause confusion.
    The noddy little graph just shows to me a linear correlation between memory and pooled connections. What a suprise. This is exactly what I would expect. The more connections in your pool, the more memory you need.
    Lastly, if the DRCP didn't work this way, it would work differently to every other connection pool I've ever met. With a connection pool governed by the mid tier, it opens a bunch of dedicated connections to the DB with a common username. The mid tier language (java, .nyet, whatever) makes it transparent that a connection is coming from this pool and normally makes it transparent to release them back (the developers never need know).
    But as I said I could be wrong and I'm interested in what you find from the SR.

  • WebLogic 11g data source connection pooling failed with IO error:socket read timed out.

    Hi all,
    We encountered IO Error: Socket read timed out( <Received exception while creating connection for pool "DS_1": IO Error: Socket read timed out> ) during the creation of data sources in WebLogic 11g. Manual data source testing seems to indicate intermittent connection and the server seems to take a long time to start up with multiple IO errors. We increased the timeout at the database side but it does not seems to help. The database is 11g (11.2.0.3). The database services and listener are up which does not indicate that the database instance is down.

    This particular error means your database is down and socket is timedout. Or the query takes so long that the reader timedout -- unlikely.
    Also, the general weblogic socket write errors, which you might see sometimes means that the client got disconnected before the server wrote results back. This is harmless

  • SUN TEAM URGENT:  auto creation of data source, connection pool, ...etc

    to the sun team,
    i have been using NB+VWP to deploy an application created in JSCU2 to a Sun App Server 9.
    for some reason, whenever am viewing a DB connection in the servers window and drag-drop a table on the page, the system is automatically creating a new data source, a new conneciton pool, and new jdbc resource. also, it is removing the necessary references in web.xml and sun-web.xml.
    is there any way to get around this? otherwise, i am forced to modify the jdbc settings in the server as well as the config file each i drag-drop a DB table/view.
    thanks so much
    - Peter

    Unfortunately, this is a bug and should be fixed in the next release.
    I'll look for the issue id.
    In the meantime, this workaround may help:
    http://wiki.netbeans.org/wiki/view/VWPUserFAQsavewebxml
    John Baker
    http://blogs.sun.com/dashboy

  • Physical Tables from multiple connection pools

    Hi all,
    we have in our RPD file two connection pools (let's say A and B), each connecting to a different source DBs.
    Thus, each physical table resides either in source DB A or B (xor).
    The specified connections work in Admin tool, and also direct database requests work in OBIEE 11G if we explicitly
    provide the correct connection pool. The connection pools are specified in order A,B in the Admin tool.
    However, using OBIEE answers always results in following error message if data from the connection pool B
    is to be queried:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000]
    [nQSError: 10058] A general error has occurred.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 17001] Oracle Error code: 942, message: ORA-00942: table or view does not exist at OCI call OCIStmtExecute.
    [nQSError: 17010] SQL statement preparation failed. (HY000)
    If we exchange the order of connection pools to B,A in Admin tool, we get the same error if we query
    data from connection pool A.
    It seems that each connection pool needs to be able to access all physical tables. Is that correct?
    Thanks, Thomas
    Edited by: user13376481 on Mar 4, 2013 3:08 AM

    Hi Thomas.
    I have the same escenario...
    you tried the solution? worked?
    Thanks.
    Hamilton T

  • Connection Pool Metrics in ASC - doesn't seem to reflect the usage

    Guys,
    So i am trying to monitor the jdbc connection pool usage using the Application server Console (following the link --> Cluster Topology > Application Server: engas-machine > OC4J: oc4jinstance > JDBC Resources > Connection Pool Metrics: "myconnectionpool"
    But i don't see the Pool Usage not reflecting any change and displaying the value 0 for all attributes as below
         Connections In Use     0          
         Free Connections          0          
         Total Connections in Pool          0          
         Threads Waiting for Connections     0
    I wonder why is that, i wonder if i have to use ojdbc-dms driver for the ASC to display the actual statistics ?
    Thanks in advance

    BTW. here is the data-source.xml file...
    <data-sources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/data-sources-10_1.xsd" schema-major-version="10" schema-minor-version="1">
    <managed-data-source connection-pool-name="MyAppConnectionPool" jndi-name="jdbc/mydb" name="mydatasource"/>
    <connection-pool name="MyAppConnectionPool" initial-limit="20" max-connections="100" min-connections="20">
    <connection-factory factory-class="oracle.jdbc.pool.OracleDataSource" user="[username]" password="[password]" url="jdbc:oracle:oci:@mydb" commit-record-table-name=""/>
    </connection-pool>
    </data-sources>
    </connection-pool>
    </data-sources>

  • Share the connection pool using weblogic

    I want to make shared connection with the JDBC driver, I read that the follow syntax:
    jdbc:oracle:thin:<USER>/@(PROTOCOL = TCP)(HOST = <HOST>)(PORT = <PORT>)))(CONNECT_DATA = (SID = <SID>) (SERVER = SHARED)))
    would let me have the JDBC connections shared with the others regular connections.
    Is it true ?
    Where to set such parameters in weblogic ?
    I'm currently using the JDBC driver ( SERVICES->JDBC->DATA SOURCES-> connection pool (tab) ) configured in the following manner:
    URL: +jdbc:bea:oracle://[dbIP]:1521+
    Driver Class Name: weblogic.jdbc.oracle.OracleDriver
    Properties:
    user=ETL
    portNumber=1521
    SID=LIVDEV1
    +serverName=[dbIP]+
    Thanks

    A 'shared' connection has to do with whether the DBMS spawns a separate OS process at the DBMS end to handle every single connection, or whether it spawns fewer, letting one DBMS-side process handle multiple logically distinct user connections, at some performance cost.
    Depending on the DBMS configuration and platform, this may be optional, the default, or impossible. As to clientside properties, try setting
    ServerType=shared.
    And just to be clear, this has nothing to do with how/whether the connection is to be used at the application end. It will
    always be considered as a single logical user, not a port for multiple independent client threads to use at once....

  • Connection Pool hangs

    Hello,
    We have a strange problem with Oracle Connetion pool on IAS 10.1.3.1.0.
    Sometimes (for example once a week, sometimes one a month) connection pool hangs. Enterprise Manager / Connection pool monitor page shows information about threads waiting for connection (see below) and users are unable to work with application.
    Connections In Use                1
    Free Connections                13
    Total Connections in Pool           14
    Threads Waiting for Connections      534
    WebApp installed on IAS is a simple Toplink based application. There are no strange messages in error logs, so why connection pool is unable to assign free connection to user ?
    Thanks in advance
    Tom
    Edited by: olos on Sep 30, 2008 8:57 PM

    Hello,
    Thanks for response. I will try if it is possible to test connection from AS control during next connection pool crash. BTW we must check if this situation is not caused by operation system (Linux) swapping process.
    Regards
    Tom
    My datasources file is:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <data-sources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/data-sources-10_1.xsd"
    schema-major-version="10" schema-minor-versio
    n="1">
    <managed-data-source connection-pool-name="Example Connection Pool"
    jndi-name="jdbc/OracleDS" name="OracleDS"/>
    <managed-data-source connection-pool-name="Bufor List Connection Pool"
    jndi-name="jdbc/BuforListDS" name="Bufor List Data Source"/>
    <connection-pool name="Example Connection Pool">
    <connection-factory
    factory-class="oracle.jdbc.pool.OracleDataSource" user="scott"
    password="tiger" url="jdbc:oracle:thin:@//localhost:1521/ORCL"/>
    </connection-pool>
    <connection-pool name="PRD Connection Pool"
    abandoned-connection-timeout="120" connection-retry-interval="3"
    max-connect-attempts="5" max-connections="200" min-connections="3"
    property-check-interv
    al="600">
    <connection-factory
    factory-class="oracle.jdbc.pool.OracleDataSource" user="user"
    password="password"
    url="jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=tcp)(HOST
    =host01)(PORT=1521))(ADDRESS=(PROTOCOL=tcp)(HOST=host02)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=SN.DOMENA.PL)))"/>
    </connection-pool>
    </data-sources>

  • Database Resident Connection

    I was reading on Database Resident Connection pooling,
    http://docs.oracle.com/cd/E11882_01/server.112/e25494/manproc002.htm
    it says,
    You cannot perform the following activities with pooled servers:
    Shut down the database
    But i enable the pooled with dbms_connection_pool.start_pool() and i was able to shutdown the database.
    Database 11.2.0.3 32bit...
    Any comment..

    842638 wrote:
    I was reading on Database Resident Connection pooling,
    http://docs.oracle.com/cd/E11882_01/server.112/e25494/manproc002.htm
    it says,
    You cannot perform the following activities with pooled servers:
    Shut down the database
    But i enable the pooled with dbms_connection_pool.start_pool() and i was able to shutdown the database.
    Database 11.2.0.3 32bit...
    Any comment..You should file a Bug Report.

  • Which DataSource class to use for DB connection pooling?

    Hi,
    can someone point me in the direction of some (sample?working?) data-sources.xml configurations that pool the DB connections please. I don't have a requirement for TPC, so either native or emulated would be fine, but I need a LOT less db connections for multiple users using stateless sessions on the same database/datasource than I am currently getting. An added bonus would be being able to use the "Monitor Performance" button in Enterprise Manager.
    thanks
    Brigette

    data-sources.xml configurations that pool the DB connections
    Define a data source connection pool with a data-source element in data-sources.xml file.
    <data-source
         class="oracle.jdbc.pool.OracleConnectionPoolDataSource"
              name="OracleDS"
              location="jdbc/OracleDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username=""
              password=""
         url="jdbc:oracle:thin:@<host>:<port>:<SID>"
              inactivity-timeout="30"
         />

  • Some doubts in using resource-ref,connection pool n Data-source

    Hi all ,
    I need little bit clarification in the following points.
    1) Does the connection pool which is created can be displayed in JNDI Tree???
    I am seeing only DataSOurce in the JNDI Tree Only.
    2)In case of Bean Managed Persistance, in ejb-jar.xml,
    I had given the following info.
    <resource-ref>
             <res-ref-name>ramukkDataSource</res-ref-name>
             <res-type>javax.sql.DataSource</res-type>
             <res-auth>Container</res-auth>
         </resource-ref>Does the <res-ref-name> refers to Datasource Name??
    In weblogic-ejb-jar.xml
    <reference-descriptor>
           <resource-description>
              <res-ref-name>ramukkDataSource</res-ref-name>
              <jndi-name>ramukkpool</jndi-name>
           </resource-description>
         </reference-descriptor>Here <jndi-name> refers to connection pool as per weblogic bible book.
    If so when i deployed my ejb into the server iam getting Datasource cant be found.
    If i had given like the following,
    In ejb-jar.xml
    <resource-ref>
              <res-ref-name>jdbc/ramuJndi</res-ref-name>
              <res-type>javax.sql.DataSource</res-type>
              <res-auth>Container</res-auth>
         </resource-ref> In weblogic-ejb-jar.xml
         <reference-descriptor>
              <resource-description>
               <res-ref-name>jdbc/ramuJndi</res-ref-name>
               <jndi-name>jdbc/ramuJndi</jndi-name>
           </resource-description>
        </reference-descriptor>Then only my ejb code is successfully deploying doing some work which is as per xpectation.
    Can any body tell why I have to give the same name for <res-ref-name> n <jndi-name>??
    I am working on this problem from last one week. Still not found the solution.
    Connection Pool Creation
    GENERAL::
    Name : ramukkpool
    url : jdbc:mysql://localhost:3306/test
    Driver Classname: com.mysql.jdbc.Driver
    Properties :
    user = root
    Password = XXX
    create
    TARGETS::
    i had shifted myServer from left side to right side n clicked >>Apply
    (Techncially can we say this as deploying the connection pool into server ???????????
    If not how to deploy the connection pool into server??)
    I did not get any errors in the console.
    Now i am creating a datasource
    CONFIGURATION:
    Name : ramukkDataSource
    JNDIName: jdbc/ramuJndi(Does we have to follow this convention only?? i.e JNDIName should start with jdbc/ only)
    PoolName: ramukkpool
    create
    TARGETS::
    I had shifed myServer from left to right n >>Apply.
    Now also i did not get any errors in the console.Thanx(in advance),
    ramu

    I have read the documentation.
    I changed my class to oracle.jdbc.pool.OracleConnectionCacheImpl from
    oracle.jdbc.pool.OracleConnectionPoolDataSource
    I observed in the EM that the Open JDBC Connections and Total JDBC Connections are the same. When I used oracle.jdbc.pool.OracleConnectionPoolDataSource my Total JDBC Connections was increasing and Open JDBC Connections remains 0.
    My question still remains unanswered, could some kindly help.
    Q? I have defined a data source in JDeveloper using
    oracle.jdbc.pool.OracleConnectionCacheImpl
    In my java bean I am using the code pasted below to make a connection to database.
    Can some one tell whether I am using the correct method of connection pooling mechanism or do I need to make some changes? This application uses JSP and used by lots of people which hits database very frequently.
    Any help is highly appreciable.
    Thanks in advance.
    *******Code to make connection*********
    private javax.naming.InitialContext context = null;
    private javax.sql.DataSource jdbcURL = null;
    private static final String url = "jdbc/ProdCoreDS";
    public boolean openConnection()
    try
        DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    context = new javax.naming.InitialContext();
    jdbcURL = (javax.sql.DataSource)context.lookup(url);
    con =  jdbcURL.getConnection();
    return true;
      catch(Exception e)
           System.out.println("Error in the Connection  "+e);
        e.printStackTrace();
                 return false;
         }}

  • Creation of connection pools and data sources

    Hi,
    is there a possibility to create jdbc connection pools and data sources not manually, with a script or a mbean?
    That would be helpfull, because at the moment every developper has to do that for himself (because of the individuals generated passwords).
    Thanxs

    The weblogic.management.configuration.JDBCDataSourceMBean
    defines a non-transactional JDBC data source.
    http://e-docs.bea.com/wls/docs90/javadocs_mhome/weblogic/management/configuration/JDBCDataSourceMBean.html
    The JDBCConnectionPoolMBean defines a JDBC connection pool.
    http://e-docs.bea.com/wls/docs90/javadocs_mhome/weblogic/management/configuration/JDBCConnectionPoolMBean.html

  • Connection Pooling in Data Source

    Hello,
    I have defined a data source in JDeveloper using
    class :oracle.jdbc.pool.OracleConnectionPoolDataSource
    In my java bean I am using the code pasted below to make a connection to database.
    Can some one tell whether I am using the correct method of connection pooling mechanism or do I need to make some changes? This application uses JSP and used by lots of people which hits database very frequently.
    Any help is highly appreciable.
    Thanks in advance.
    *******Code to make connection*********
    private javax.naming.InitialContext context = null;
    private javax.sql.DataSource jdbcURL = null;
    private static final String url = "jdbc/ProdCoreDS";
    public boolean openConnection()
    try
        DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    context = new javax.naming.InitialContext();
    jdbcURL = (javax.sql.DataSource)context.lookup(url);
    con =  jdbcURL.getConnection();
    return true;
      catch(Exception e)
           System.out.println("Error in the Connection  "+e);
        e.printStackTrace();
                 return false;
      }

    I have read the documentation.
    I changed my class to oracle.jdbc.pool.OracleConnectionCacheImpl from
    oracle.jdbc.pool.OracleConnectionPoolDataSource
    I observed in the EM that the Open JDBC Connections and Total JDBC Connections are the same. When I used oracle.jdbc.pool.OracleConnectionPoolDataSource my Total JDBC Connections was increasing and Open JDBC Connections remains 0.
    My question still remains unanswered, could some kindly help.
    Q? I have defined a data source in JDeveloper using
    oracle.jdbc.pool.OracleConnectionCacheImpl
    In my java bean I am using the code pasted below to make a connection to database.
    Can some one tell whether I am using the correct method of connection pooling mechanism or do I need to make some changes? This application uses JSP and used by lots of people which hits database very frequently.
    Any help is highly appreciable.
    Thanks in advance.
    *******Code to make connection*********
    private javax.naming.InitialContext context = null;
    private javax.sql.DataSource jdbcURL = null;
    private static final String url = "jdbc/ProdCoreDS";
    public boolean openConnection()
    try
        DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    context = new javax.naming.InitialContext();
    jdbcURL = (javax.sql.DataSource)context.lookup(url);
    con =  jdbcURL.getConnection();
    return true;
      catch(Exception e)
           System.out.println("Error in the Connection  "+e);
        e.printStackTrace();
                 return false;
         }}

  • Mapping Data Source and Connection Pools

    Is it possible to Map a Data Dource with Multiple connection pools in Weblogic ? If Yes how do we do that ?

    Which version of WLS are you using. With version 10.0 you could use a multi data source.
    http://e-docs.bea.com/wls/docs100/jdbc_admin/jdbc_multidatasources.html

Maybe you are looking for

  • How do I convert MP4 file to AVI or MOV using MacBook Pro (2010)

    I am 10.6.4 new user on a new MacBook Pro. This is my first Mac computer. I want to convert a MP4 video file to AVI or MOV file type. How would I do this on my new Mac? Documentation says I have Quicktime X, but I cannot find Quicktime X on my system

  • During install Server Option disabled

    The 1st 2 choices are greyed out, it says CF and Jrun are DETECTED on my system. I have removed 1). the CFUSIONMX7 Folder 2). EVERY reference to ColdFusion in the registry 3). I don't have a CFIDE or CFDOC under my wwwroot 4). Nothing in the TEMP fol

  • Sending Alert Messages to File System

    Hi, I am trying to implement a scenario in PI which automatically processes alert message generated by the Alert Framework (the messages are processed in a message mapping). Therefore I am sending alerts via mail and receive these mails afterwards wi

  • I have moved to another country nd lost my old apps??

    Hi, I have moved to another country. How can I register my new adresse and keep my iphone apps? For now I have changed my adresse and payment information but It seems than I cannot download the app updates I bought at my previous place... Tx, NuDD

  • HT201269 MY IPHONE 5 WILL NOT SYNC WITH ITUNES WHY

    MY IPHONE 5 WILL NOT SYNC WITH ITUNES WHY