Messages Taking Ages to Post in Specific Skype Gro...

So as the title suggests, I've having trouble with one specific Skype group. My messages are going through but it changes constantly from instantly being sent to the other participents to taking anywhere from 10 to up to an hour to send (which when you're trying to have a conversation, this is a major issue).
Every other Skype chat I'm in does not have this issue. I am able to send instant messages to those groups (who are larger in terms of how many participents are in them) yet this one (that has 4 including me) takes ages to send.
Anyone got any ideas how I can fix it? It's rather irritating and I've tried reinstalling my Skype, I've tried everything and its not my internet as is no disruptions to my other online experiences (videos load fine, etc, etc).

So as the title suggests, I've having trouble with one specific Skype group. My messages are going through but it changes constantly from instantly being sent to the other participents to taking anywhere from 10 to up to an hour to send (which when you're trying to have a conversation, this is a major issue).
Every other Skype chat I'm in does not have this issue. I am able to send instant messages to those groups (who are larger in terms of how many participents are in them) yet this one (that has 4 including me) takes ages to send.
Anyone got any ideas how I can fix it? It's rather irritating and I've tried reinstalling my Skype, I've tried everything and its not my internet as is no disruptions to my other online experiences (videos load fine, etc, etc).

Similar Messages

  • Insert select statement is taking ages

    Sybase version: Adaptive Server Enterprise/12.5.4/EBF 15432 ESD#8/P/Sun_svr4/OS 5.8/ase1254/2105/64-bit/FBO/Sat Mar 22 14:38:37 2008
    Hi guyz,
    I have a question about the performance of a statement that is very slow and I'd like to have you input.
    I have the SQL statement below that is taking ages to execute and I can't find out how to imporve it
    insert SST_TMP_M_TYPE select M_TYPE from MKT_OP_DBF M join TRN_HDR_DBF T on M.M_ORIGIN_NB=T.M_NB where T.M_LTI_NB=@Nson_lti
    @Nson_lti is the same datatype as T.M_LTI_NB
    M.M_ORIGIN_NB=T.M_NB have the same datatype
    TRN_HDR_DBF has 1424951 rows and indexes on M_LTI_NB and M_NB
    table MKT_OP_DBF has 870305 rows
    table MKT_OP_DBF has an index on M_ORIGIN_NB column
    Statistics for index:                   "MKT_OP_ND7" (nonclustered)
    Index column list:                      "M_ORIGIN_NB"
         Leaf count:                        3087
         Empty leaf page count:             0
         Data page CR count:                410256.0000000000000000
         Index page CR count:               566.0000000000000000
         Data row CR count:                 467979.0000000000000000
         First extent leaf pages:           0
         Leaf row size:                     12.1161512343373872
         Index height:                      2
    The representaion of M_ORIGIN_NB is
    Statistics for column:                  "M_ORIGIN_NB"
    Last update of column statistics:       Mar  9 2015 10:48:57:420AM
         Range cell density:                0.0000034460903826
         Total density:                     0.0053334921767125
         Range selectivity:                 default used (0.33)
         In between selectivity:            default used (0.25)
    Histogram for column:                   "M_ORIGIN_NB"
    Column datatype:                        numeric(10,0)
    Requested step count:                   20
    Actual step count:                      20
         Step     Weight                    Value
            1     0.00000000        <       0
            2     0.07300889        =       0
            3     0.05263098       <=       5025190
            4     0.05263098       <=       9202496
            5     0.05263098       <=       12664456
            6     0.05263098       <=       13129478
            7     0.05263098       <=       13698564
            8     0.05263098       <=       14735554
            9     0.05263098       <=       15168461
           10     0.05263098       <=       15562067
           11     0.05263098       <=       16452862
           12     0.05263098       <=       16909265
           13     0.05263212       <=       17251573
           14     0.05263098       <=       18009609
           15     0.05263098       <=       18207523
           16     0.05263098       <=       18404113
           17     0.05263098       <=       18588398
           18     0.05263098       <=       18793585
           19     0.05263098       <=       18998992
           20     0.03226340       <=       19574408
    If I look at the showplan, I can see indexes on TRN_HDR_DBF are used but now the one on MKT_OP_DBF
    QUERY PLAN FOR STATEMENT 16 (at line 35).
        STEP 1
            The type of query is INSERT.
            The update mode is direct.
            FROM TABLE
                MKT_OP_DBF
                M
            Nested iteration.
            Table Scan.
            Forward scan.
            Positioning at start of table.
            Using I/O Size 32 Kbytes for data pages.
            With LRU Buffer Replacement Strategy for data pages.
            FROM TABLE
                TRN_HDR_DBF
                T
            Nested iteration.
            Index : TRN_HDR_NDX_NB
            Forward scan.
            Positioning by key.
            Keys are:
                M_NB  ASC
            Using I/O Size 4 Kbytes for index leaf pages.
            With LRU Buffer Replacement Strategy for index leaf pages.
            Using I/O Size 4 Kbytes for data pages.
            With LRU Buffer Replacement Strategy for data pages.
            TO TABLE
                SST_TMP_M_TYPE
            Using I/O Size 4 Kbytes for data pages.
    I was expecting the query to use the index also on MKT_OP_DBF
    Thanks for your advices
    Simon

    The total density number for the MKT_OP_DBF.M_ORIGIN_NB column don't look very good:
         Range cell density:           0.0000034460903826
         Total density:                0.0053334921767125
    Notice the total density value is 3 magnitudes larger than the range density ... which can indicate a largish number of duplicates.  (NOTE: This wide difference between range cell and total density can be referred to as 'skew' - more on this later.)
    Do some M_ORIGIN_NB values have a large number of duplicates?  What does the following query return:
    =====================
    select top 30 M_ORIGIN_NB, count(*)
    from   MKT_OP_DBF
    group by M_ORIGIN_NB
    order by 2 desc, 1
    =====================
    The total density can be used to estimate the number of rows expected for a join (eg, TRN_HDR_DBF --> MKT_OP_DBF).  The largish total density number, when thrown into the optimizer's calculations, may be causing the optimizer to think that the volume of *possible* joins will be more expensive than a join in the opposite direction (MKT_OP_DBF --> TRN_HDR_DBF) which in turn means (as Jeff's pointed out) that you end up table scanning MKT_OP_DBF (as the outer table) because of no SARGs.
    From your description it sounds like you've got the necessary indexes to support a TRN_HDR_DBF --> MKT_OP_DBF join order. (Though it wouldn't hurt to see the complete output from sp_helpindex for both tables just to make sure we're on the same sheet of music.)
    Without more details (eg, complete stats for both tables, sp_help for both tables - if you decide to post these I'd recommend posting them as a *.txt attachment).
    I'm assuming you *know* that a join from TRN_NDR_DBF --> MKT_OP_DBF should be much quicker than what you're currently seeing.  If this is the case, I'd probably want to start with:
    =====================
    exec sp_modifystats MKT_OP_DBF, M_ORIGIN_NB, REMOVE_SKEW_FROM_DENSITY
    go
    exec sp_recompile MKT_OP_DBF
    go
    -- run your query again
    =====================
    By removing the skew from the total density (ie, set total density = range cell density = 0.00000344...) you're telling the optimizer that it can expect a much smaller number of joins for the join order of TRN_HDR_DBF --> MKT_OP_DBF ... and that may be enough for the optimizer to use TRN_HDR_DBF to drive the query.
    NOTE: If sp_modifystats/REMOVE_SKEW_FROM_DENSITY provides the desired join order, keep in mind that you'll need to re-issue this command after each update stats command that modifies the stats on the M_ORIGIN_NB column.  For example, modify your update stats maintenance job to issue sp_modifystats/REMOVE_SKEW_FROM_DENSITY for those special cases where you know it helps query performance.

  • Wine is taking ages to load

    Wine is taking ages to load in my machine. When i run winecfg, for exemple, it takes about 10min to show me a window.
    $ winecfg
    wine: creating configuration directory '~/.wine'...
    Failed to open the service control manager.
    -> hangs here for about 10min
    I already enabled (and disabled) the DRI module in xorg.conf, but it didint helped anything. Delete the .wine folder is not the solution either because im having this problem since i instaled wine (but i erased the folder, anyway).
    $ wine --version
    wine-0.9.30
    So ... any tips?
    Last edited by nozey (2007-02-06 22:42:57)

    I have the same problem as you. I installed wine through pacman and when I do 'winecfg' , I have to wait a really long time until it loads. I don't understand why this is so. In all of the other linux distributions that I tried, wine started up quite fast (gentoo, ubuntu, zenwalk, fedora core, etc) Could someone please tell us why it takes a long time for wine to open. Thank you.
    My WINE version is wine-0.9.33
    PS: I am not sure if this would be the cause, although I don't know why it would do anything but, I am running the 32 bit Arch Linux on a 64 bit machine, and this is because I need to use wine for a certain something that I have to do for my school, so I don't want to use Arch64. I know that it is possible to get wine to work in 64 bit Arch, but I have no clue how to update the package along with the rest of the system, and I can't seem to get a chroot environment to work.

  • My ipod touch is taking ages to back up, I dont know weather it is because I havent had my ipod plugged into my computer for a while or not... I dont know what to do... And i really need it to sinc so i can put new music on. Can anyone help?

    I really need your help. I'm 14.
    I really need to put new music on my iPod and I have plugged it into my computer and its taking ages to back-up and it wont let me do anything until its done. It will take over 3 hours if it keeps on going like this. Please help me. I don't know what's wrong with it.
    It might be because I haven't backed it up in a while but the reason I haven't is cause it takes this long! Anyone know what to do?
    Meg x <This is how I feel. (Confused and really upset)

    You can redownload most itunes purchase by the following. What you can redownload depends upon where you are located.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I have an issue installing photoshop CC trial, I currently have elements and wanted to see the differences before buying, when installing through the creative cloud app I get the error message  Exit Code: 7 Please see specific errors below for troubleshoo

    I have an issue installing photoshop CC trial, I currently have elements and wanted to see the differences before buying, when installing through the creative cloud app I get the error message  Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR: DW041 ...   -------------------------------------- Summary --------------------------------------   - 0 fatal error(s), 1 error(s)
    ERROR: DW041: INSTALLDIR Volume D:\ doesn't exist.  -------------------------------------------------------------------------------------  System Requirements  and it will not install, It says cant find the path D: im not sure why because as far as I can see its set to install on drive C: which is where I want it!

    Exit Code: 6, Exit Code: 7 Installation Errors - http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html for information on how to review your installation logs

  • URGENT!  Idoc Message Type FIDCC2 Not Posting CO Documents

    Hi Everyone,
    Our company is just about to begin using message type FIDCC2 to post entries through FB60/FB65 and FB50.  When you manually enter an entry through any of these transactions, an FI, CCA and PCA document are all created simultaneously.  However, when posting an identical entry through message type FIDCC2, only an FI document is created.  Why are the other documents not being created and is there something that I am missing from configuration or some sort of trigger that is supposed to create the other entries?  Please assist as this is extremely urgent.
    Thanks to all that can assist,
    Pete

    Hi Peter,
    Is your company uses any of the profitability segment fields as well? If so how are you updating this information on to the FIDCC2 idoc and how are you generating any COPA document simultaneously. I am in the same situation and my FIDCC2 idoc updates the FI, CO, PCA components but not the COPA. I am not sure where to populae the Profitability segments on the FIDCC2 type. Please share if you have same issues in your company.
    Regards
    Elphick

  • SDF LDB doesnt pick up documents posted in specific ledger

    Hello,
    I have created a new G/L account 999998 in Q43/700 system and enabled 'Clearing specific to ledger groups'. I created a new ledger C2 and assigned it to the ledger group C2. I have also made a posting to this new G/L account. The table FAGLBSIS contains the entries of the posted document 8900000002/cl99/2009. When I execute the program RFCLLIB02 (general ledger for Chile and peru) with the ledger as C2 in the selection screen, the document is not picked up. The event GET BKPF doesn't pick up this document.  I am using SDF as the LDB. I am not sure why the document is not picked up? Have I missed any setting? Please help !
    Best Regards,
    Vittalkesari G

    I got the root cause behind this problem. The SDF LDB cannot pick up the documents posted in specific non-leading ledger.
    The ledger selection of the SDF refers to the balances which can be displayed by the logical database.
    Therefore the ledger restriction is also stored in the area of the selection screen for the balances.
    Also the SDF only works from a document side for accounts which are u2018line itemu2019 or u2018open itemu2019 managed.

  • Reverse posting key specification is missing for posting key 80

    A FI document was wrongly posted with posting key "80" instead of 40. And now we are not able to reverse it. System is giving following error --
    "Reverse posting key specification is missing for posting key 80"
    Document posted as
    50     207200     CASH - MAIN-O.H.     762.00-
    40     410120     CONVEYANCE EXPENSES     702.00
    <b>80     402440     STAFF WELFARE EXPENS     60.00</b>
    Please suggest
    Thanks & Regards

    Hi,
    Go to OB41, select the posting key 80 and in the third tab "Other attributes" mention Reversal Posting key. Like you can observe for posting key 40, reversal key 50 would have been assigned.
    Pl assign points, if helpful.

  • Idoc Message Type FIDCC2 Not Posting CO Documents

    Hi Everyone,
    Our company is just about to begin using message type FIDCC2 to post entries through FB60/FB65 and FB50. When you manually enter an entry through any of these transactions, an FI, CCA and PCA document are all created simultaneously. However, when posting an identical entry through message type FIDCC2, only an FI document is created. Why are the other documents not being created and is there something that I am missing from configuration or some sort of trigger that is supposed to create the other entries? Please assist as this is extremely urgent.
    Thanks to all that can assist,
    Pete

    Hi Peter,
    Is your company uses any of the profitability segment fields as well? If so how are you updating this information on to the FIDCC2 idoc and how are you generating any COPA document simultaneously. I am in the same situation and my FIDCC2 idoc updates the FI, CO, PCA components but not the COPA. I am not sure where to populae the Profitability segments on the FIDCC2 type. Please share if you have same issues in your company.
    Regards
    Elphick

  • Every time I try to update Muse to 2014.3 version in my mac (OS X 10.10.2) I get this error message: "Exit Code: 39 Please see specific errors below for troubleshooting. For example,  ERROR: DW042 ...  ---- Summary   - 0 fatal error(s), 2 error(s)   ERROR

    Every time I try to update Muse to 2014.3 version in my mac (OS X 10.10.2) I get this error message: "Exit Code: 39 Please see specific errors below for troubleshooting. For example,  ERROR: DW042 ...  ---- Summary   - 0 fatal error(s), 2 error(s)   ERROR: Failed CreateAlias ERROR: DW042: ARP Entry couldn't be created for language : es_ES". I've tried both to uninstall the app and run CleanTooler, but there's no way. What else should I do?

    Davidv82268468 have you removed and reinstalled Adobe Muse using the steps listed in CC desktop lists applications as "Up to Date" when not installed?

  • Installing onto a second computer? Getting this error message: Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR: DW006 ...  -------------------------------------- Summary --------------------------------------  - 0 fa

    Hi there,
    I have just installed creative cloud on my mac laptop and am trying to download lightroom and photoshop (as a second computer) and am getting this error message
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR: DW006 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s)
    ----------- Payload: Adobe Photoshop Lightroom 5 5.4.0.0 Adobe Photoshop Lightroom 5.pkg_5.4 -----------
    ERROR: DW006: Apple Package failed to install successfully.
    ERROR: Third party payload installer Adobe Photoshop Lightroom 5.pkg failed with exit code: 1

    See:
    Exit Code: 6, Exit Code: 7 Installation Errors -
    http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html

  • Rebooted my iPhone and my apps are taking ages to load

    Lost my I phone and got a new one today. I've restored it from iCloud and got it working. My apps are taking ages to load though. They say waiting, but have now been like that for 2 hours. Help please?!

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons.

  • Envy 5534 on MAC- print error message unable to convert post scrip file

    New printer set up fine prints letter but when I want it to print a page with bar code on get error message :-
    print error message unable to convert post scrip file
    Can any one help please
    This question was solved.
    View Solution.

    Hi @itsalex,
    What type of bar code are you printing, and from what program? Just a thought, what if you print the barcode as an image, if you are not already? Try File>Print> Advanced> Print as Image> print.
    If the issue persists, let's reset the printing system and repair the disk permissions; doing so may resolve the issue.
    Reset Printing System
    Click the Apple icon ( ), and then click System Preferences.
    In the Hardware section, click Print & Fax/Scan. The Print & Fax/Scan dialog box opens.
    Right-click (or Ctrl +click) in the left panel, and then click Reset printing system…
    Click OK to confirm the reset.
    Type the correct Name and Password.
    Click OK to reset the printing system. The Print & Fax dialog box shows no printer selected
    Note: This will remove all printers in the print and Fax/Scan, any printer removed can be re-added later by clicking the plus (+) symbol.
    Repair Disk Permissions
    On the Dock, click Applications, and then click Utilities.
    Double-click Disk Utility.
    Highlight your hard drive/partition on the left (by default this is "Macintosh HD").
    Click the Repair Disk Permissions button at the bottom of the window.
    Once the repair is complete, restart the computer and add the printer back.
    When you add the printer, please ensure you are using the HP driver.
    Select Add other Printer or Scanner 
    Select the printer you are adding and next to 'Use' you can select the printer drive. In the screenshot below, you will see Airprint is auto selected, you can change it to the HP driver though.
    I look forward to hearing back from you.
      Talk to you later alligator 
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • TS1702 I have the Ipod Touch and installed Skype.  I have an account with Skype but when I try to connect my Ipod,  I receive a message saying " We didn't recognize your Skype Name and password"  I connect to Skype through my Facebook account.

    I can not connect to Skype on my I-pod.  I use my facebook account to log into Skype on my pc but when I try to log in on th i-pod I receive a message saying "We didn't recognize your Skype Name and password"

    Try contacting/going to their support site either/or Skype or FB. I would start with Skype

  • Taking ages to delete user account on macbook pro?!

    Hi,
    I'm deleting an old user off my macbook pro and setting it up for another user, however it is taking AGES (25minutes so far....) to delete. The System Preferences won't let me quit as it says it's still working and under the account it does say "Deleting account" However I now cannot click or highlight this account.
    I'm not convinced it's still working as it's taken so long. Is this a normal length of time to wait?
    Thanks
    Emily

    Are you using FileVault/encryption?

Maybe you are looking for

  • Not merging the XML files  in single file using BPM file to file  payload

    Dear All, i am working on BPM N:1 Scenario my design and config looks correct . it is picking the file and appending into my defined  "ContainerList" but in receiver side .i mean Inbound side it is putting the data of one one file with the contents o

  • HT204053 my apple id email which is an yahoo address will not allow me to sign in

    I tried to set up an icloud account. The instructions direct me to the login where it ask me for my apple ID which is my yahoo.address.  So how can I set it up if I cant even log in?  Any advice is appreciated. Thanks in advance!

  • MCS 7845-H2 Front Panel LED's

    Trying to find some sort of support document for this server model to get an understanding of what the LED's mean, as one of them has just turned amber (which according to this ( http://www.cisco.com/en/US/prod/collateral/voicesw/ps6790/ps5748/ps378/

  • Mega 865 & Pentium 4 Prescott 3.0G

    Hi all, I'm buying a mega 865 PC, and I have it on order. But while browsing the MSI site I found that the prescott processor is not fully supported (not very clear on the site) I cannot find if the 3.0 GHz Prescott processor is supported, can anyone

  • Creating and modifying LOV in R12

    Dear gurus In R-12 how I can register a new LOV. Moreover, how I can identify that which LOV is attached to some particular field and how i can modify that LOV. OR If I want to remove the LOV from some particular field then ?? Please advise I shall b