473,406 Members | 2,867 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

create aspnetdb from scratch

Hello.
How can I create aspnetdb from scratch ?
(I want a script that create all table, views, etc... on that database).

Thanks :)
Oct 28 '08 #1
6 8795

This link:
http://sholliday.spaces.live.com/Blog/cns!A68482B9628A842A!160.entry
has the link to the cmd line tool to create a fresh / blank db. (scottgu
link)
My addition is a "data transferer"


"Mr. X." <no_spam_please@nospam_please.comwrote in message
news:OA*************@TK2MSFTNGP03.phx.gbl...
Hello.
How can I create aspnetdb from scratch ?
(I want a script that create all table, views, etc... on that database).

Thanks :)

Oct 28 '08 #2
I need especially the aspnetdb database's script
In that site
(http://sholliday.spaces.live.com/Blog/cns!A68482B9628A842A!160.entry
) for creating all the elements (tables, views, etc...),
that I should copy & paste it into Query Analyser on my site.

Thanks :)
Oct 28 '08 #3
build the database once, then use enterprise manager or a database project to
generate the scripts
-- bruce (sqlwork.com)
"Mr. X." wrote:
I need especially the aspnetdb database's script
In that site
(http://sholliday.spaces.live.com/Blog/cns!A68482B9628A842A!160.entry
) for creating all the elements (tables, views, etc...),
that I should copy & paste it into Query Analyser on my site.

Thanks :)
Oct 28 '08 #4
If the DB was just on my computer, I could do it long time ago,
but the database, which is aspnetdb - a specific database, that for some
unknown reason, Microsoft enforce someone who deploy his site to have,
should be on the hosting site only SQL-Server 2005.

I try some ways to create a database :
founded on http://www.4shared.com/file/59591680...NETDB_TMP.html,
.... then by Microsoft SQL Server Management I created a "bak" file,
but the hosting provider tell me everything O.K, except I should send him a
SQL-Server 2005.

I don't know how to check the version of SQL-Server 2005 (of the link
above),
but if I found a link as the previous one (for SQL-Server 2005), it would be
fine.

I just need a file : bakup file or script file, that I can put on the
hosting server, without any problems.
I am searching that file (.bak or .sql of SQL-Server 2005 version), but I
didn't find yet.
I don't know why just putting a file on the internet, and save efforts
creating it, since this is a standard file (aspnetdb), that always should be
when deploying my site.

If you have a link to that file (bak or sql for SQL-Server 2005 version), it
would be great.

Please, help.

Thanks :)
Oct 29 '08 #5
You are not forced to deploy this db. Either you have something in your
web.config that tells to use this db either your provider is forcing its
use.

Though creating a dummy db would solve your problem I would rather check the
web.config file to make sure it is not used unintentionaly (as you don't
need it locally it would seem your hoster is forcing (unintentionaly) this
use ???.

--
Patrice
"Mr. X." <no_spam_please@nospam_please.coma écrit dans le message de
groupe de discussion : u0**************@TK2MSFTNGP06.phx.gbl...
If the DB was just on my computer, I could do it long time ago,
but the database, which is aspnetdb - a specific database, that for some
unknown reason, Microsoft enforce someone who deploy his site to have,
should be on the hosting site only SQL-Server 2005.

I try some ways to create a database :
founded on
http://www.4shared.com/file/59591680...NETDB_TMP.html,
... then by Microsoft SQL Server Management I created a "bak" file,
but the hosting provider tell me everything O.K, except I should send him
a SQL-Server 2005.

I don't know how to check the version of SQL-Server 2005 (of the link
above),
but if I found a link as the previous one (for SQL-Server 2005), it would
be fine.

I just need a file : bakup file or script file, that I can put on the
hosting server, without any problems.
I am searching that file (.bak or .sql of SQL-Server 2005 version), but I
didn't find yet.
I don't know why just putting a file on the internet, and save efforts
creating it, since this is a standard file (aspnetdb), that always should
be when deploying my site.

If you have a link to that file (bak or sql for SQL-Server 2005 version),
it would be great.

Please, help.

Thanks :)
Oct 29 '08 #6
Hi.

First time after deployment on VS 2008.
(Just create the login wizard in VS 2008 - VB, and deploy).

The I got the following error :
======================

Server Error in '/' Application.
--------------------------------------------------------------------------------

Failed to generate a user instance of SQL Server due to failure in
retrieving the user's local application data path. Please make sure the user
has a local user profile on the computer. The connection will be closed.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Failed to generate a
user instance of SQL Server due to failure in retrieving the user's local
application data path. Please make sure the user has a local user profile on
the computer. The connection will be closed.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
******
******
After looking in google (I may be wrong, but too much sites, telling the
same),
I see that the above is related to sqlnetdb.mdf, and I should create one.
Yet, I don't use any database.

Here is the web.config, what the deployment enviormnet by VS 2008 put
automatically :

<?xml version="1.0"?>
<configuration>
<appSettings/>
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.

Visual Basic options:
Set strict="true" to disallow all data type conversions
where data loss can occur.
Set explicit="true" to force declaration of all variables.
-->
<customErrors mode="Off"/>
<compilation debug="true" strict="false" explicit="true">
</compilation>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Generic"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Linq"/>
<add namespace="System.Xml.Linq"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<!--
The <authenticationsection enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows"/>
<!--
The <customErrorssection enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly"
defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
</system.web>
<system.codedom>
</system.codedom>
<!--
The system.webServer section is required for running ASP.NET AJAX
under Internet
Information Services 7.0. It is not necessary for previous version
of IIS.
-->
<system.webServer>
</system.webServer>
</configuration>

Second : I put the file on the link I gave
==============================
http://www.4shared.com/file/59591680...NETDB_TMP.html
and also the ASPNETDB_TMP_log.LDF

What I see, that this database is just using to record and trace members (or
something like that).

I have tried to add a reference in web.config like this :
....
<configuration>
<connectionStrings>
<remove name="LocalSqlServer" />

<add name="LocalSqlServer" connectionString="data
source=.\SQLEXPRESS;Integrated
Security=True;AttachDBFilename=|DataDirectory|aspn etdb.mdf;User
Instance=true"
providerName="System.Data.SqlClient" />
</connectionStrings>
...

Still I got the same error.

The hosting company supports sqlexpress & also sql-server 2005, and insist
to send them a ".bak" or ".sql" version
of SQL-Server-2005.

Neighter of them are right, since they are not SQL-Server-2005 version.

I would be glade, whether I not need now the ASPNETDB.MDF (for some reason,
I understood that aspnetdb.mdf is a database that must be on server site,
when doing deployment, and also app_data folder).

Look for any solution.

Thanks :)
Oct 29 '08 #7

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

Similar topics

2
by: Arne | last post by:
Can I copy aspnetdb.mdf tp another computer and expect the ASPNet account to have rights to open this database? What is the proper way copy ASPNETDB to another webserver? What is the proper wat to...
5
by: VB Programmer | last post by:
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...
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...
0
by: RAM | last post by:
Hello, I have written simple ASP.NET application with logging in. I need to open ASPNETDB database to read some information which is not available using class library (custom table). I have...
1
by: CFTK | last post by:
This is the error I get when I try to login in my application from another machine: An attempt to attach an auto-named database for file C:\Documents and Settings\....\App_Data\aspnetdb.mdf...
16
by: Mich | last post by:
Hi, i'm building an web application for anonymous users. They can take a look in the website, nothing more. In order to perform other actions, the anonymous user must be logged. So i create an...
3
by: GaryDean | last post by:
I noticed that my asp.net project contains a 10 meg ASPNETDB.MDF database in the App_data folder. I never intentionally put it there, have never ran regsql.exe. Reading back on my logs it got...
3
by: R.A.M. | last post by:
Hello, I have created ASP.NET application with aspnetdb database. In the following codeI have an error: System.Security.Principal.IPrincipal user = HttpContext.Current.User; if...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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
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...

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.