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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T18:07:08+00:00 2026-06-18T18:07:08+00:00

Is there any reason why I should stop using SYSDATETIME() everytime, instead of GETDATE()

  • 0

Is there any reason why I should stop using SYSDATETIME() everytime, instead of GETDATE() ?

Don’t they both ask the cpu what time it is or does sysdatetime need more instructions to calculate the fractions? Does Getdate work on rounding it? Can sysdatetime be faster because it’s not working on rounding?

I obviously wouldn’t use sysdatetime if I’m not storing the nanoseconds, but I’m asking about the costs other than the storage size. (The current app I’m developing runs sysdatetime() at least 280 times a second)

  • 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-18T18:07:09+00:00Added an answer on June 18, 2026 at 6:07 pm
    SELECT SYSDATETIME();
    GO
    DECLARE @d DATETIME2(7) = SYSDATETIME();
    GO 10000
    SELECT SYSDATETIME();
    GO
    DECLARE @d DATETIME = SYSDATETIME();
    GO 10000
    SELECT SYSDATETIME();
    GO
    DECLARE @d DATETIME2(7) = GETDATE();
    GO 10000
    SELECT SYSDATETIME();
    GO
    DECLARE @d DATETIME = GETDATE();
    GO 10000
    SELECT SYSDATETIME();
    

    Results:

    • Assigning SYSDATETIME to DATETIME2(7) : 3.4 s
    • Assigning SYSDATETIME to DATETIME : 3.3 s
    • Assigning GETDATE to DATETIME2(7) : 3.4 s
    • Assigning GETDATE to DATETIME : 3.3 s

    So it appears to not matter. What matters is what type of variable you assign it to, and even that is not by much. 10000/0.1 seconds means the delta is very, very small and not enough to worry about. I would rather be consistent in this case.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does (int)myDouble ever differ from (int)Math.Truncate(myDouble) ? Is there any reason I should prefer
Is there any reason why I should close the connection after a query or
HD7970 vs FirePro V8800 Is there any reason why I should not go with
When modeling a data warehouse, is there any reason we should favor Data Vault
Is there any reason you should not use PHP to overcome some of the
Is there any reason you should or shouldn't allow access to javascript or css
Is there any reason why I should pick JSON over XML, or vice-versa if
Is there any reason why one should be used over the other? e.g. var
How do I do it? Is there any reason I shouldn't? I have a
Is there any reason why this shouldn't work? [PseudoCode] main() { for (int i

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.