Replication agent doesn´t free memory after expensive operation

Our environment is made up of master node and 17 subscriber.
We have issued a delete action implying 1000000 rows. During the deletion, normal CPU, memory and swap usage was observed. Later, CPU usage has recovered while memory and swap has not. The most memory consumming process was timestenrep with 9Gb.
Deletion has been correctly replicated to all nodes. However, the replication agent needed to be restarted manually in order to recover memory/swap.
Why the replication agent did not recover on its own and free memory?
Definition in sys.odbc.ini
Datastore=/data/db/xxxx
PermSize=4000
tempSize=250
DurableCommits=0
TypeMode=1
LogFileSize=64
LogBuffSize=65536
MemoryLock=3
LockWait=10
PrivateCommands=1
Authenticate=0
DatabaseCharacterSet=WE8ISO8859P15
ConnectionCharacterSet=WE8ISO8859P15
CkptFrequency=300
CkptLogVolume=128
Connections=90
TimesTen Version installed (ttVersion command)
TimesTen Release 7.0.5.0.0 (64 bit Solaris) (ivpnges2tt70:17000) 2008-04-04T01:19:41Z
Instance admin: root
Instance home directory: /opt/TimesTen/ivpnges2tt70
Daemon home directory: /var/TimesTen/ivpnges2tt70
Regards,
Matú

In a replicated environment, executing very large transactions (such as deleting 1M rows in a single transaction) is a very hazardous thing to do and is something you should avoid at all costs. It can cause a number of serious problems. Transactions should be limited to no more than a few thousand operations. If you need to empty a table, use TRUNCATE instead. This will execute far more quickly, generate less log and will not cause problems for replication. If you cannot use TRUNCATE then you should break the DELETE up into multiple smaller transactions. For example if you wish to delete all row where 'startdate' is less than some value and this is likely to result in a large number of deletions then you could repeatedly execute the following sequence:
DELETE FIRST 1000 FROM sometable WHERE startdate < :someval;
COMMIT;
and just keep doing this until the 'rows affected' value is zero.
The same applies to large inserts and updates.
The memory usage behaviour of the replication daemon, while perhaps not ideal, is correct and as expected. When you delete 1M rows in a single transaction the replication daemon has to allocate memory (via malloc) for 17x copies (in your case) of the transaction data. That is probably a lot of memory. Once the transaction has been replicated to all 17 subscribers. This memory is moved to an internal 'free' list for re-use but is not returned to the O/S until the replication agent is terminated. Since it such a bad idea to execute these large transactions this behaviour is generally not a problem.
Chris

