Viewing 15 posts - 76 through 90 (of 4,477 total)
No permission on master but i will give it a try and feedback if all working
According to the documentation, they need view database state permissions:
sys.query_store_runtime_stats (Transact-SQL)
Sue
May 22, 2020 at 6:23 pm
The select statement and the delete statement are two different, separate statements. The delete statement won't have any knowledge of any aliases in the select statement. I am guessing you...
May 14, 2020 at 8:10 pm
Another thought - when the files get attached to the mail they are converted to 7-bit ascii and I'm not sure of the increase of size in that process. So...
May 13, 2020 at 8:04 pm
Try using DENSE_RANK instead of RANK
With a as
(
Select
name, score
,DENSE_RANK() OVER ( order by score desc ) as RNK
from #t
)
Select *...
May 13, 2020 at 7:46 pm
It's not really something you manually populate. The permission path displays the group that allows access based on the AD group or groups added as logins. If you have a...
May 12, 2020 at 7:39 pm
Also try restarting the SQL Server Agent Service to see if subsystem loads.
Sue
May 12, 2020 at 7:31 pm
You need an SPN, the account to be setup for delegation for Kerberos to work. You're looking for an SPN and no duplicates which is what the tool will do....
May 12, 2020 at 6:17 pm
Do you have an SPN configured for the database server? The easiest way to check for it and to check the configuration is to use the Kerberos Configuration Manager. You...
May 12, 2020 at 5:59 pm
That's the error from the SQL Server error log, not the SQLAgent.out file. There are two different error files - one for SQL Server and one for SQL Server Agent....
May 12, 2020 at 5:57 pm
It still could be an issue with nested groups or something along those lines. Try checking the user_token DMV as that will pick up nested groups. So you add an...
May 11, 2020 at 5:29 pm
Did you check the SQLAgent.out file as the error indicates?
Sue
May 11, 2020 at 5:12 pm
It's not natively supported in SSRS 2014. The Powerpoint rendering extension was introduced in SSRS 2016. With SSRS 2014 you would look at a third party product to support the...
May 8, 2020 at 3:27 pm
Mostly no but it can be yes at times. It's only supported as an upgrade process. Higher level replicas cannot be read and if you fail over to a higher...
May 6, 2020 at 10:52 pm
I understand that it won't be possible to configure Always on from 2 database to 1 database. Yes it could be done with replication. But Primary as sql 2016...
May 6, 2020 at 9:50 pm
You may want to consider a third party product to do this, especially if it's for compliance with auditing. One of the advantages of using the third party products is...
May 6, 2020 at 7:38 pm
Viewing 15 posts - 76 through 90 (of 4,477 total)