Synchronize the date and time of SQL _server

Source: Internet
Author: User
// Synchronize the time and date of the SQL _server Server
Procedure TDM. synchronizationsqlserverdatetime ();
VaR
Theserverdatetime: tdatetime; // defines the server time
Thelocaldatetime: _ systemtime; // defines the local system time reference windows
Year, month, day: word; // defines the year, month, and day.
Hour, Min, SEC, msec: word; // defines the time, minute, and second.
Begin
With commonquery do begin
SQL. Clear;
SQL. Add ('select getdate () as server Time ');
Open;
Theserverdatetime: = fieldbyname ('server Time'). asdatetime;
End;
Decodedate (theserverdatetime, year, month, day); // decomposition server year month day
Decodetime (theserverdatetime, hour, Min, SEC, msec); // server Time Decomposition
// ------- Set the local system time
Thelocaldatetime. wyear: = year;
Thelocaldatetime. wmonth: = month;
Thelocaldatetime. wday: = Day;
Thelocaldatetime. whour: = hour;
Thelocaldatetime. wminute: = min;
Thelocaldatetime. wmilliseconds: = msec;
Setlocaltime (thelocaldatetime); // modify the local system time
End;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.