Similar Messages

  • Free memory after using GetRS232ErrorString() to avoid memory leak?

    Hello,
    Is it necessary to free memory after using function GetRS232ErrorString() to avoid memory leak?
    Example 1:
    int main();
    char *strError=NULL;
    strError = GetRS232ErrorString(55); /* just an example for error message */
    free(strError ); /* Do I need to free this pointer? */
    Example 2:
    int main();
    MessagePopup ("Error", GetRS232ErrorString(55)); ; /* Will I get a memory leak with this function call? */
    BR
    Frank

    It's a pity that the documentation is indeed so poor in this case, but testing shows that it always returns the same pointer, no matter the error code, so it seems to be using an internal buffer and you are not supposed to free the string (but need to copy it before the next call to GetRS232ErrorString if you need to keep the text). It does however return a different pointer for every thread, so atl least it seems to be thread safe.
    Cheers, Marcel 

  • Ipod classic doesn't free memory even if I delete music so I cannot download any new content

    ipod classic doesn't free memory even if I delete music so I cannot download any new content

    When you connect the iPod to iTunes, in the summary page, what do you see in the Capacity bar?
    How much is used for Audio, Others, video?
    Most likely you have high usage of others, which maybe caused by incomplete sync Operation and the iPod need to be Restored.

  • Free memory after TDMS logging

    Hi, how can I free memory after reading TDMS files. I haev a very big TDMS file that contains 17000000 digital samples, after reading the data and graphing it I would like to delete it from memory because it is no longer needed. I have noticed I should close LabVIEW to free that space. Is there any way to free that memory after reading and plotting?
    Thanks

    LabVIEW wil take care of the memory management. Thus, there is no explicit way for you to free memory in LabVIEW. In fact, I don't think you should do that by yourself. LabVIEW has quite good memory optimation strategy and it wll track all the memory usage in your VI and reuse/free memory when there is no reference to it. As for TDMS, once the data is read out from the TDMS VIs, there will be no additional data copy inside.

  • Free memory after Function call

    Hi,
    Is there a possibility to free the memory after a call to a function.
    The call is only used for display, not to get data.
    (For example - CALL FUNCTION 'FKK_BUPA_DISPLAY')
    Our z-transaction delivers a way of navigating through different ISU objects (coming from an ALV list)
    The user first selects a case from this list and then he receives the details. From the details screen we then call these standard function to display the ISU objects.
    During the day memory usage is getting build up and it's only released when the user leaves our z-transaction.
    Ideally the memory should be released when the user returns to the list and not at the end of the day when he leaves the transaction.
    I've tried with FREE MEMORY but this doesn't help.
    Greetings,
    Ivo

    Hi Ivo,
    sounds like a "enldess transaction" pattern.
    Take multiple memory snapshots (OK-CODE /HMUSA) in your application and compare
    these in transaction S_MEMORY_INSPECTOR in order to find out if there is a memory
    leak. The comparison will show you where memory growth comes from... maybe this gives
    you an idea what could be deleted between the steps of your endless transaction.
    Kind regards,
    Hermann

  • IOS 5: iPod Touch 4g says no Free memory After Sync

    My iPod 4g, iOS 5, 8GB says After Sync no Free memory. Before the Sync there was 1gb Free Memory.... Even if i Delete Apps, the iPod says 0 Byte Free memory...

    It was in the category "Other". Now i Have done a Hard reset(i think): i have pressed the Lock Button 5sec, then Lock and home Button 10 sec together. Then it Took a few minutes. In this minutes there was the Apple Logo , Like when the iPod Starts up. After that, everything was okay and i had  again 1gb Free memory :)

  • Regfree() doesn't free memory in Solaris 8

    Here's a 21-line program that demonstrates the prolbem, which is a memory
    leak in the regcomp()/regfree() routines. This works without
    problem in Solaris 7 (and Linux and BSDi for that matter):
    <p>
    <pre>
    #include <sys/types.h>
    #include <regex.h>
    #include <stdio.h>
    int main()
    regex_t re;
    int errcode;
    char buf[256];
    for (;;) {
    errcode = regcomp(&re, "X", 0);
    if (errcode != 0) {
    regerror(errcode, &re, buf, sizeof(buf));
    printf("regcomp() error:'%s'\n", buf);
    return 1;
    regfree(&re);
    </pre>
    <p>
    This will use 100 Mbyte or so every few seconds on Solaris. Maybe I missed
    a fix in a patch, but a search for regcomp or regfree returned nothing.
    <p>
    I've worked around this in our application, but my boss thought it would be
    a good idea to submit a bug report. Sun's FAQ says to report bugs in the
    forum, so here it is. This isn't an Intel issue (at least, I've only
    tested it on Sparc), but there isn't a generic developer forum, and the
    webmaster at Sun said to post it here.

    Kalpesh
    if you're reading this it would be @&$%#&$( useful to folks in this list to actually BE ABLE TO REFER TO KNOWN SUN BUGS and to be able to report their own.
    I couldn't log in to the sunsolve site - do I need a special password to be able to view bug status? (I agree I can find patches there, but
    not being able to view/report bugs as a user under the free license program is ridiculous).
    How can we get resolution on this?

  • IPad 2 fills up its 4GBs Free Memory After Switching On

    Hi Forum
    odd one. My Ipad2 is always full. except when i turn it off, and on, it reveals 4.2GBs free. This then, while its on and left on for days , seems ot fill up, and when i come to add something to it, or use it, its full. That free 4.2Gbs has been filled. i havent used it, addded to it, downloaded to it, uploaded to theicloudaccojt connected to it...?!?!?!
    why does it fill up?
    and nothing in 'usage' shows anything too large either?!?!?!

    Does the 4.2GB free space you refer to come from Settings>General>About>Available?
    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    How to Remove “Other” Data from iPhone, iPad and iPod Touch
    http://www.igeeksblog.com/how-to-remove-other-data-from-iphone/
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6/7, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
    What is “Other” and What Can I Do About It?
    https://discussions.apple.com/docs/DOC-5142
    iPhone or iPad Ran Out of Storage Space? Here’s How to Make Space Available Quickly
    http://osxdaily.com/2012/06/02/iphone-ipad-ran-out-of-available-storage-space-ho w-to-fix-quick/
    6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch
    http://osxdaily.com/2012/04/24/6-tips-free-up-storage-space-ipad-iphone-ipod-tou ch/
    Also,
    How to Clear Message/iMessage Cache on iPhone & iPad And Reclaim Lots of Free Space
    http://www.igeeksblog.com/how-to-clear-message-imessage-cache-on-iphone-ipad/
    What is Stored in iCloud and What is Not
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/what-is-s tored-in-icloud
     Cheers, Tom

  • When I delete files on a USB, it doesn't free up memory on the stik. I find I have to empty the entire stik, use Disk Utility to 'erase' it, then transfer back the files I removed to free up all the space on the stik. Is this the best practice?

    It frustrates me that if I delete a file from a USB, it doesn't free up the memory on the stik. I have been removing all the files from the stik, opening Disk Utility and erasing the empty USB. That frees up the entire stik. Then I have been transferring back the files I removed from the stik. The result is that I have memory available to use again. It seems to me this is an unnecessarily complicated and time consuming way to get the result. Is there a shorter way to do this?

    Hello Horst,
    Thank you for the question.  Have you been emptying your trash after deleting the items?  For the item to be removed from your USB device, you will need to empty the trash on your MacBook Pro after you delete the items, as described in the featured discussion below.  Your USB device will still need to be connected when you do this:
    Choose Empty Trash from the Finder menu. Unlike Windows, the trash needs to be emptied manually for any drive other than one mounted through the network.
    Can't delete off my USB drive
    https://discussions.apple.com/thread/1946841
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • HP Laserjet p1102w - after firmware upgrade / Smart Install update - down to 1MB free memory

    Hello,
    I have a Laserjet p1102w running off a laptop with Windows 7 64-bit. Just bought the printer this month.
    After updating the firmware to 20120814 version and updating the SmartInstall update utility for the 20120814 version as well, I am now down to 1 MB free memory (out of 8MB originally). [Another LJ p1102w updated prior to these updates has 3MB free memory.]
    Because I have 1MB free memory, the printer is almost a brick. It can print simple text based pages - however, printing any page with a graphic or a PDF file will cause the printer to take forever to receive data - essentially preventing printing a page on  my new printer (while printing the same page instantaneously on my older nonupdated p1102w).
    Is there any way to fix this problem, given there is no memory upgrade option? Otherwise, this printer is a brick.
    Thank you in advance for a reply - especially from HP.

    Hi cyskim,
    Did you tried turning the printer off and on after updating the firmware? This should clear its memory, including any memory may affected during the firmware upgrade proccess .
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • My IPad doesn't show the right amount of free memory

    I purchased some books from Ibook store but when tried to download I got the message not enough space. Before start downloading I had 4 GB of free memory. I erase all the books and after that the amount of memory hasn't returned to the previous level. It has happened again and after some days the issue has been solved without doing something. But now the problem insists.

    iPhone, iPad, and iPod: Understanding capacity
    http://support.apple.com/kb/ht1867
    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    How to Remove “Other” Data from iPhone, iPad and iPod Touch
    http://www.igeeksblog.com/how-to-remove-other-data-from-iphone/
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6/7, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
    What is “Other” and What Can I Do About It?
    https://discussions.apple.com/docs/DOC-5142
    iPhone or iPad Ran Out of Storage Space? Here’s How to Make Space Available Quickly
    http://osxdaily.com/2012/06/02/iphone-ipad-ran-out-of-available-storage-space-ho w-to-fix-quick/
    6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch
    http://osxdaily.com/2012/04/24/6-tips-free-up-storage-space-ipad-iphone-ipod-tou ch/
    Also,
    How to Clear Message/iMessage Cache on iPhone & iPad And Reclaim Lots of Free Space
    http://www.igeeksblog.com/how-to-clear-message-imessage-cache-on-iphone-ipad/
    What is Stored in iCloud and What is Not
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/what-is-s tored-in-icloud
     Cheers, Tom

  • Sony Xperia E C1504 - Low Phone memory - only 54 MB free Memory on phone after update

    I am using Sony Xperia E c1504 phone and facing memory problem. The downloaded applications are already moved to SD card and some of the inbuilt applications on phone are also moved on SD Card. Now there is no application which I can move on SD card by the simple way given in phone. Also I regularly cleans the cache by cleaner. All my photos are saved to SD card, no videos are taken so no problem of video memory. I have moved every possible element on SD card.
    In this condition when I downloaded the new update of phone, it installed some more new applications like Google books, google movies, google games, google magazines etc. on my phone which have no option to move to SD Card. So my phone memory is very low. I uninstalled one inbuilt application Cricbuzz but still my phone is showing only 54 MB free phone memory. Now I can't update some applications due to low space on phone though I have 1.79 GB on internal storage free and 14.73 GB on SD card free memory.
    Now how to manage these applications? Is there any way so that I can move some more inbuilt applications to SD card?
    And what is rooting? please explain. Can I move applications on phone to SD card by rooting? If yes how?
    Is there any other way to solve this problem?
    I am new to android technology. Please help.

    http://forum.xda-developers.com/xperia-j-e/general/how-to-root-sony-xperia-e-c1504-c1505-t2683278
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Macbook pro runs slowly even with tons of free memory??

    Hi,
    I've seriously tried to follow everyone's advice on how to keep your Macbook running efficiently, even so I have serious problems with it. For one thing, Microsoft Office programs run more slowly on my Macbook Pro than they would on a PC from 1995. If I open Word or Excel, it takes at least 6 minutes to load, and then functions ok (most of the time) but if I try to save a file, graphics wig out and typing the name of the file, it's like each letter is processed 3 seconds at a time after taking a whole minute to understand what I'm even typing in the first place. I use Google Chrome (no, safari doesn't run any faster) and I sometimes have issues with that. Finder also! It takes so long to click around my folders because my computer responds so slowly. It also sometimes wigs out when I try to jump between desktop screens. And actually even the mouse cursor decides not to respond for a few seconds.
    I have 411 GB (out of 500) of free memory. I don't run multiple apps at once--usually I will run Chrome and Word, and then if I absolutely must, also Excel or Powerpoint, but I really try to use at most 3 at a time, and then I still have these severe problems. Sometimes I only have Word open and I still have these problems. My desktop is not cluttered; I clean it out regularly so I have like 5 files on there, pretty much all screenshots. My downloads folder does not have a billion files in it; it has accumulated some but I do make an effort to clean it regularly so there really isn't much. I don't have tons of music or movies or pictures or anything on my computer, and I also clean out my deleted files in the trash regularly.
    That being said, I'm not an expert on computer maintenance (because I always seem to have these issues), so maybe there are other things I haven't tried that people could recommend? I'm pretty sure that my RAM or CPU (I don't know the difference because I don't know much about computers) are being overexhausted, because sometimes I can actually hear the fan going off because my Mac is trying hard to process stuff (this happened 5 minutes ago when I had nothing but Chrome opened but I restarted and now it's quiet again). But I don't know how to check RAM or CPU usage on my Mac? And since I don't run that many apps anyway I don't know how to resolve this problem.
    Is there anything else I can try? Some other folders I should clean out? If so, can you please explain where to find these folders on OS X Yosemite? Because I used to be a  person, but I bought this Macbook Pro a year ago and I still have trouble navigating. Or if you think I should take this into the apple store and have it looked at, please let me know.
    Thanks in advance. \

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Not able to start the Connection Digital Networking Replication Agent Service

    Hi All,
         I am getting the following alert through RTMT, when i tried to start the service in Unity Connection Serviceability, it doesn't start.   Unity Connection 8.5.1.  It is still in the stopped status, Although service is not important, however it is pushing a lot of rtmt alert.   Could you please help me how to start this Connection Digital Networking Replication Agent Service. 
    Service operational status is DOWN. Connection Digital Networking Replication Agent.
    Thanks
    Barry

    Thanks for Nadeem and Aokanlawon, for the quick reply.
    1.  You are right  i got only one cluster i understand its not working,  However howcome this service was started in pub UC and was working. I will disable anyway now as i got only one cluster. It all started when I started to fix the following alerts which was pushed by sub Unity Connections(Branchsite)
    Failed to retrieve DbSpace usage information when running the "Monitor the Unity Connection databases" SysAgent task.
    This alert started coming after there was a network connection drop between HQ cucm and the branch sub UC, after the drop, all ports disconnected between these two servers, services deactivated in Sub UC, after the network connection back again, ports connected back and the most of the services activated.  However the following services were not in the running state in Sub UC.   I found these information from the sysagent trace log.  I thought to fix this error  is to start the Connection Database Proxy in Sub UC.  However this has stopped the following service 'Connection' Database Proxy' and 'Connection Digital Network Replication Agent' in Pub UC.  I managed to start Connection Database Proxy in Pub UC, however Connection Digital Network Replication agent is now in deactivated status.
    Critical Services
    connection exchange notification web service
    connection mailbox sync
    connection message transfer agent
    connection notifier
    Optional services
    Connection Database Proxy
    Connection Digital Networking Replication Agent
    Connection Speechview processor
    2. How do I stop the alert from sub UC
    Failed to retrieve DbSpace usage information when running the "Monitor the Unity Connection databases" SysAgent task.
    Thanks

  • Memory gates checking failed because the free memory is less than 5% of total memory

    ·         Business
    Goal: Achieve a stable environment
    ·         Repro
    Steps: n/a
    ·         Expected
    Results: I expect the MSCRM Async services to use a relatively static amount of RAM
    ·         Actual
    Results: Over the weekend, the memory hit critical mass and CRM failed
    ·         Environment:
     Windows Server 2008, SQL Server 2008, CRM 2013 On Premise - both on the same box, Email Router is installed on the same box. We have not yet applied either of the two new UR for 2013.
    I'm currently experiencing a memory leak in our production environment. I will fill out the details shortly.
    Here's the error:
    Log Name:      Application
    Source:        System.ServiceModel 4.0.0.0
    Date:          4/20/2014 11:39:14 PM
    Event ID:      3
    Task Category: WebHost
    Level:         Error
    Keywords:      Classic
    User:          NETWORK SERVICE
    Computer:      server.domain.com
    Description:
    WebHost failed to process a request.
    Sender Information: System.ServiceModel.ServiceHostingEnvironment+HostingManager/58366981
    Exception: System.ServiceModel.ServiceActivationException: The service '/VisualWorkplace/XRMServices/2011/Organization.svc' cannot be activated due to an exception during compilation. 
    The exception message is:Memory gates checking failed because the free memory (1240145920 bytes) is less than
    5% of total memory.  As a result, the service will not be available for incoming requests.  To resolve this, either reduce the load on the machine or adjust the value of minFreeMemoryPercentageToActivateService on the serviceHostingEnvironment config
    element.. ---> System.InsufficientMemoryException: Memory gates checking failed because the free memory (1240145920 bytes) is less than 5% of total memory.  As a result, the service will not be available for incoming requests.  To resolve
    this, either reduce the load on the machine or adjust the value of minFreeMemoryPercentageToActivateService on the serviceHostingEnvironment config element.
       at System.ServiceModel.Activation.ServiceMemoryGates.Check(Int32 minFreeMemoryPercentage, Boolean throwOnLowMemory, UInt64& availableMemoryBytes)
       at System.ServiceModel.ServiceHostingEnvironment.HostingManager.CheckMemoryCloseIdleServices(EventTraceActivity eventTraceActivity)
       at System.ServiceModel.ServiceHostingEnvironment.HostingManager.EnsureServiceAvailable(String normalizedVirtualPath, EventTraceActivity eventTraceActivity)
    We just recently increased the available memory from 8GB to 24GB to help ensure that there is enough memory. This error never happened on CRM v4. According to the resource monitor, SQL is only reserving 20.7GB of RAM and there is 694MB of RAM in Standby.
    The main Async service is using 660MB and the maintenance Async service is using 265MB.
    To resolve the issue temporarily, I restarted both Async services this morning. Shortly after everything came back, they were holding fairly steady around 350MB and 200MB. It's been six hours since then.
    The last time I spoke with Microsoft about a similar problem, they suggested increasing the amount of RAM.

    It became more and more of a problem. It was impacting the users in a more subtle way at first. You couldn't configure the CRM for Outlook client. After a while, they couldn't use CRM in Outlook at all and users reporting not being able to complete phone
    call activities. I opened a ticket with MS and they suggested the same as Wilson Lou did. The organization error had nothing to do with the creep on the async services usage of RAM. It was indeed caused by SQL stealing all of the memory. Limiting the max usage
    to 24GB RAM has resolved that error. 
    My Async processes are still using a LOT of RAM, but now that I have more than enough RAM, it doesn't seem to be a problem anymore. They are currently using about 700MB RAM each.
    Also, I have upgraded to SP1, UR2.
    Eric Hula - CRM Administrator

