Viewing 15 posts - 16 through 30 (of 1,270 total)
Merge replication may work. Depends on how different the tables are and if they meet the requirements for merge replciation.
Otherwise, I'd go with service broker.
December 16, 2015 at 2:24 pm
If you are doing large batch operations, you should optimize the operation by figuring out ways to get rid of complex criteria and joins so that you are not taking...
September 2, 2015 at 11:28 am
Transactions commit on the secondary in the exact same order as the primary. If you were using read committed isolation, it would still suffer from gaps due to transactions completing...
August 31, 2015 at 1:53 pm
Did you mean to say READ UNCOMMITTED? Read Committed would have the same issue as Snapshot.
August 31, 2015 at 11:51 am
Yes, no other change, and it only ever affected those 3 installs. Have heard of others that have experienced it once and fixed by reinstalling.
August 6, 2015 at 10:30 am
Sounds like an issue I ran into with some new installs on Windows 2012 (not R2) last year. Config Manager and many other things could write to the registry but...
August 6, 2015 at 10:14 am
No, there needs to be a maintenance job to delete old backups (older than your SLA for keeping data on-hand).
If you want, there is one a script you can use...
June 22, 2015 at 2:39 pm
First of all, let's get the terms right to avoid confusion. A "transaction log" or "log file" is one of the database files. You are talking about "log backups" which...
June 22, 2015 at 2:02 pm
Sounds like a simple case of confusing correlation with causation. Or it didn't happen. Those ar ethe only 2 possible answers. You do not get permissions for one login path...
September 25, 2014 at 1:40 pm
You're overthinking it. When the user logs in, they have a superset of all permissions for all of their login paths. They don't log in as one path or the...
September 25, 2014 at 11:05 am
Are the instances sharing the same db file and log file drives? What about tempdb files? If so, that could definitely cause contention on the other instance.
August 29, 2014 at 11:38 pm
You said one of them is virtual. As in a VM on the physical machine?
It didn't unless you have something configured poorly like all the database files and the VM...
August 29, 2014 at 11:04 pm
No. And don't detach the database ever unless you a good reason to (this isn't one).
The answer is, don't do large bulk processes. Delete/update in batches.
August 29, 2014 at 9:52 pm
Please start a new thread. Don't piggyback. </etiquette lesson>
August 1, 2014 at 4:35 pm
If I'm understanding you correctly, you can use the built-in function SUSER_SID() to verify if the account exist. If it returns NULL, it doesn't exist:
Declare @User nvarchar(256) = N'SQLMCMLap\TestUser',
June 18, 2014 at 12:17 pm
Viewing 15 posts - 16 through 30 (of 1,270 total)