473,472 Members | 2,176 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Do you have to rename ASPNETDB.MDF for ASP.NET 2.0 Web Hosters?

My web hoster says that I have to rename my ASPNETDB.MDF SqlExpress db for
my 2.0 site to work. Is this accurate?

If so, how can I rename it without breaking anything on my site?

FYI: This is the error I'm getting after I publish my site to their
servers...
An attempt to attach an auto-named database for file
c:\hosting\myhost\member\myaccount\customerdomains \mysite\App_Data\ASPNETDB.MDF
failed. A database with the same name exists, or specified file cannot be
opened, or it is located on UNC share.
Jan 27 '06 #1
5 3046
Well,

If they already have a database out their with the same name (some other
customer probably deployed before you did and they are calling it first come
first served) your only choice will be to rename and change your code... You
should just need to change your connection string to the database file in
your web.config.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"VB Programmer" <do**@emailme.com> wrote in message
news:u%****************@TK2MSFTNGP15.phx.gbl...
My web hoster says that I have to rename my ASPNETDB.MDF SqlExpress db for
my 2.0 site to work. Is this accurate?

If so, how can I rename it without breaking anything on my site?

FYI: This is the error I'm getting after I publish my site to their
servers...
An attempt to attach an auto-named database for file
c:\hosting\myhost\member\myaccount\customerdomains \mysite\App_Data\ASPNETDB.MDF
failed. A database with the same name exists, or specified file cannot be
opened, or it is located on UNC share.

Jan 27 '06 #2
Thanks. Few questions...

1. Why should it matter since everything (like the connection string) is
referencing my app_data dir? Isn't the SQLExpress MDF handled similar to an
Access MDB database? It's just a database file in a dir...
2. If I simply rename the db (in VS2005) and change the web.config VS STILL
automatically creates the ASPNETDB.mdf. Any ideas why?

Thanks again....

"S. Justin Gengo [MCP]" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:OM**************@TK2MSFTNGP10.phx.gbl...
Well,

If they already have a database out their with the same name (some other
customer probably deployed before you did and they are calling it first
come first served) your only choice will be to rename and change your
code... You should just need to change your connection string to the
database file in your web.config.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"VB Programmer" <do**@emailme.com> wrote in message
news:u%****************@TK2MSFTNGP15.phx.gbl...
My web hoster says that I have to rename my ASPNETDB.MDF SqlExpress db
for my 2.0 site to work. Is this accurate?

If so, how can I rename it without breaking anything on my site?

FYI: This is the error I'm getting after I publish my site to their
servers...
An attempt to attach an auto-named database for file
c:\hosting\myhost\member\myaccount\customerdomains \mysite\App_Data\ASPNETDB.MDF
failed. A database with the same name exists, or specified file cannot be
opened, or it is located on UNC share.


Jan 28 '06 #3
VB Programmer,

That's what I thought at first also. And I found out otherwise when I tried
to deploy a SQL Express database to a site experimentally. The ISP didn't
have SQL Express installed on the server. And because it wasn't installed my
database couldn't be loaded. It seems that SQL Express needs to be installed
on the server and it loads up databases just like SQL does. The only real
noticeable difference is how many connections it handles (of course there
are many other differences, but not many that affect day to day development
if a site is small). Anyway, no, SQL Express is not like an access database
file because the server has to be running a component.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"VB Programmer" <do**@emailme.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Thanks. Few questions...

1. Why should it matter since everything (like the connection string) is
referencing my app_data dir? Isn't the SQLExpress MDF handled similar to
an Access MDB database? It's just a database file in a dir...
2. If I simply rename the db (in VS2005) and change the web.config VS
STILL automatically creates the ASPNETDB.mdf. Any ideas why?

Thanks again....

"S. Justin Gengo [MCP]" <justin@[no_spam_please]aboutfortunate.com> wrote
in message news:OM**************@TK2MSFTNGP10.phx.gbl...
Well,

If they already have a database out their with the same name (some other
customer probably deployed before you did and they are calling it first
come first served) your only choice will be to rename and change your
code... You should just need to change your connection string to the
database file in your web.config.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"VB Programmer" <do**@emailme.com> wrote in message
news:u%****************@TK2MSFTNGP15.phx.gbl...
My web hoster says that I have to rename my ASPNETDB.MDF SqlExpress db
for my 2.0 site to work. Is this accurate?

If so, how can I rename it without breaking anything on my site?

FYI: This is the error I'm getting after I publish my site to their
servers...
An attempt to attach an auto-named database for file
c:\hosting\myhost\member\myaccount\customerdomains \mysite\App_Data\ASPNETDB.MDF
failed. A database with the same name exists, or specified file cannot
be opened, or it is located on UNC share.



Jan 28 '06 #4
My hoster says they just started supporting SQLExpress (after much begging
by myself.)

The wierd thing is one data-driven page is working perfectly. All the
others (using the same db) give me the error:

An attempt to attach an auto-named database for file
c:\hosting\myhost\member\myaccount\customerdomains \mysite\App_Data\ASPNETDB.MDF
failed. A database with the same name exists, or specified file cannot be
opened, or it is located on UNC share.

