October 8, 2009 at 2:21 am
Hi all,
Just to consult some questions from you all,
I did a side by side upgrade with a newly created named instance in SQL Server 2005.
I attach the current SQL 2000 DB into the SQL Server 2005 named instance.
1) I try to execute the login scripts in SQL Server 2005, the logins are created in the new instance,
however, I notice the object permission related to the login does not exist. How to resolve this
problem?
2) How can I transfer all jobs and Maintenance Plans created in the SQL Server 2000 into SQL Server
2005?
Restoring msdb seemed to require same version or build of SQL Server.
What are the other concern I need to take into account except the one I mentioned above?
Appreciate the opinion and help given.
Regards,
Golden
October 8, 2009 at 2:28 am
Have you tried using SSIS within BIDS?
There is a transfer job tasks that has worked for me. I have had it where it fails but that was due to the "job owner" not existing on the destinations server.
Hope this helps
October 8, 2009 at 2:34 am
Is there any other methods aside from using BIDS?
Do you have any opinion about the object permission ?
October 8, 2009 at 2:41 am
golden-1131024 (10/8/2009)
Hi all,Just to consult some questions from you all,
I did a side by side upgrade with a newly created named instance in SQL Server 2005.
I attach the current SQL 2000 DB into the SQL Server 2005 named instance.
1) I try to execute the login scripts in SQL Server 2005, the logins are created in the new instance,
however, I notice the object permission related to the login does not exist. How to resolve this
problem?
2) How can I transfer all jobs and Maintenance Plans created in the SQL Server 2000 into SQL Server
2005?
Restoring msdb seemed to require same version or build of SQL Server.
What are the other concern I need to take into account except the one I mentioned above?
Appreciate the opinion and help given.
Regards,
Golden
How did you generate the login script and to be honest in the past, i usually just script the jobs and run the scripts on the new instance.
--------------------------------------------------------------------------------------
[highlight]Recommended Articles on How to help us help you and[/highlight]
[highlight]solve commonly asked questions[/highlight]
Forum Etiquette: How to post data/code on a forum to get the best help by Jeff Moden[/url]
Managing Transaction Logs by Gail Shaw[/url]
How to post Performance problems by Gail Shaw[/url]
Help, my database is corrupt. Now what? by Gail Shaw[/url]
October 8, 2009 at 2:46 am
I use the method that is provided by miscrosoft website.
http://support.microsoft.com/kb/246133/
It seemed to generate the login and default DB, however it seemed not to generate the object permission.
October 8, 2009 at 2:47 am
As in the previous post you can script the job... I pref to use SSIS, but that is personal pref.
You could try using "EXEC sp_change_users_login 'Auto_Fix', 'user'" to corrent any issues with the logins.
There is a free tool from idera that i've used in the past
October 12, 2009 at 8:08 pm
Hi sql_lock;
Sincerely apologize for the late reply.
I have tried BIDS transferring job task and it is successfully, will those jobs work properly in sql server 2005 although they are still a lot of information stored inside the msdb system db in sql server 2000?
The sp_change_users_login is to solve orphaned user, will be the permisson also be reflected back?
Regards,
October 13, 2009 at 12:07 am
Hi
sp_change_users maps a login to a user. By itself it will not generate user permissions. Have u transferred the users from your SQL 2000 db to SQL 2005 db? Or is it that you have transferred only logins ?
"Keep Trying"
October 13, 2009 at 1:25 am
ChiragNS (10/13/2009)
Hisp_change_users maps a login to a user. By itself it will not generate user permissions. Have u transferred the users from your SQL 2000 db to SQL 2005 db? Or is it that you have transferred only logins ?
Ya, I use the methods mentioned in microsoft official websites, I able to transfers all server logins and I map those database logins to the server login as well by using sp_change_users_login.
However, the object permission level not to be reflected. What should I do?
Kindly advice.
October 13, 2009 at 6:35 am
a quick reply...
create or search a script that works on SQL Server 2000 which will give out the object permissions for each user. Run this script on SQL 2005 after modifying the script if necessary.
This is just a general idea , i myself haven't done this.
"Keep Trying"
October 13, 2009 at 6:46 am
If you attached the database it MUST have bought object level permissions across, and the use of sp_help_revlogin will have tied the users to the logins. Are you talking about permissions in the user database or in the system databases?
also be aware that when you upgrade a user database the process creates schemas for the SQL logins and makes this schema the default for the user, this might not be what you want.
---------------------------------------------------------------------
Viewing 11 posts - 1 through 10 (of 10 total)
You must be logged in to reply to this topic. Login to reply