How migrate from SQL Express to SQL Server

V

VB Programmer

Using ASP.NET 2.0

I have a website which uses SQL Express.

My hosting company supports only SQL Server.

Any suggestions? What's the easiest way to migrate when I deploy? Will I
have to change any code, or just the connection string?

Thanks!
 
W

William Vaughn

It depends on whether or not you used the one and only feature in SQL
Express that's not supported on other editions--User Instance.
Otherwise, I expect that all you'll need to do is detach/reattach the
database and change the connection string.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant, Dad, Grandpa
Microsoft MVP
INETA Speaker
www.betav.com
www.betav.com/blog/billva
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)
 
V

VB Programmer

Would I have had to explicitly used User Instance? I don't think I used
it...
 
W

William Vaughn

Check your ConnectionString.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant, Dad, Grandpa
Microsoft MVP
INETA Speaker
www.betav.com
www.betav.com/blog/billva
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)
-----------------------------------------------------------------------------------------------------------------------
 

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

Top