NW 7.2 Visual Composer - Switch off connection pooling

Hello,
I'd like to switch off connection pooling for a VC app running on NW CE 7.2. I found some entries in destination management for my destination system accordingly (pool size, max time .... and an option to switch it off).
But it doesn't work. Any ideas why not?
Thanks very much for your help.
Regards
Stefan

Hello,
thanks for the answer, but it's not working as expected.
I thought if connection pooling is switched off that the connection is closed when the user logs off or navigates to a different iView (without backend connection).
This doesn't happen.
Am I wrong in my understanding?
Thanks
Stefan

Similar Messages

  • Help urgently needed please ! My Iphone 4 is on silent vibration mode, received a call and has frozen with the Iphone unusable and yet vibrating. I have tried switching off, connecting to power, connecting to laptop and removing SIM card ???

    Help urgently needed please ! My Iphone 4 is on silent vibration mode, received a call and has frozen with the Iphone unusable and yet vibrating. I have tried switching off, connecting to power, connecting to laptop and removing SIM card ???

    Problem solved... just saw the answer in another thread... https://discussions.apple.com/message/13110222#13110222

  • How can I switch the connection pool dynamically during on load happens

    HI,
    I have two data bases which holds same data. i.e Prod_db, Prod_db1,
    I want to switch the connection pool dynamically during load happens
    Ex: During load happens i want to hit prod_db1, after load completes i want to hit prod_db. How to achieve this.

    create dynamic repository variable for DSN using init block so that value is changes based on your timings and use this in connection pool.
    If you use same user and passwords for both the databases that would be easy or else need to follow the same for uid and pwd.
    That should work, if not update.
    If helps pls mark correct/helpful

  • Turn off connection pooling

    How can I turn off connection pooling? How should the data-sources.xml look like. There are several documents telling how to turn it on, but not how to turn it off.
    Thanks for any advice!
    - Paul

    I have exactly the same need due to the following bug I am facing in the JDBC driver:
    DB Adapter - Getting Fatal Error (package body state is invalidated)
    Wondering if there is indeed a way to turn off connection pooling - I look at it as a performance tuning knob which you should be able to turn both ways.
    Appreciate your help.

  • Switching off connections fast (Wifi, 3G, BT, GPS)

    Does anybody know of an easy (FAST) way to switch off and on your Wifi, 3G, Bluetooth, GPS connections on the iPhone? I HATE going through all the screens. On top of that they are not all in the same place. Is there an App or something? I cannot seem to find anyhing. or is this improved in iOS5?
    Thanks.

    I wasn't really trying to switch them all off at once. But sometimes I want to switch off wifi or 3G, depending on the network strength I have. Also for powersave reasons I often switch some of these on or off. And they are just not well placed. For example on the Samsung Galaxy range (android), they are very conveniently put together in one easy accessable area (except for 3G, which is annoying as well). But then again, I love my iPhone and don't want an android ;-)

  • Can Visual Composer talk to/connect to any database?..

    Hi ,
    My first question is if Visual Composer can talk to a database directly?
    I would like to know the all the databases which visual composer can connect to?
    Does it connect only to SAP Backend systems?
    Or can it connect to Any Database like SQL server etc.,?
    If so, how can visual composer be configured to any database?...
    Please help!
    Thanks,
    Vaishali.

    Hi Vaishali,
    It can talk to Any SAP Data base or Java or Oracle data base through portal.
    First you have to confihure all your backends in Your portal and Connect them to Your VC User through Usermapping.
    So all Backends will appear in VC There by you can use the for your application in your portal.
    If helpful award points
    Regards,
    Govindu

  • Why would connection pooling cause problems with a trigger?

    This is a strange one. We have an app that deletes a row in a database table, and this table has a delete trigger on it. The row gets deleted every time the app is run, yet the trigger only fires intermittently. It's not that the trigger is failiing in some way - it just doesn't get called at all. If I issue the same delete command in PL/SQL developer then the trigger fires every time.
    Several hours later and out of desparation I tried turning off connection pooling via the app's connection string, and found that the trigger now fires every time. Any ideas what might be causing this behaviour? I can reproduce/fix the issue every time simply by setting "Pooling" to true or false!
    We are using Oracle 11g and ODP.Net v4.112.2.0.
    Thanks in advance
    Andrew

    More information: I've now been able to reproduce this issue in a small .Net app, and can make it fail in a more consistent manner (which I'll explain later). While it's still too large to post the entire code here, I can summarise what the app does in pseudo-code:-
    for(int i = 1; i <= 10; i++) // Run the test a number of times
    // Step 1 - Delete rows from the table with the delete query in question
    Execute non-query "delete from test_table";
    Wait 1 second
    // Step 2 - Check that the delete actually happened
    Execute reader "select count(*) from test_table"
    Display the count
    // Step 3 - Check that the delete trigger inserted some rows into a "logging" table. This is my method of "tracing" - I added a basic insert to the start of each trigger section, as mentioned in my previous post.
    Execute reader "select count(*) from my_logging_table"
    Display the count
    // Reinstate the test data
    Execute non-query "<insert rows back into test_table>"
    Wait 1 second
    For info the connection string is fairly basic:- "Data Source=<tns name>;User Id=<foo>;Password=<bar>"
    Some points of interest:-
    - When running the above test app, the trigger successfully fires on the very first iteration (i.e. "Step 3" displays a non-zero count from the logging table). All subsequent iterations fail ("Step 3" displays the same count each time).
    - If I turn off connection pooling (by adding "Pooling=false" to the connection string), the trigger runs on every iteration (i.e. "Step 3" displays an ever-incrementing record count).
    - Regardless of whether it works or fails, the deletion in step 1 does take place (confirmed by "Step 2" displaying a count of zero).
    - I added the waits after the non-query calls to see if that made a difference, but it doesn't. I can change these to 10 seconds or more and it will have no effect on the issue.
    The "Execute non-query" method uses code along these lines:-
    using (var conn = new OracleConnection(ConnString))
    conn.Open();
    using (var cmd = conn.CreateCommand())
    cmd.CommandText = sql;
    cmd.CommandType = CommandType.Text;
    result = cmd.ExecuteNonQuery();
    conn.Close();
    return result;
    While the "Execute reader" method looks like this:-
    var conn = new OracleConnection(ConnString);
    conn.Open();
    var cmd = conn.CreateCommand();
    cmd.CommandText = sql;
    cmd.CommandType = CommandType.Text;
    return cmd.ExecuteReader(CommandBehavior.CloseConnection);
    The calling code in the for loop, wraps the returned reader in a using clause like this:-
    using (var reader = ExecuteReader("<sql>"))
    This will dispose of the reader, which will in turn close/dispose the connection (due to the CommandBehavior.CloseConnection parameter passed to ExecuteReader).
    Interestingly, if the reader isn't disposed of then the problem becomes more intermittent (the trigger will fire perhaps 25% of the time). This is what's happening in our unit test harness. By ensuring the reader/connection is closed and disposed (which common sense would say should improve matters), the trigger only fires on the very first iteration of the loop. The plot thickens.

  • If I change my Apple password as a security precaution because my phone has been lost and switched off, will Find My iPhone still function? That is, will it be able to connect to iCloud, as the password on the phone is still the old one.

    My phone is lost – not stolen, and may still be returned. Not long after I lost it, it was switched off, or died (it was at about 6%), so I can't find it using Find My iPhone. I realized I should change all my important passwords, as the passcode can be compromised by various methods. One password I changed was for my Apple account.
    Now I'm realizing that I shouldn't have done that. What if the phone comes back online – but my AppleID password has changed; will the phone still be able to connect to Apple with the old credentials so my message is sent?
    When I realized this I tried to go back to my old password – but Apple won't let me use one I used in the last year. Any way around this?

    when you change your Apple iD it's pretty much changing the visual email, i guess that doesn't really answer your question, yes you keep your purchases, it just changes the log-in email and email where newsletters , etc. go to.

  • HT201442 my phone was in the middle of updating its software and then suddenly switched off and ive tried to reset it but the itunes symbol appears, I've tried to connect it to itunes but it says it needs to be restored as it is on repair mode.

    My Iphone4S was in the middle of updating its latest software then suddenly it switched off, it hasnt turned on since and I've tried to reset it but only the apple sign appears then the plug into ittnes symbol. I've tried to plug it into itunes but it says my phone is on repair mode which is why it needs to be restored first in order to connect to itunes. I have also then tried to restore it but the error sign appears.

    http://support.apple.com/kb/HT1808

  • When I was talking on phone, suddenly the phone was switched off. i tried to switch it on but it gave the message....connect to itunes for set up.  when I connected it to itunes...it gave the message, itunes can not read data from this iphone, restore it

    when I was talking on phone, suddenly the phone was switched off.
    i tried to switch it on but it gave the message....connect to itunes for set up.
    when I connected it to itunes...it gave the message, itunes can not read data from this iphone, restore it to factory settings. It also said while restoring ypu will lose all media data but you can restore the contacts.
    I restored the factory settings....the phone was on recovery mode...it was verified by itunes and all that..but in the end it again said that iphone has some problem and can not function right now.
    after that when ever i connect it with itunes, it gives the message, it can not activate the iphone further, try again later or contact customer service.
    What to do now?????? Customer service people say..it is hardware problem

    If it's a hardware problem, then the phone will need to be replaced.
    There is no magic that can fix a hardware problem.

  • How to connect two iviews in Visual Composer 2004s?

    Hi,
       I am trying a sample application (Bank Details) in Visual Composer(Netweaver 2004s) but getting a warning as "Event EVT1 is declared but cannot be raised". Actually I want to show the GetList values in the first iview & GetDetil values in the second iview. I have done everything for the two iviews, but not able to connect the two iviews.I tried to drag from Signal Out of the first iview to Signal In of the second iview, but not able to connect them.
    Hope someone can suggest a solution.
    Regards
    Shemim

    Hi
    Sorry for the mistake.
    Please refer this:-
    Re: How can I transfer data form one data store to another iview /dats store
    Re: Popup communicating with multiple iviews (layers)
    Regards
    Navneet
    null
    Message was edited by:
            Navneet Giria

  • IPod Nano (4th Generation) switches on when connected to USB power - shows Menu & hangs (unresponsive to click wheel) - deems off after 5-sec - Switches off after disconnecting from USB Power - syncs with iTunes - Tried 5R's - Problem still persists

    1. The iPod Nano (4th Generation - 8GB) switches on, only when connected to USB power by showing apple logo and displays Menu options thereafter..
    2. However, I can not access Menu as it is unresponsive to click wheel. As a result it is inaccessible to any further use, 
    3. NOTE: it displays "Battery Fully charged" icon on the screen without any "Lock" icon.
    4. After  5-sec to 10-secs the screen deems off.. i.e. goes to sleep mode.. And thereafter would probably remain like that (sleeeping) for eternity!!!!
    5. It Switches off after WITHOUT DISPLAYING any Apple Logo immediately after disconnecting from USB Power.
    6. In other words, it can be switched on only through USB power in spite of battery being fully charged.
    7. Interestingly, it syncs with iTunes. It is recognised in iTunes (Latest version 11+).. Displays on screen all commands Like.. syncronising, connecting, connected,
    8. Allows to add Music, videos like a normal ipod & displays all status information in iTunes.
    9. Read Trobleshooting & Tried all 5R's. Registered, Resetted, updated & Restored to iOS 1.0.2
    10. It is now displaying to select Language in place of Menu options, with no access through click wheel, centre button whatsoever... Problem still persists
    KINDLY GUIDE ME THE SOLUTION. APPRECIATE YOUR RESPONSE in advance...

    "I get the feeling that this is a software issue that could probably be solved quite easily"
    Since you have already tried all the normal troubleshooting solutions, take the iPod to your nearest Apple Store for a *proper diagnosis.* The staff there will be able to confirm if your problem is software or hardware _*at no cost to you.*_
    !http://i50.tinypic.com/izvwo1.gif!

  • When I connect to wi fi does my 3G automatically switch off. As I seem to be using a lot of my data when using wi fi at home

    When I connect to wi to, does 3G automatically switch off my iphone4s as I seem to be using a lot of data even when using wi fi at home ?? Thank you

    Hi,
    As far as I know, when you have a WiFi-connection all data will go through WiFi and therefor will NOT use your 3G data.
    Kind regards,
    Hugo

  • How to switch off laptop screen when you connect external LCD?

    Hello, being new to Mac I'd like to ask if it is possible to completely switch off the laptop screen when you connect an external LCD screen and use it as your main desktop. My MacBook Pro does that automatically when I launch a full screen game, say World of Warcraft, but I would like to be able to do it manually.

    If you have it connected to a keyboard and mouse, you just shut the lid and use it that way. Of course, I'd be curious why you wouldn't want to use the screen. Having two screens can be extremely useful. The only problem with it is that then you may miss it when you are away from your second screen!

  • HT201210 on my iPad I get an image of the USB connection and an arrow pointing to the itunes icon for a few seconds then it switches off.  connected  to itunes via USB get a message that itunes has detected an ipad in recovery mode must restore when i do

    When I havent got my ipad connected to a power supply I get an image on my ipad of the usb cable with an arrow pointing to a itunes icon and no matter what you try and do iyt stays on that for a few seconds and then switches off the ipad, connecting it through usb into itunes on my PC (XP) this image says on the screen but I get a message on itunes saying itunes has detected an ipad in recovery mode and mneeds to be restored - when I fire off the restore through itunes after a few minutes it comes back and says it cannot restore and give an error message 1603.  I have also repeated the process through my wife's laptop (Vista) and get the same situation -it is an 32GB Ipad 3 purchased last November -  any ideas ?

    Try and turn off iPad/iPod and proceed to step 3 of Recovery Mode.
    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

Maybe you are looking for

  • QM in Procurement: Automatic Certificate Generation

    I'm trying to learn QM in Procurment on the fly. I have a customer with a requirement to track certficates related to PO line items. The vendor sends products to a independent lab, who issues the cert. This is something between a PO confirmation and

  • Word Document generation using Perl programming on Windows Server 2003 R2

    Hello, Our application generates word document based on pre-defined template on Windows Server 2003 using Perl Scripting. Configuration data is fetched from the database and document is populated based on the template. Sections in the document are id

  • Batch change to forms source code in 10g

    Hi, this may seem like a strange request but here goes. I am currently looking at upgrading my forms from 6i to 10g. I have a couple of hundred forms in all and many of them use the HOST command to create word files on the client. For this to work in

  • Question about K9N6SGM-V?

    Hello, this is my first post here & my english is not very good So.. I have this mobo K9N6SGM-V and i want to buy new VGA like Radeon Sapphire 3850/3870. My question is: can i run it with that mobo? I know that provides only PCI EX x8, but i can upgr

  • FlexConnect AP Deployment- Clients having issues with DHCP

    I have 7 2602I access points deployed and operating in FlexConnect.  We are doing both local switching and local authentication.  These AP's are in a FlexConnect Group with local Radius server defined as the primary server in the Flex Group.  This ha