I'm creating a program which accesses MS SQL Server 2008, the problem is that I can run the program smoothly as an administrator account, even on different subnet computers and using terminal service (mstsc). But the program can not successfully access SQL Server if using another account, even though I've already included the account into SQL permissions, Terminal Service configuration, add the Administrators user group.
On SQL Server Network Configuration - Protocol - TCP/IP is Enabled.
What am I forgetting to do?
EXEC sp_addsrvrolemember 'Domain\your account', 'sysadmin'; GO– AmmarR Jun 17 '12 at 20:44