Viewing 5 posts - 1 through 5 (of 5 total)
What is your server configuration? OS ? 32-bit or 64-bit?
September 10, 2010 at 2:32 am
use yourdbname
exec sp_change_users_login 'AUTO_FIX','yourloginname'
another way out of this is to delete schema & user from your database, recreate login and map itto your 3 database .
September 10, 2010 at 12:25 am
This seems to be a problem that remote access is not properly configured.
exec sp_configure 'remote access', 1
go
reconfigure
go
September 10, 2010 at 12:12 am
We had same problem couple of months ago with a PC running in the domain. To solve this problem, we manually created an DSN under administrator account, with TCP/IP connection...
August 16, 2010 at 3:06 am
Viewing 5 posts - 1 through 5 (of 5 total)