Viewing 9 posts - 1 through 9 (of 9 total)
Definitely worth noting. For Standard, you can still use Mirroring or Log Shipping, if you can handle a delay.
April 10, 2014 at 1:51 pm
It sounds like you're using a trigger, which won't have a clue as to what timezone the client is located.
Since you already have the timezone offset, don't use GETDATE. ...
August 27, 2012 at 3:08 am
How are you generating the audit trail?
EDIT: If you know the timezone, then you should know the offset. Use TODATETIMEOFFSET:
http://msdn.microsoft.com/en-us/library/bb630335(v=sql.100).aspx
August 27, 2012 at 2:51 am
Are you recording timezones anywhere in your audit trail? If not, having the times recorded in differing timezones is going to leave your audit trail useless.
August 27, 2012 at 2:32 am
While I agree you shouldn't create a proxy for a standard user account, I see no problem with creating a proxy for a service account. I have done this...
August 26, 2012 at 6:53 pm
PHXHoward (8/23/2012)
I have made a script to do what I believe you indicated.
DECLARE @cmd1 varchar(500), @cmd2 varchar(500), @cmd3 varchar(500)
SET @cmd1 = 'print ''[?]'''
SET @cmd2 = 'IF ''[?]''...
August 25, 2012 at 6:37 am
You cannot assign a proxy directly for TSQL steps.
You have two options:
1. Create an operating system proxy, and use sqlcmd to execute the TSQL.
2. Create a Powershell proxy...
August 25, 2012 at 6:19 am
You can run multiple instances versions on a cluster node or even a standalone host, as long as the underlying OS supports that version.
In any case, I make an attempt...
August 25, 2012 at 6:11 am
While you'll likely receive varying opinions on this subject, my advice is to start reading and configure a test instance to apply what you're reading. Microsoft makes the AdventureWorks...
August 25, 2012 at 6:04 am
Viewing 9 posts - 1 through 9 (of 9 total)