October 7, 2013 at 12:46 pm
Hi,
We are refreshing our test environment daily from our production backup. But the users are loosing their permissions in dev environment. Can anyone suggest me how to automate the process of user and their permission backup and execute the permission script post -refresh ?
I have a query that takes the user, role permissions for a particular database, i need to automate this process. Please post your suggestions.
thanks in advance
October 7, 2013 at 1:13 pm
Do you use a scheduled job to refresh the test database? If so, then add a step to run your script. If you don't use a scheduled job how do you automate the process of the restore?
October 7, 2013 at 1:21 pm
Keith Tate (10/7/2013)
Do you use a scheduled job to refresh the test database? If so, then add a step to run your script. If you don't use a scheduled job how do you automate the process of the restore?
Thanks Keith for the response. Yes, we use a scheduled job to refresh and yes we can add a step but this script just outputs the users,permissions which we again need to execute after the refresh is complete.
Script output ( example for one user ) :
IF NOT EXISTS (SELECT name FROM sys.database_principals WHERE name = 'Test') CREATE USER [Test] FOR LOGIN [Test] WITH DEFAULT_SCHEMA =dbo;
EXEC sp_AddRoleMember @rolename = 'fairparamwriter', @membername = 'Test';
EXEC sp_AddRoleMember @rolename = 'fairparamwriter', @membername = 'Test';
GRANT EXECUTE TO [Test];
GRANT SELECT ON [dbo].[dbatesttable] TO [Test];
October 8, 2013 at 11:07 am
The way I solved this is once the db is refreshed, add back what you need manually like via the GUI and script out the commands... then simply put those commands into a step after the restore.
October 9, 2013 at 6:55 am
Check for stored procedure to fix orphaned users or fix user login which may help. Or create a script of commands which manually you are executing on server to fix users and execute by creating additional step after restore.
---------------------------------------------------
"Thare are only 10 types of people in the world:
Those who understand binary, and those who don't."
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply