473,471 Members | 2,613 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Failed to generate a user instance of SQL Server ...

.... due to failure in receiving user's application data path.

Okay, this simply cannot be a problem unique to me and I assume there is a
straight forward solution, but it escapes me.

I have completed a fully functional application using ASP.NET 2 on my
development site. Wanting to make it functional on a different server, I
installed SQL Express on the target server, then moved the application using
Visual Web Development to the new server.

The error message I used in the subject line started immediately.

The development system is Windows 2000 server while the target system is
running Windows 2003.

I suspect the problem is that I setup SQLexpress to use Windows
authentication, but I also made sure that it allows ASPNET full rights.

Can anybody lead me in the right direction with this? Thanks.
Dec 11 '07 #1
4 1920
I wish I had a dollar for every time this one comes up! SQLEXPRESS only
supports "User Instance" connection mode on the local machine. To set up your
database on a remote web server, you need to either ATTACH the MDF file and
change your connection string, or use the database publishing wizard (free
download) to create a full SQL Script which you can then run against the
remote database to recreate your "Stuff".
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
"James R. Davis" wrote:
.... due to failure in receiving user's application data path.

Okay, this simply cannot be a problem unique to me and I assume there is a
straight forward solution, but it escapes me.

I have completed a fully functional application using ASP.NET 2 on my
development site. Wanting to make it functional on a different server, I
installed SQL Express on the target server, then moved the application using
Visual Web Development to the new server.

The error message I used in the subject line started immediately.

The development system is Windows 2000 server while the target system is
running Windows 2003.

I suspect the problem is that I setup SQLexpress to use Windows
authentication, but I also made sure that it allows ASPNET full rights.

Can anybody lead me in the right direction with this? Thanks.
Dec 11 '07 #2
I must be really dense because I cannot understand what you have just said
about SQLExpress. That is, on my development system (W2K server), I built
this application using SQLExpress. None of my testers had any trouble
whatever in connecting with the development site using its URL and
exercising the application. Further, on the target server the ASPNETDB.MDF
is on THAT server within the APP_DATA directory - it is local to the
application in other words.
"Peter Bromberg [C# MVP]" <pb*******@yahoo.NoSpamMaam.comwrote in message
news:96**********************************@microsof t.com...
I wish I had a dollar for every time this one comes up! SQLEXPRESS only
supports "User Instance" connection mode on the local machine. To set up
your
database on a remote web server, you need to either ATTACH the MDF file
and
change your connection string, or use the database publishing wizard (free
download) to create a full SQL Script which you can then run against the
remote database to recreate your "Stuff".
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
"James R. Davis" wrote:
.... due to failure in receiving user's application data path.

Okay, this simply cannot be a problem unique to me and I assume there is
a
straight forward solution, but it escapes me.

I have completed a fully functional application using ASP.NET 2 on my
development site. Wanting to make it functional on a different server,
I
installed SQL Express on the target server, then moved the application
using
Visual Web Development to the new server.

The error message I used in the subject line started immediately.

The development system is Windows 2000 server while the target system is
running Windows 2003.

I suspect the problem is that I setup SQLexpress to use Windows
authentication, but I also made sure that it allows ASPNET full rights.

Can anybody lead me in the right direction with this? Thanks.


Dec 11 '07 #3
I hate to say it, but here you go:

if you followed any ASP.NET2.0 book to build a web site and used ASP.NET
management wizard to create ASPNETDB, and you have SQL Server Express
installed, and you haven't study more on SQL Server Express's USER INSTANCE,
then the problem is the natural outcome. MS (most ASP.NET 2.0 books) really
should not make use of SQL Server Express' USER INSTANCE as default without
explicitly requiring user to understand it first. You should only use USER
INSTANCE when you know what it is and it is suitable to your application.

Back to your direct problem (assume you have certainly known what USER
INSTANCE is):

1. Does the other server have SQL Server Express or other version of SQL
Server? Only SQL Server Express support USER INSTANCE. If you run a web
application from a server of hosting service provider, it is most likely
they have full SQL Server (Std, or Ent. edition), not SQL Server Express.

2. Even the server has SQL Server Express installed, deso it have its USER
INSTANCE enabled? That is, when installing SQL Server Express, you can
choose to enable/disable USER INSTANCE.

3. ASPNETDB.mdf means nothing uless being attached to an instance of SQL
Server (including USER INSTANCE).

