sql server - SQL express deployment on multiuser? -


i developing application small user group , decided use sql express.

so design normal sql express hosted in 1 machine(as server machine) , users client app connect sql-express host machine accessing db.

now problem remote clients not able connect db, host machine can access db. can please if have tried before ??

connection string used below, need change connection string ? data source=hostname\sqlexpress;integrated security=true; attachdbfilename=|datadirectory|\mydb.mdf;user instance=true;

note: users not domain connected lan connected.

the database service not setup listen on tcp port 1433 default security reasons. need use configuration utility enable remote access. need make sure port not being blocked firewall. these instructions sql server 2005 useful.

if users not running under domain account believe have issues authentication. may want add them domain, or enable sql server (password) authentication. after enabling can specify username , password via connection string. need make sure user exists , has access appropriate tables, views, or stored procedures.


Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -