1
Good morning, as can be seen in the image below, I made a select to get the current date and the same is +3.
How can I change this date/time?
1
Good morning, as can be seen in the image below, I made a select to get the current date and the same is +3.
How can I change this date/time?
2
SQL Server uses by default the regional settings that are set in your Windows.
You can only change your server configuration:
Control Panel -> Region and Language -> Change Location -> Change Format and Location
More as you have no access you can create a Query that uses the Function DATEADD subtracting the 3 hours, this way:
SELECT DATEADD(HOUR, -3, GETDATE())
Upshot:
Browser other questions tagged aws sql-server-2014 timezone
You are not signed in. Login or sign up in order to post.
Change server configuration to en.
– Marconi
My question is exactly how and where do I do it.
– Roknauta
Control Panel -> Region and Language -> Change Location. Change Format and Location
– Marconi
This machine is on Amazon and I don’t have access.
– Roknauta
It worked @Douglas?
– Marconi
@Marconi is an alternative, we’ll probably use this one.
– Roknauta
Glad I could help :)
– Marconi