Viewing 15 posts - 61 through 75 (of 76 total)
I've read that we can add the regular report server db to an AG without needing to add the tempdb version (correct me if I'm wrong). But what we want...
February 22, 2019 at 12:17 am
You need to review wait stats and run performance counters on your server to identify where the bottleneck is. 10MB/s disk thoughput doesn't mean SQL is only capable of that,...
February 22, 2019 at 12:12 am
That note doesn't really apply to allowing or preventing automatic failback. That note is referring to a limitation when running an AlwaysOn Availability Group with one or more Failover Clustered...
February 22, 2019 at 12:04 am
What IF statement in particular is failing. Your code doesn't seem to include any IF statements intended to exclude databases.
Assuming it simply isn't in the code supplied, try...
February 20, 2019 at 6:14 pm
Try adding "WITH GRANT OPTION" to the RoleAdmin permissions, e.g.
GRANT VIEW DEFINITION, CONTROL ON ROLE::roleAdmin to roleAdmin WITH GRANT OPTION AS dbo
See this link...
February 20, 2019 at 12:18 am
DAC should work using the -A switch and a server name without having to specify an IP or Port #.
Given the IP you've used is localhost, its possible...
February 19, 2019 at 11:58 pm
January 22, 2019 at 4:55 pm
If you have the package that can loop over sheets you should be able to put that inside a For Loop container that iterates over the files. Basically configure it...
January 22, 2019 at 5:24 am
That error isn't the root error. You need to track back the errors in your Windows and SQL logs and also check the cluster log to determine what the original...
January 22, 2019 at 5:16 am
The link you've found pretty much covers everything you need to know.
In summary, when importing a certificate in SQL Server from a certificate authority be sure that...
January 22, 2019 at 5:12 am
If you're scripting them out for migration to a new instance or DR purposes (e.g. in-case you need to reinstall SQL Server), you should ensure they're being scripted with the...
January 16, 2019 at 8:43 pm
The failback from higher to lower will not work. Once you failover, the database is recovered on the 2017 replica and cannot be downgraded. The database on the 2012 replica...
January 16, 2019 at 5:12 pm
Always Encrypted is supported with Always On Availability Groups. The only features that aren't supported are transactional or merge replication and distributed queries on linked servers. The actual decryption work...
December 16, 2018 at 11:05 pm
Check the server and database for any triggers. From the looks of the error, there is a problem in the trigger code preventing it from executing, and changing the owner...
December 12, 2018 at 11:59 pm
When you run ALTER DATABASE MODIFY FILE any changes to sizing should be applied immediately. Filepath\Filename changes require the database to go offline and back online to effect the change,...
December 12, 2018 at 11:55 pm
Viewing 15 posts - 61 through 75 (of 76 total)