开发者

How to add on users to my sql server 2008 database?

I have a sharepoint site with sql connection. I am able to vie开发者_StackOverfloww the info on the page but other sharepoint users in the company can't. How can I add them on as users to my database? My connection string on my page is as follows :

con = new SqlConnection("server=srvgmssapqas;database=hrportal2;Trusted_Connection=True");


No, you should not give all the company users permissions to access the database.

The Trusted_Connection=True piece of the connection string means that account used by SharePoint's application pool is used to access the database.

Read the Account permissions and security settings (Office SharePoint Server) article for more information.


you dont, you make a view and connect the users to that view, not the basic db.

but if you saying that each user can connect to the sql server 2008 in a single pc using his sql server mangmt stdio then,

on that one cpu having the db, you need to add those who can connect to your sql server by

right click security> logins >>new login >> search for user and select it >> if the user is no your network the computer name should appear in the search.

or

just enable the sa account and change the password.

be sure that sql server08 is installed with "MIXED MODE AUTHENTICATION" or else this will not work. "INSTALL ANOTHER INSTANCE WITH OPTION "botn windows and mixed mode authentication"

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