Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
sboyql
Starting Member
1 Post |
Posted - 2010-04-08 : 01:16:31
|
Hy every oneI am using Micrsoft Sql desktop engine installed by an application "epihandy". The databse is created by the application so i have no idea about the rules and policies regarding the access. I have a main server A and a Backup server B where i need to use the database, while not interfering the main server. I have use the following commands to backup and restore the data over the destination server. Prior to this, i have also checked the password for "sa" being same on both server. I used the script from here and it seemed to work great.http://www.mssqltips.com/tip.asp?tip=1174I used the following to backup the database: 1. in command window, type: osql -S "(local)\EPIHANDY" -d "master" -E2. Set the epihandy0906 database in single user mode, enter the following + enter3. alter database epihandy0906 set SINGLE_USER4. GO5. Then enter the following and hit enter:6. RESTORE DATABASE epihandy0906 FROM DISK = ' c:\epibackup\restore.bckp' WITH REPLACE7. GO8. Then enter the following and hit enter:9. alter database epihandy0906 set MULTI_USER10. GOEventually the restoration process was successful. The issue rose when I try to access the database through the epihandy interface. there is a table in the database 'dbo.epiusers' which contains users, ids passwords etc which the application uses to access the database. All the user information from the “dbo.epiuser” is retrieved as expected but upon inserting the password, “LOGIN FAILURE” occurs. I also envisaged over the “LOGIN AND PASSWORD TRANSFER” while moving the database. I went through an article provided by Microsoft( http://support.microsoft.com/default.aspx?scid=kb;en-us;246133 ) and proceeded step by step. I added sp_help_revlogin procedure in the master database over the original server. The output of the sp_help_revlogin stored procedure is login scripts that create logins with the original SID and password. Output is as under:DECLARE @pwd sysname-- Login: BUILTIN\AdministratorsEXEC master..sp_grantlogin 'BUILTIN\Administrators'-- Login: distributor_adminSET @pwd = CONVERT (varbinary(256), XYZ)EXEC master..sp_addlogin 'distributor_admin', @pwd, @sid = ABC, @encryptopt = 'skip_encryption'I then created the same login at the destination server. It did not work either. I also matched the SID’S of all existing logins in the “sysxlogins” table in MASTER as well as “sysusers” table in epihandy0906.One thing that I unexpectedly found out on the live server was that the “sa” login was having two SID’S. I believe SID’S are supposed to be unique. I made the following query.use mastergoSELECT sid FROM dbo.sysxlogins WHERE name = 'sa'Following were the results:1. 0x012. 0xFFBC9E1A55F9934EA4AFDEAE8AF9771Cuse mastergoSELECT sid FROM dbo.sysxlogins WHERE name = 'distributor_admin'1. 0xFFBC9E1A55F9934EA4AFDEAE8AF9771C2. 0xFFBC9E1A55F9934EA4AFDEAE8AF9771C3. NULLuse mastergoSELECT name FROM dbo.sysxlogins1. sa2. BUILTIN\Administrators3. distributor_admin4. NULL5. distributor_admin6. sa7. distributor_adminThere are two entries for the “sa” login. The only database user “dbo” seems to be correctly matched with the “sa” account along with the SID. i guess the uses in the tabled 'dbo.epiusers' are mapped back to the database sysuser table and sysuser is in turn mapped over sysxlogin table in the master database.Is the linkage between the NT login and the user information changed? I am using windows authentication.I had also user sp_change_users_login and sp_helplogins as well. There were no orphaned users found. It seems that the SIDS are matched properly but still no access to the database. I will appreciate any one can help me to go around it as I have tried many alternatives.thanx |
|
|
|
|