Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6908945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:37:36+00:00 2026-05-27T08:37:36+00:00

In HP LoadRunner Analysis, there is a running vusers graph that shows the current

  • 0

In HP LoadRunner Analysis, there is a running vusers graph that shows the current number of virtual users that are running throughout the test. An example graph is shown below.

Running VUsers Graph

Does anyone know what is the SQL used to create the data for this graph? I know the data is stored in the LoadRunner analysis MDB database directly? ie An_Session1.mdb, though I am unable to determine the SQL Query.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:37:37+00:00Added an answer on May 27, 2026 at 8:37 am

    I’ve refined the query a bit so I post a new answer instead of editing the previous one.

    This produces columns that contain the CUMULATIVE count of vusers for a specific action over time. Please note that the output is not linear, it only contains a row when something has happened (x-axis).

    SELECT
     M.[End Time] AS RelTimeSec, 
     M.[VUser ID] AS VuserID,  
     M.[VUser Status ID] AS StatusID, 
     S.[Vuser Status Name],
     ( SELECT 
         Count( VuserEvent_Meter.[VUser Status ID] )
       FROM 
         VuserEvent_Meter 
       WHERE 
         VuserEvent_Meter.[InOut Flag]=1 AND
         VuserEvent_Meter.[End Time]<=M.[End Time] AND
         VuserEvent_Meter.[VUser ID]>0 AND
         VuserEvent_Meter.[VUser Status ID]=1
     ) AS CumulReady,
    ( SELECT 
         Count( VuserEvent_Meter.[VUser Status ID] )
       FROM 
         VuserEvent_Meter 
       WHERE 
         VuserEvent_Meter.[InOut Flag]=1 AND
         VuserEvent_Meter.[End Time]<=M.[End Time] AND
         VuserEvent_Meter.[VUser ID]>0 AND
         VuserEvent_Meter.[VUser Status ID]=2
     ) AS CumulRun,
    ( SELECT 
         Count( VuserEvent_Meter.[VUser Status ID] )
       FROM 
         VuserEvent_Meter 
       WHERE 
         VuserEvent_Meter.[InOut Flag]=1 AND
         VuserEvent_Meter.[End Time]<=M.[End Time] AND
         VuserEvent_Meter.[VUser ID]>0 AND
         VuserEvent_Meter.[VUser Status ID]=3
     ) AS CumulPause,
     ( SELECT 
         Count( VuserEvent_Meter.[VUser Status ID] )
       FROM 
         VuserEvent_Meter 
       WHERE 
         VuserEvent_Meter.[InOut Flag]=1 AND
         VuserEvent_Meter.[End Time]<=M.[End Time] AND
         VuserEvent_Meter.[VUser ID]>0 AND
         VuserEvent_Meter.[VUser Status ID]=4
     ) AS CumulQuit
    
    FROM
     VuserEvent_Meter M 
    INNER JOIN 
     VuserStatus S ON M.[VUser Status ID] = S.[Vuser Status ID]
    WHERE
      M.[InOut Flag]=1 AND M.[VUser Status ID] IN (1,2,3,4) AND M.[VUser ID]>0
    ORDER BY
     M.[End Time]
    

    Outputs something like:

    RelTimeSec  VuserID StatusID    Vuser Status Name   CumulReady  CumulRun    CumulPause  CumulQuit
      15    1   2   Run     1   1   0   0
      15    1   1   Ready   1   1   0   0
      30    2   2   Run     2   2   0   0
      30    2   1   Ready   2   2   0   0
      45    3   1   Ready   3   3   0   0
      45    3   2   Run     3   3   0   0
      60    4   2   Run     4   4   0   0
      60    4   1   Ready   4   4   0   0
      75    5   1   Ready   5   5   0   0
      75    5   2   Run     5   5   0   0
      90    6   2   Run     6   6   0   0
      90    6   1   Ready   6   6   0   0
    ...
    1687    88  4   Quit    82  82  0   19
    1687    86  4   Quit    82  82  0   19
    1687    85  4   Quit    82  82  0   19
    1687    87  4   Quit    82  82  0   19
    1697    113 2   Run     83  83  0   19
    1697    113 1   Ready   83  83  0   19
    1712    114 1   Ready   84  84  0   19
    1712    114 2   Run     84  84  0   19
    1727    115 1   Ready   85  85  0   19
    1727    115 2   Run     85  85  0   19
    1742    116 2   Run     86  86  0   19
    1742    116 1   Ready   86  86  0   19
    1747    89  4   Quit    86  86  0   23
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to find out if there are any relevant measurements that LoadRunner
I am doing load testing for my Application, I am running 250 virtual users
Currently I am writing Perl script that creates LoadRunner scenario, execute the test, collect
Is there an online reference manual I can query which contains details of LoadRunner
I have POC test to clearify is LoadRunner support WPF or not? Now it
There are a couple of sources for random in LoadRunner scenarios: rand () function
Can we run two scenarios at same time with loadrunner? E.g. Suppose there are
We currently use LoadRunner for performance testing our web apps, but we also have
Im getting frustrated because of OpenDNS and other services (ie: roadrunner) that now always
Does anyone have any experience in load testing ajax applications? specifically running jQuery as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.