Any more insight is much appreciated.

Thanks again...

"S. Justin Gengo [MCP]" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:%2****************@TK2MSFTNGP10.phx.gbl...
VB Programmer,

That's what I thought at first also. And I found out otherwise when I
tried to deploy a SQL Express database to a site experimentally. The ISP
didn't have SQL Express installed on the server. And because it wasn't
installed my database couldn't be loaded. It seems that SQL Express needs
to be installed on the server and it loads up databases just like SQL
does. The only real noticeable difference is how many connections it
handles (of course there are many other differences, but not many that
affect day to day development if a site is small). Anyway, no, SQL Express
is not like an access database file because the server has to be running a
component.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"VB Programmer" <do**@emailme.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Thanks. Few questions...

1. Why should it matter since everything (like the connection string) is
referencing my app_data dir? Isn't the SQLExpress MDF handled similar to
an Access MDB database? It's just a database file in a dir...
2. If I simply rename the db (in VS2005) and change the web.config VS
STILL automatically creates the ASPNETDB.mdf. Any ideas why?

Thanks again....

"S. Justin Gengo [MCP]" <justin@[no_spam_please]aboutfortunate.com> wrote
in message news:OM**************@TK2MSFTNGP10.phx.gbl...
Well,

If they already have a database out their with the same name (some other
customer probably deployed before you did and they are calling it first
come first served) your only choice will be to rename and change your
code... You should just need to change your connection string to the
database file in your web.config.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"VB Programmer" <do**@emailme.com> wrote in message
news:u%****************@TK2MSFTNGP15.phx.gbl...
My web hoster says that I have to rename my ASPNETDB.MDF SqlExpress db
for my 2.0 site to work. Is this accurate?

If so, how can I rename it without breaking anything on my site?

FYI: This is the error I'm getting after I publish my site to their
servers...
An attempt to attach an auto-named database for file
c:\hosting\myhost\member\myaccount\customerdomains \mysite\App_Data\ASPNETDB.MDF
failed. A database with the same name exists, or specified file cannot
be opened, or it is located on UNC share.



Jan 28 '06 #5
VB Programmer wrote:
Thanks. Few questions...

1. Why should it matter since everything (like the connection string) is
referencing my app_data dir?
ASPNET looks for a specific connection string named "LocalSqlServer" to connect to the security database for its authorization, roles and membership info.
Isn't the SQLExpress MDF handled similar to an
Access MDB database? It's just a database file in a dir...
No, SQLExpress is a full-fledged relational database engine. Although the data is in an MDF file on the hard drive, that data file is manipulated every which way from Sunday by the engine.
2. If I simply rename the db (in VS2005) and change the web.config VS STILL
automatically creates the ASPNETDB.mdf. Any ideas why?


When you start the WebConfiguration tool in VS2005 (and there isn't a security database for the Web Site which is recognized as such by the VS2005 development server), a half-dozen SQL scripts are run to create the database and the tables within it. Those SQL scripts all have the database name of "ASPNETDB" hard-coded in them.

--
Take care,
Ken
(to reply directly, remove the cool car. <sigh>)
Jan 29 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: VB Programmer | last post by:
I want to use add some of my own tables to ASPNETDB.mdf to store shopping cart products, checkout information, additional user information, etc... Is it recommended that I put this in the same db?...
2
by: te goody | last post by:
Problem summary: Web Site Admin Tool is not generating the application services database (aspnetdb.mdf); i.e. The DB is not found under the app_data directory. The Question: What configuration...
0
by: te goody | last post by:
Problem summary: Web Site Admin Tool is not generating the application services database (aspnetdb.mdf) in a SS 2005 only environment; i.e. The DB is not found under the app_data directory. The...
3
by: Freddie | last post by:
hi, i try to get the asp.net 2.0 security controls to work with SQL Server 2005 Dev RTM, this is my connetion string in mashine.config <connectionStrings> <add name="LocalSqlServer"...
0
by: mehdi | last post by:
Hi folks, I'm designing an sql server 2005 database to hold accounting information of a given company (ies). The database containg a table for EmployeeAccounts which in turn should be somehow...
4
by: R.A.M. | last post by:
Hello, I am learning ASP.NET. In web application I am programming now I decided to add a table "Users" to aspnetdb database (with extra data about users) and a trigger AFTER UPDATE of...
1
by: John Kotuby | last post by:
Hello all.. TIA for any help. I was told that if I'm not using the built in Membership/Forms Authentication feature in ASP.NET 2.0 that I can delete ASPNETDB.MDF. I guess it appeared when I...
0
by: Ryan | last post by:
PLEASE HELP!! I am trying to do what I think should be the simplest thing. In Visual Studio 2005, I set up a datagrid and then went ot configure a datasource for it. I made my connection to...
3
by: =?Utf-8?B?RGF2ZQ==?= | last post by:
How can I rename the default ASPNETDB.MDF database when a login control is used? -- L. A. Jones
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.