4. Most web application do not need to use USER INSTANCE.
"James R. Davis" <ji*@msgroup.orgwrote in message
news:O%******************@TK2MSFTNGP04.phx.gbl...
>I must be really dense because I cannot understand what you have just said
about SQLExpress. That is, on my development system (W2K server), I built
this application using SQLExpress. None of my testers had any trouble
whatever in connecting with the development site using its URL and
exercising the application. Further, on the target server the
ASPNETDB.MDF
is on THAT server within the APP_DATA directory - it is local to the
application in other words.
"Peter Bromberg [C# MVP]" <pb*******@yahoo.NoSpamMaam.comwrote in
message
news:96**********************************@microsof t.com...
>I wish I had a dollar for every time this one comes up! SQLEXPRESS only
supports "User Instance" connection mode on the local machine. To set up
your
>database on a remote web server, you need to either ATTACH the MDF file
and
>change your connection string, or use the database publishing wizard
(free
download) to create a full SQL Script which you can then run against the
remote database to recreate your "Stuff".
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
"James R. Davis" wrote:
.... due to failure in receiving user's application data path.

Okay, this simply cannot be a problem unique to me and I assume there
is
a
straight forward solution, but it escapes me.

I have completed a fully functional application using ASP.NET 2 on my
development site. Wanting to make it functional on a different server,
I
installed SQL Express on the target server, then moved the application
using
Visual Web Development to the new server.

The error message I used in the subject line started immediately.

The development system is Windows 2000 server while the target system
is
running Windows 2003.

I suspect the problem is that I setup SQLexpress to use Windows
authentication, but I also made sure that it allows ASPNET full rights.

Can anybody lead me in the right direction with this? Thanks.

Dec 11 '07 #4
It has been a constant problem for me to try to use SQLExpress on my target
server. When I moved the application to the new server I received any
number of connection error messages as indicated by this thread. When I
created a new site on that server and moved the application to it, it worked
perfectly. I checked the permissions on both sites and they are identical.

In any event, since the target server is mine and I have a full SQL 2005
instance running on it, I merely changed the connect strings to access data
bases within it (after I copied the attached Express databases into it, of
course) and now either the original target site or the new one work
perfectly.

This is not a criticism of Express exactly. I used it to develop the
application and it was not going to be the production server at all. I
merely wanted to test the application using Express before I went the extra
mile and moved to the full SQL instance.

Thanks for the feedback, guys.
"Peter Bromberg [C# MVP]" <pb*******@yahoo.NoSpamMaam.comwrote in message
news:96**********************************@microsof t.com...
I wish I had a dollar for every time this one comes up! SQLEXPRESS only
supports "User Instance" connection mode on the local machine. To set up
your
database on a remote web server, you need to either ATTACH the MDF file
and
change your connection string, or use the database publishing wizard (free
download) to create a full SQL Script which you can then run against the
remote database to recreate your "Stuff".
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
"James R. Davis" wrote:
.... due to failure in receiving user's application data path.

Okay, this simply cannot be a problem unique to me and I assume there is
a
straight forward solution, but it escapes me.

I have completed a fully functional application using ASP.NET 2 on my
development site. Wanting to make it functional on a different server,
I
installed SQL Express on the target server, then moved the application
using
Visual Web Development to the new server.

The error message I used in the subject line started immediately.

The development system is Windows 2000 server while the target system is
running Windows 2003.

I suspect the problem is that I setup SQLexpress to use Windows
authentication, but I also made sure that it allows ASPNET full rights.

Can anybody lead me in the right direction with this? Thanks.


Dec 12 '07 #5

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

Similar topics

0
by: Shashikant Khandelwak | last post by:
Hi ! I am trying to install oracle 9i Standard edition on a windows 2000 SP4 machine. I get through the entire installation up to running the Database Configuration Assistant. While it tries to...
4
by: Sylvan | last post by:
I am new with this personalization stuff. Everything was working fine, however, now I always get the Login failed for user ''. The user is not associated with a trusted SQL Server connection....
10
by: musosdev | last post by:
Wonder if someone can help! We're getting the following error on our Intranet system as soon as we login.. ------------------ Exception Details: System.Data.SqlClient.SqlException: Login...
0
by: Dennis | last post by:
I am working on an ASP.NET 2.0 site. It runs fine on my local PC. When I deploy it to the server I get this error: Login failed for user ''. The user is not associated with a trusted SQL Server...
5
by: Ramtin | last post by:
Hi; when I use sql server connection or ole connection for working with database I receive the login failed for user 'any user that I work'.I've been granted ASPNET user in sql.
0
by: xtreme | last post by:
Hey guys! Need a lil help with this error. Where do i start? Um a newbie Failed to generate a user instance of SQL Server due to failure in starting the process for the user instance.The...
10
by: BLUE | last post by:
I'm using SQL Server 2005 Developer Edition on Windows XP SP2 with this setting: <add name="SqlServerTrustedConn" providerName="System.Data.SqlClient" connectionString="Data...
4
by: Amber | last post by:
The installer tells it faild to config db2inst1, the db2setup.err is as following: /usr/share/themes/Clearlooks/gtk-2.0/gtkrc:60: Engine "clearlooks" is unsupporte d, ignoring Jun 15, 2007...
4
by: Brett | last post by:
I have an ASP.NET 2.0 application that uses Forms Authentication. The startup page contains just a login control, and the site works well on an IIS 6 web server. I am now setting the site up on...
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
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...

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.