![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I developed my ASP.NET 2.0 web app using SQL Express. Now I'm moving it to production. On my web server I attached the SQL Express mdf database to a new SQL Server database. The (example) SQL Server settings are: DB Name: rnz_mydb Server IP: sql123.MyHost.com Login ID: rnz_admin Db Type: MSSQL 2005 The current web.config connection string is this: connectionStrings remove name="LocalSqlServer" / add name="LocalSqlServer" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / /connectionStrings What should the connection string be now (to point to the new SQL SERVER db)? Thanks! |
#3
| |||
| |||
|
|
I developed my ASP.NET 2.0 web app using SQL Express. Now I'm moving it to production. On my web server I attached the SQL Express mdf database to a new SQL Server database. The (example) SQL Server settings are: DB Name: rnz_mydb Server IP: sql123.MyHost.com Login ID: rnz_admin Db Type: MSSQL 2005 The current web.config connection string is this: connectionStrings remove name="LocalSqlServer" / add name="LocalSqlServer" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / /connectionStrings What should the connection string be now (to point to the new SQL SERVER db)? Thanks! |
#4
| |||
| |||
|
|
A remote SQL Server database needs to be addressed in two ways: 1) The system or machine name. When the database was on the local system this was "." but we have no way to know what that is. Let's say it's "George". 2) The SQL Server Instance name. We have no way of knowing the instance name on the target server would be. Let's say it's "Fred". In this example the ConnectionString would look something like this: "Server=George\Fred;integrated security=SSPI;initial catalog=ASPNETDB" There is no need to reattach the database since you already attached it to the remote server master database. See Chapter 9 of my book. hth -- ____________________________________ William (Bill) Vaughn Author, Mentor, Consultant Microsoft MVP INETA Speaker www.betav.com/blog/billva www.betav.com Please reply only to the newsgroup so that others can benefit. This posting is provided "AS IS" with no warranties, and confers no rights. __________________________________ Visit www.hitchhikerguides.net to get more information on my latest book: Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition) and Hitchhiker's Guide to SQL Server 2005 Compact Edition (EBook) ----------------------------------------------------------------------------------------------------------------------- "Cirene" <test (AT) test (DOT) com> wrote in message news:OlD5Ad5NIHA.4584 (AT) TK2MSFTNGP03 (DOT) phx.gbl... I developed my ASP.NET 2.0 web app using SQL Express. Now I'm moving it to production. On my web server I attached the SQL Express mdf database to a new SQL Server database. The (example) SQL Server settings are: DB Name: rnz_mydb Server IP: sql123.MyHost.com Login ID: rnz_admin Db Type: MSSQL 2005 The current web.config connection string is this: connectionStrings remove name="LocalSqlServer" / add name="LocalSqlServer" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / /connectionStrings What should the connection string be now (to point to the new SQL SERVER db)? Thanks! |
#5
| |||
| |||
|
|
Does attaching a database basically import it into an SQL Server DB, or does it actually use the SQL Express mdf file? "William (Bill) Vaughn" <billvaRemoveThis (AT) betav (DOT) com> wrote in message news:00E45622-F611-4FE6-8481-6596E93F9D38 (AT) microsoft (DOT) com... A remote SQL Server database needs to be addressed in two ways: 1) The system or machine name. When the database was on the local system this was "." but we have no way to know what that is. Let's say it's "George". 2) The SQL Server Instance name. We have no way of knowing the instance name on the target server would be. Let's say it's "Fred". In this example the ConnectionString would look something like this: "Server=George\Fred;integrated security=SSPI;initial catalog=ASPNETDB" There is no need to reattach the database since you already attached it to the remote server master database. See Chapter 9 of my book. hth -- ____________________________________ William (Bill) Vaughn Author, Mentor, Consultant Microsoft MVP INETA Speaker www.betav.com/blog/billva www.betav.com Please reply only to the newsgroup so that others can benefit. This posting is provided "AS IS" with no warranties, and confers no rights. __________________________________ Visit www.hitchhikerguides.net to get more information on my latest book: Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition) and Hitchhiker's Guide to SQL Server 2005 Compact Edition (EBook) ----------------------------------------------------------------------------------------------------------------------- "Cirene" <test (AT) test (DOT) com> wrote in message news:OlD5Ad5NIHA.4584 (AT) TK2MSFTNGP03 (DOT) phx.gbl... I developed my ASP.NET 2.0 web app using SQL Express. Now I'm moving it to production. On my web server I attached the SQL Express mdf database to a new SQL Server database. The (example) SQL Server settings are: DB Name: rnz_mydb Server IP: sql123.MyHost.com Login ID: rnz_admin Db Type: MSSQL 2005 The current web.config connection string is this: connectionStrings remove name="LocalSqlServer" / add name="LocalSqlServer" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirector y|\zASPNETDB.MDF;Integrated Security=True;Initial Catalog=ASPNETDB" providerName="System.Data.SqlClient" / /connectionStrings What should the connection string be now (to point to the new SQL SERVER db)? Thanks! |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |