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 8064681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T11:26:41+00:00 2026-06-05T11:26:41+00:00

The Table(Log Analyzer) structure is : I want to draw a line graph displaying

  • 0

The Table(Log Analyzer) structure is :

Table of Log

I want to draw a line graph displaying the number of requests per minute. I want to write a query which displays two columns with the following information:

  1. Date:Hour:Minute
  2. Number of Requests

I have tried to write a sample query displaying requests per hour:

SELECT ( Str(Datepart(HOUR, TimeLog)) + '.00' ) AS 'From (hours)',
       ( Str(CASE
               WHEN Datepart(HOUR, TimeLog) + 1 = 24 THEN 00
               ELSE Datepart(HOUR, TimeLog) + 1
             END) + '.00' )AS 'To (hours)',
       Count(DISTINCT Request) AS 'Number Of Queries '
FROM   LogData
GROUP  BY Datepart(HOUR, TimeLog);

The problem with this is when I use MINUTE instead of HOUR it combines the minutes of
all hours and days, so it just displays 60 rows. I want all the rows to be separate according to the day and hour. How can this be achieved?

  • 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-06-05T11:26:42+00:00Added an answer on June 5, 2026 at 11:26 am
    select  convert(nvarchar(16), TimeLog, 120) requestTime,
            count(*)
    from    LogData
    group by convert(nvarchar(16), TimeLog, 120)`
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to insert a single line to log table, but it throws an
I want to select all records from a table Log where the DateAndTime field
I have a log table that records dates. I want to find out the
I defined a record named log . I want to create an mnesia table
When directing MySQL's General Query Log to a general_log table, it has an event_time
I have a log table containing user ids, ip addresses and log in datetimes.
I have a table on my database called 'Log'. This Log table contains ID,
I retrieved data from the log table in my database. Then I started finding
http://logging.apache.org/log4net/release/config-examples.html Given the log table here: CREATE TABLE [dbo].[Log] ( [Id] [int] IDENTITY (1,
I have a table that contains log entries for a program I'm writing. I'm

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.