Tagged Questions

1
vote
1answer
34 views

Does GetDate() get re-evaluated for each iteration within loop within a transaction?

I have a scenario where I am looping through a resultset within a transaction and I need to INSERT a unique datetime value within a table for each iteration through the resultset - will GetDate() be …
0
votes
2answers
113 views

Hour difference between Linux and Windows from Java date.getHour().

I have some java code that parses a string and creates a Date object. On Linux, everything works fine, but on Windows it continuously starts at 19:00:00 rather than 00:00:00. Here is the code: …
3
votes
4answers
2k views

Retriving date in sql server, CURRENT_TIMESTAMP vs GetDate()

Using SQL server - which is the fastest or best practice method to use for date retrival? Is there a difference?