Maybe you are looking for

  • 5800 radio problem

    i have firmware 40.0.005 installed on my 5800. While playing radio all of a sudden radio stops responding. I can kill the radio application but have to restart the phone everytime. Otherwise radio doesnot work. I have tried different headphones but t

  • Prime LMS 4.2 installation with solaris 10 volume manager

    Hello Is it possible to use Solaris Volume Manager for disk mirroring in prime LMS 4.2 installation over sparc arquitecture? This is intended for having hard disk redundancy support. Is there any documented reference? O.S. Solaris 10 08/11 Cisco prim

  • TypeError: beforeNode has no properties-MX query builder

    Hi everybody Hope i can find some support in here.sad that this bundle is discontinued. Anyways,am working on Classifieds Ad tutorial found here: http://www.interaktonline.com/Documentation/MXKollection/077000_tutorialclassifiedadssite. htm Am stuck

  • Can't Put Some E-mails In Selected Mailbox

    Some e-mails won't go where I tell them. I see an item named "It" in Inbox and want to move It to another mailbox, for instance, Man. Man is a sub-mailbox of Person. I drag It to Man. The title Man does not highlight and It cannot be dropped there. T

  • Flash player 10 Not working with firefox Please Help

    I have posted here before and for some reason flash player is still not working.  I haven't been able to get on any of my fb games because of this.  When I go to play any games it loads the pic then it fades to a white screen, when Ieft click on the