For permissions and roles, how to use sql server 2005 standard edition instead of express?

K

keithb

I developed a web site that uses sql server express for permissions and
roles. Now I need to deploy it on a server that uses sql server 2005
standard edition instead of sql server express. What do I need to change so
that permissions and roles for my website use sql server 2005 standard
edition instead of sql server express?

Thanks,

Keith
 
G

Guest

You have to remove the default configuration in your web.config and then add
it back with the actual, new connection string:

<connectionStrings>
<remove name="LocalSqlServer" />
<add name="LocalSqlServer"
connectionString="server=localhost;database=XYZ;uid=whosit;pwd=whatsit"
providerName="System.Data.SqlClient" />
</connectionStrings>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,014
Latest member
BiancaFix3

Latest Threads

Top