What is the with posted thread statistics?

Some post show as being replied to and others don't. But the reality is that they have been replied to but not showing a count on the replies or the number of views. This has been happening in several MSDN forums over the last several weeks.

The site is playing up big time.
I frequently find up to the last day or so's worth of posts aren't appearing.
http://social.msdn.microsoft.com/Forums/vstudio/en-US/2176a4fb-989c-441b-8276-d26de36b628d/hey-msft?forum=reportabug
Hope that helps
Please don't forget to up vote answers you like or which help you and mark one(s) which answer your question.

Similar Messages

  • What are the security post refresh procedures in general?

    Hi,
    Can anyone list me out What are the security post refresh procedures in general?
    Thanks and Regards,
    Damanaidu J

    >
    Damanaidu jawaharlal wrote:
    > Hi,
    >
    > Can you cite with respect to CUA.
    >
    > Thanks and Regards,
    > Damanaidu J
    CUA
    ====
    CUA behaves differently during a system/client copy and this is the approach we took and it was successful.  The goal is to take a backup of the source before CUA deletion then restore. Do not delete CUA and just attempt to rebuild it, all the roles will be gone.  Backup and restore will be the approach I recommend.
    a1.  Take a snap shot of your QA user and role assignments before copy.
    1.  (Basis) First make a backup of the source system.  This is important before step 2.
    2.  After successful backup delete the CUA from the source system. 
    3.  After successful copy to target system, restore backup to source system.
    4.  Depending how the copy was done, users and passwords should be in the target system but all the role assignments will be gone. 
    5.  Start assigning roles base on your requirements.  If you need to restore the old QA settings that is captured in a1.
    Perhaps others can add in other steps I might have missed.
    Good Luck!

  • What is the AWT-XAWT Thread?

    When profiling my app and looking at the threads, I see this one.
    What is the AWT-XAWT thread for?

    Tails wrote:
    When profiling my app and looking at the threads, I see this one.
    What is the AWT-XAWT thread for?I guess you are using Unix/Linux? I don't know what the thread does, but it's related to X11.
    Kaj

  • What is the difference between thread and task

    hi ,this is guruvulu bojja
    what is the diff between thread and task .
    can u give me the example for distinguish a thread and a task .
    How can i know thread is better than a task .
    please tell me what is the task in o/s level and task.
    <b>how the o/s distinguish a therad and task.</b>

    Hi Guruvulu,
    <b>Threads</b> enhance performance and functionality by allowing a program to efficiently perform multiple <b>tasks</b> simultaneously.
    In the case of <i><b>common memory</b></i> <b>threads</b> naturally have shared data regions while it has to be specially created and initialized for <b>tasks</b>.
    Simply put, a <b>thread</b> is a program's path of execution. It allows execution of two or more sections of a program at the same time.
    Regards,
    Pooja.

  • What's the maximum # of threads?

    Support for asynchronous I/O (in HTTPService and WebService)
    kinda implies that the Player has a thread pool that it gets a
    spare thread from each time I do a send() on one of these
    components. Each allocated thread will block until it gets a
    response. If I don't get any responses (perhaps because it's
    long-lived) how many threads can I obtain from the pool before the
    Player runs out of threads (or is there no maximum or is it a
    start-up parameter)?

    Anakin1989 wrote:
    Hi,
    I'm working on a pretty big program and i need a lot of threads to make it run well (it's an audio player and, of course, i don't need people to wait when, for example, they save a playlist). So, i put some of these tasks on different threads, plus others that i didn't need for making the program run faster, but they are there just to make the program run. Now i have at least 4 threads running at the same time and, in some cases, there are even 6 or 7. Is it too much? It's my first big program (it's just for fun but i still want it to run well) and i didn't need so many threads before. What's the maximum number of threads you'd recommend me to have?
    Thanks.Are you experiencing any problems with the number of Threads you have? If not, stop worrying. On the other hand, are you sure you need all of them? There are alternatives to Threading, such as SwingWorker and Timer that might be able to help you out.
    One thing you better make sure of is that you're not doing any Swing work off of the EDT, or doing things like sleeping or time-consuming work on the EDT.

  • What's wrong with "Post-Change" anyway?

    Post-change has been fading out since Forms 4.5 (maybe earlier). We are now supposed to use "WHEN-VALIDATE_ITEM" AND "POST-QUERY" to do the same job.
    Our company uses Post-change a lot to complete description fields (example: "Unit Description" for the "UNIT_CODE" field on "SALE". When the user enters a new UNIT_CODE OR a UNIT_CODE is returned from a query, we use POST-CHANGE on UNIT_CODE to populate the (non-base table) UNIT_DESCRIPTION field). We have hundreds of occurrences like this in our application.
    Now Oracle want to make us use two triggers when one is perfectly sufficient for the job but is now being phased out. This means we will need to either duplicate the code ("select unit_descr into :sale.unit_description from unit where unit_code = :sale.unit_code;") in two triggers or create a separate function and call it from both triggers. Neither of these options sounds good to us.
    Can anyone explain why post-change is being phased out? Will it ever actually go? (It's still there in Forms 9i)
    Cheers,
    Tim.

    Tim,
    From what I remember (it's been a while since I've done any Forms) the Post-Change trigger doesn't fire if the Item is set to NULL.
    This is fine when getting data back from the server; non-database items are populated correctly, and NULL values don't trigger any form of action.
    But, if during data input the user sets and item to NULL the Post-Change trigger does not fire, and so doesn't clear out you non-database item, or do whatever else you wanted.
    If you have the opportunity I would recommend changing the code to use When-Validate-Item and Post-Query. As you say, you don't want to duplicate code, so you'll need some common functions.
    An approach that I favour is to create one package per database block, with one procedure per item, into which you can pass an "Event Name". eg: for the EMP block...
    Post-Query:  begin
        emp_pkg.latest_hire_date('POST-QUERY');
      end;When-Validate-Item:  begin
        emp_pkg.latest_hire_date('WHEN-VALIDATE-ITEM');
      end;emp_pkg Package:  package body emp_pkg
      is
        procedure latest_hire_date
          ( p_event in varchar2 )
        is
        begin
          if (p_event = 'POST-QUERY')
          then
          elsif (p_event = 'WHEN-VALIDA[i][pre]Long postings are being truncated to ~1 kB at this time.

  • What is wrong with my thread condition??

    I have two kinds of threads:
    1) WriterThread is cable of inserting keys with a corresonding object into a database.
    2) ReaderThread which should be able to wait for a specific key is inserted into the database.
    I store the key waited for by a ReaderThread and its id in a HashTable (the database is also a Hashtable).
    If I have 3 ReaderThreads that is waiting (with id 1,2,3) and thread 2 is waiting for "key2", I would only have ReaderThread 2 to wake up when "key2" is inserted by a WriterThread.
    Therefor I have made a condition in the "waitfor" method for the threads that is awakened (its after the first call to wait()). But it only works the first time I insert one of the keys awaited keys. The next time I insert a key all the remaining threads are reactivated!
    public class DataBase extends Hashtable{
        private Vector thread_vector; // The vector that contains all the threads.
        private Hashtable hold = new Hashtable(); // Holds the id and the key the thread is waiting for.
        private int t_id = 0; // The id of the thread that gets updated each time insert is called.
        public DataBase(Vector v){
            thread_vector = v;
        public void findId(Object k){
            int q = ((Integer) k).intValue();
            t_id = q; // Here t_id is set to the very id of the thread that is waiting for the newly inserted key.
        public synchronized void insert(String key, String o){
            if (this.containsKey(key)){
                System.out.println("Database already contains key: \""+ key + "\".");
            else{
                if (hold.containsKey(key)){
                    this.findId(hold.get(key));
                    hold.remove(key); // The key that has been waited for is deleted from the waiting queue array.
                    System.out.println("Key: \"" + key +"\" inserted");
                    this.put(key,o);
                    notifyAll();
                else{
                    this.put(key,o);
                    System.out.println("Key: \"" + key +"\" inserted.");
        public synchronized void delete(String key){
            this.remove(key);
            System.out.println("Key: "+"\"" + key + "\" with its corresponding value is removed from the Database." );
        public synchronized void waitfor(String key, int id){
            Integer thread_id = new Integer(id);
            hold.put(key,thread_id);
            try{
                wait();
            catch(InterruptedException e){}
            // This is where the problem is and where all the awakened threads battle to get inside the monitor!!
            if (Thread.currentThread() == thread_vector.get(t_id)){
                System.out.println("The right thread is awakened");
            else{
                try{
                    System.out.println("Return to wait");
                    wait();
                catch(InterruptedException e){}
    }

    Well, when it checks if the key is in the hold table, if it is then 'notifyAll()' notifies all threads!
    Try this, instead if an int to identify the threads, try using a monitor, that way instead of 'notifyAll()' you could use:
    ((Thread)hold.get(key)).notifyAll()Then only the thread that is registered for that key get's notified.
    and in the waitFor method use:
        public synchronized void waitfor(String key, Object id){
            Integer thread_id = new Integer(id);
            hold.put(key,thread_id);
            try{
                id.wait();
                }

  • What is the max poster size in Keynote 6.0?

    I want to create a 6 ft by 3 ft poster in keynote (5184 pts by 2592 pts) but it won't let me. I can specify smaller sizes but it bugs me that keynote cannot handle large posters. Is there a workaround?

    Hi
    Goto ECC and SE11 give the table name = ROOSOURCE and see the data in that table youc an see all the datasource in that table filter TYPE = HIER, here you can see all heirarchy datasources.
    Thanks
    Reddy

  • Can someone tell me what's wrong with my threading code

    I got some code from a Java book on how to create a simple threading application. This is the exact code from the book but for some reason it gives me an error that non-static variables can not be referenced from static content. How can I reword this to work?
    <CODE>
    package multithread;
    import java.io.*;
    import java.util.*;
    public class MultiThread {
    class CountDownEven extends Thread {
    public void run() {
    for (int i = 6; i > 0; i -= 2) {
    System.out.println(this.getName() + " Count" + i);
    Thread.yield();
    class CountDownOdd extends Thread {
    public void run() {
    for (int i = 5; i > 0; i -= 2) {
    Thread.yield();
    public static void main(String[] args) {
    try {
    CountDownEven count1 = new CountDownEven();
    CountDownOdd count2 = new CountDownOdd();
    count1.start();
    count2.start();
    catch (Exception e)
    </CODE>

    One possible solution:public static void main(String[] args) {
         try {
              MultiThread m = new MultiThread();
              CountDownEven count1 = m.new CountDownEven();
              CountDownOdd count2 = m.new CountDownOdd();
              count1.start();
              count2.start();
         } catch (Exception e) {
    }

  • What is the Account posting for Commissions

    Hi All,
    If there is any account posting done for commissions during the transactions like A/R Invoice?
    If yes, then  please tell me about the journal in detail and accounts in which it is posted.
    Thanx & Regards
    Sibasish

    Commissions can be defined for a sales employee, an item, or a customer. The commission is determined when a sales document is entered and saved for all the rows in the document. The Commission Groups define the commissions that are given internally to the sales employees. The commissions are calculated in a report, (Tools -> Queries ->System Queries -> SP Commission by Invoices in Posting Date Cross-Section) and are not posted to any accounts.

  • HT204406 itunesMatch contains duplicated empty song files. What is the **** with that ?

    Hi all,
    I have to face to an annoying issue with itunesMatch and my iDevices. For each song file store in iCloud, I get a duplicated empty song file !!
    Please advice how to solve this issue.
    Thx
    Renaud

    One other thing I found... It was still doing the spinning clock and locking up, but it took a while after boot for the problem to crop up.
    I pulled the media card and found that there was a media sync folder under Blackberry\System that had some files in there that were pretty big.  The artwork file was over 150MB and some other files were largish.
    I deleted the entire media sync folder and now it seems to be behaving itself.  No more spinning clock and it seems to be slowly returning to normal.  (Besides all the messages it deleted during the whole process)
    If anyone else runs into this I would say you should clean the folder off the media card along with disabling the sync.  Seems the BB still reads that folder and processes it if present.

  • What is the difference between new thread and new execution?

    What is the difference in creating a new thread and a new execution. Basically, what is the difference between thread and execution?

    Try this link...
    http://zone.ni.com/devzone/cda/tut/p/id/4823
    Thanks,
    PH

  • What is the main use of collections in java?

    What is the need for choosing collections?

    kajbj wrote:
    Ohh ... What r u doing in java forum Man.....Stop that. Don't resurrect threads.What's wrong with resurrecting threads?
    People are constantly being told to search this forum for information, but that's the same dead information they can find anywhere else on the internet.
    So if this forum is to offer something special it's to be able to continued resurrected threads.
    You can't have it both ways. Either you discourage people to seach the forum (because it's dead anyway) or you encourage them to do it. If you do you must allow them to resurrect old threads.

  • What is the SAFEST SEQUENCE to convert from a Outlook/iPad/iPhone synced with MobileMe to syncing with iCloud (I have 10 years of calendar diary events and 3000 contacts) - I am worried about the data issues that have been posted about iCloud.

    What is the SAFEST SEQUENCE to convert from a Outlook/iPad/iPhone synced with MobileMe to syncing with iCloud (I have 10 years of calendar diary events and 3000 contacts) - I am worried about the data issues that have been posted about iCloud.
    This has worked fine with MobileMe with only a couple of minor glitches in the past.
    Any experience doing this the "right" way?

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • What's up with the multiple posts!?

    What's up with all these multiple posts - is it a problem
    with the web based
    forums?
    Remove '_spamkiller_' to mail

    Seems to be....I have forwarded this issue.
    Dan Mode
    --> Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "Peter Blumenthal"
    <mmgroups@_spamkiller_PhageInteractive.com> wrote in
    message news:eem43g$sbh$[email protected]..
    > What's up with all these multiple posts - is it a
    problem with the web
    > based
    > forums?
    >
    > --
    > -------------------------------
    > Remove '_spamkiller_' to mail
    > -------------------------------
    >
    >

Maybe you are looking for

  • Adobe Illustrator CS5 will not open in Windows Vista

    All I get is "Adobe Illustrator has stopped working" Then i get "A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available" I've tried reinstalling 6 times now, and it still wont

  • Iphoto not reading camera

    I just bought a Mac Book Air that did not have iPhoto. I downloaded from App store and downloaded the camera driver. It is stil not reading my camera. Can anyone help. I am hours into this and so frustrated. Alicia

  • HT201401 My phone won't lock or go into sleep mode when answering calls

    My phone won't lock or go into sleep mode when making or receiving calls. Consequently I keep activating the mute or loud speaker buttons with my cheek. Can anyone help please??

  • HT1725 Only plays part of a song

    I purchased a song, and it says that the entire song is downloaded, but it only plays about 30 seconds before going to the next song.  This happens in both iTunes and on my iPod.  Any suggestions?

  • Xcelsius Pass Key Problems

    I just bought a new copy of Xcelsius and loaded it.  The passkey that I received with the product does not work.  When I enter the passkey I get the message that "The Passkey You Entered Is Not Valid".  I wrote to the following email: customercareame