Viewing 11 posts - 1 through 11 (of 11 total)
GRANT EXECUTE TO exectest
REVOKE DELETE FROM exectest
DENY DELETE TO exectest
SELECT dp.class_desc,
dp.permission_name,
dp.state_desc,
OBJECT_NAME(major_id) as ObjectName,
grantee.name as Grantee,
grantor.name as Grantor
FROM sys.database_permissions dp
JOIN sys.database_principals grantee
ON dp.grantee_principal_id = grantee.principal_id
JOIN sys.database_principals grantor
ON dp.grantor_principal_id...
November 20, 2019 at 3:55 pm
Awesome, just what I was looking for. 🙂
April 25, 2018 at 10:05 am
To quote our network guy:
"Transaction logs have heavy sequential write activity while database files have more random read/write activity and thus by setting the Nimble Performance Policy...
January 19, 2018 at 1:20 pm
Yes it will synch data if you use a publish script. Redgate works for quick and dirty, but if you want to do it write, use SSDT imho.
January 19, 2018 at 11:04 am
January 19, 2018 at 10:24 am
In an ideal world, every SQL Server Service should be on it's own server, Reporting Services, Integration Services, Analysis Services and Data Quality Services. This definitely pushes up your licensing...
September 15, 2014 at 2:43 pm
I ran into a similar problem and it seems to have to with the fact that I was using expressions to set my destination and source variables (it's funny because...
June 11, 2010 at 9:57 am
Viewing 11 posts - 1 through 11 (of 11 total)