Viewing 7 posts - 1 through 7 (of 7 total)
Availability Groups require a Windows Failover Cluster:
http://msdn.microsoft.com/en-us/library/ff878487.aspx#SystemReqsForAOAG
As far as a step by step guide, take a look at this:
http://www.brentozar.com/archive/2011/07/how-set-up-sql-server-denali-availability-groups/[/url]
What are you aiming to accomplish with Availability Groups?
August 28, 2014 at 11:32 am
SQLnbe (8/20/2014)
Jim Arko (8/20/2014)
One thought is to look at @@SERVERNAME. Maybe you could raise an error or something if it doesn't match the name of the dev box?
Jim,
What I have...
August 20, 2014 at 11:22 am
One thought is to look at @@SERVERNAME. Maybe you could raise an error or something if it doesn't match the name of the dev box?
August 20, 2014 at 10:41 am
It is throwing the error trying to compare the first two characters of your varchar column to integer values. Try putting 18, 26, and 28 in single quotes.
CREATE TABLE...
August 12, 2014 at 11:44 am
While I don't have a workaround for your solution, the second error appears to be the most telling. It looks like SQL Server doesn't like the NVARCHAR to VARBINARY conversion.
In...
March 11, 2014 at 11:26 am
It's certainly not best practice, but the question was about variables in dynamic T-SQL. The link provided addresses injection. There is probably an entirely better way to accomplish the end...
February 23, 2014 at 11:25 am
When using dynamic T-SQL you need to concatenate the variables.
SET @sqlstring = 'UPDATE table SET column = ' + @variable
More here
February 23, 2014 at 9:46 am
Viewing 7 posts - 1 through 7 (of 7 total)