Viewing 15 posts - 1,096 through 1,110 (of 6,400 total)
That's it. The only aspect of the cluster you need is the Windows parts. And that is only for automatic failovers.
From SQL's side, every node is a separate standalone instance
March 13, 2020 at 3:55 pm
For AG's you would setup the Windows cluster, then install SQL separately as individual instances on each server.
You don't need to install SQL as a failover cluster if your using...
March 13, 2020 at 2:13 pm
I've found a number of articles on encrypting backups and transaction log backups, but all these are based on manually generated code to include the encryption details in the...
March 10, 2020 at 3:02 pm
DECLARE @Primary BIT, @DB SYSNAME
SELECT @DB = database_name from msdb.dbo.sysjobsteps where job_id = CONVERT(uniqueidentifier, $(ESCAPE_NONE(JOBID))) and step_id = 2
SELECT @Primary = sys.fn_hadr_is_primary_replica (@DB)
IF @Primary = 1
BEGIN
SELECT N'Primary...
March 4, 2020 at 3:25 pm
Have you taken a look at Job tokens Mike?
https://docs.microsoft.com/en-us/sql/ssms/agent/use-tokens-in-job-steps?view=sql-server-ver15
Also any reason your not using sys.fn_hadr_is_primary_replica() instead of the query to determine if your on the right replica
March 4, 2020 at 2:18 pm
The biggest issue is the "what if this all goes pear shaped" what is your rollback option, how long can you be down, how much data loss can you afford.
The...
March 2, 2020 at 12:43 pm
As always depends what you need, if your talking a large volume of servers, you could be eligible for volume discounts on the larger retailers like Red-Gate, Quest, Idera.
Quest have...
March 2, 2020 at 8:22 am
Are you talking about the service account used to run SSRS as an application?
Or are you talking about the accounts used at the data source level to run the SQL...
March 2, 2020 at 8:12 am
Can you define the commonality conditions.
DB1 has a table called "Orders" with "28 columns" in the "DBO schema"
DB2 has a tabled called "Orders" with "69 columns" in the "SALES schema"
Is...
March 2, 2020 at 8:04 am
Why do you need to trigger this. Why not just grant SELECT at the SCHEMA level instead of the OBJECT level save the overhead of a trigger firing every CREATE?
February 27, 2020 at 9:08 am
In my best Britney "Whoops I did it again, I hit report, when I should of it quote", more coffee needed obviously
Sorry Mike.
While sp_change_users_login will work, it will need to...
February 27, 2020 at 9:01 am
The only thing then is going to be the 5 minute wait, if your doing parallel backups then the jobs should really start at the same time.
Guessing the database in...
February 26, 2020 at 3:01 pm
It does all come down to what you need Mike at the end of the day.
Sounds like you want something to provide local HA should a server have a problem,...
February 26, 2020 at 9:26 am
You have the @DatabasesInParallel param set to Y correct? You also have the queue tables etc and got Ola's latest code base?
As a side note why are new servers being...
February 26, 2020 at 8:49 am
Are the services running as service accounts? Have you granted trusted for delegation to the accounts in AD?
February 26, 2020 at 8:36 am
Viewing 15 posts - 1,096 through 1,110 (of 6,400 total)