Tagged Questions
11
votes
4answers
6k 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?
9
votes
1answer
649 views
Incorrect syntax near ')' calling storedproc with GETDATE
Maybe I am having a moment of 'afternoon', but can anyone explain why I get
Msg 102, Level 15, State 1, Line 2
Incorrect syntax near ')'.
When running
CREATE PROC DisplayDate
(
@DateVar ...
3
votes
3answers
67 views
Rounding SQL DateTime to midnight
I am having a small problem with my SQL query. I'm using the GETDATE function, however, let's say I execute the script at 5PM, it will pull up records between 12/12/2011 5PM to 12/18/2011 5PM. How can ...
2
votes
3answers
500 views
Changing the output of Getdate
Is it possible to deceive SQL Server to return a different date on GetDate() without actually changing the machine date?
This would be great, since we have a database with old data and I'm trying to ...
1
vote
2answers
77 views
Insert/Update Stored Procedure has conversion error
I am trying to make one stored procedure only in SQL Server that lets the user to choose if he/she wants to add or update a record. Below is my code for my stored pro:
CREATE PROCEDURE ...
1
vote
3answers
194 views
How to concatenate a string and GETDATE() in MSSQL
I need to insert a string (a comment) which should include a date. What I need is basically the following simple operation:
INSERT INTO [Table_1]
([textColumn])
VALUES
...
1
vote
1answer
146 views
Using Date datatype for removing time info from GetDate() is ok?
Typically I need to remove time info from GETDATE(). I need this because I have some DateTime fields where I know I am storing only date information so to make reliable comparisons (MyDate < ...
1
vote
1answer
186 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
1answer
137 views
DATEADD() function to find values in this business day
How can I use the SQL DATEADD() function to find a record from this business day? For example:
SELECT * FROM records r
WHERE r.creationTime <= GETDATE()
AND r.creationTime >= DATEADD(dd, -1 * ...
0
votes
3answers
300 views
Set today date to Default Value or Binding
I'm using MSSQL2008. The date type is Date, and I would like to set the default date to now or today.
I've tried GETDATE(), but I get "Error validating the default for column 'Date'". If I persist ...