Tagged Questions

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 ...
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
53 views

SQL Server 2005 - Mailqueues use UTC time instead of local time

This is more of a question than a problem as our production system is working as intended. I am relatively new to the SQL environment. I've been poking through various configurations on the server ...
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 ...