I want to bring in Database Cache Dependency for my WebApplication. For that, I learned that the first step is settingup database for notifications when database/tables change. And I see it explained to use Aspnet_regsql.
But I do not have it in my C:WindowsMicrosoft.NETFrameworkv1.1.4322 folder.
Hi! How can configure a SQL2005 Express database file (.mdf) for application services (memberships, role management ...)? aspnet_regsql accepts only databases, but not with individual database files. It would be important for me to have all data of a single application be stored in a separate file, hereby it would be easier to copy data to a remote host. Currently I copy ASPNETDB.mdf to the host, but it contains (membership and role management) data for every application created on my machine. Szabolcs
i already ran aspnet_regsql but i still get below...anyone know why? thanks in advance
Could not establish a connection to the database. If you have not yet created the SQL Server database, exit the Web Site Administration tool, use the aspnet_regsql command-line utility to create and configure the database, and then return to this tool to set the provider.
I installed ASPNETDB with the standard script, but then learned it was possible to integrate this membership db into my existing db (haven't done this yet, but will tomorrow then I'll delete the auto-created ASPNETDB for clarity).That's Great. Now.....I'm not sure the best way to tie this information into with my existing data. I assume I should use the UserID field but how should I do it? Should I update my existing customers table with a copy of the UserID value upon creation? If so, how do I do that? I can create the relations between whichever tables, but I am curious as to your recommended method.Thanks for your help.jb
hi... I want to Create an Application Service Database for SQL Server, SqlWebEventProvider, and i am trying to write in command line: c:>C:WINDOWSMicrosoft.NETFrameworkv2.0.50727aspnet_regsql.exe -U user -P pass -S sqlserversqltest -A w i get the following error: The argument 'sqlserversqltest' is invalid. why is that? do i have to use the following flags: -ssadd -sstype t ? and, how is the right way to do this...? thank you...
Hi, It seems everytime I create a new project, I have to run aspnet_regsql to map the database to my application, otherwise, there'll be errors when trying to connect to SQL in my application. My question is, is this a norm? To be executing this procedure everytime I create a web application?
I'm using aspnet_regsql to run the ASP.NET SQL Server Setup Wizard. On the page titled "Select the Server and Database", there is a drop-down list of database names I have used. Is there a way to delete the names in that list that I no longer want?
I have been having some trouble. I am new to this and am having issues when I am running aspnet_regsql always getting the error:System.Web.HttpException: Unable to connect to SQL Server database. ---> System.Data.SqlClient.SqlException: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)...my question is how do I change the default settings to allow it to run?Regards,Patrick
I am trying to run aspnet_regsql to set up the membership tables on this SQL 2005 server. It’s a new installation of SQL 2005, using "SQL Server and Windows Authentication mode" Security. I followed the directions at http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277 to enable remote connections, enabling the browser service, and opening the firewall. Under SQL Server Configuration manager, I see the protocols for Shared Memory, Named Pipes, and TCP/IP are enabled. Also the Services SQL Server, Server Agent, and Server Browser are automatically running. But when I run aspnet_regsql I get the error: Unable to connect to SQL Server database (because of error 40 – could not open a connection to SQL Server). What else could be needed to allow this connection?
I need to setup some asp security databases and I have seen several sets of instructions. Some say "Navigate to C:WINDOWSMicrosoft.NETFrameworkv2.0.50727" and some say at the "asp command box". I do know that the directory & file exists on my machine. I have run aspnet_regsql.exe to configure my local server. I now need to run it to configure my web host SQL Server 2005 and that requires some paramaters like "aspnet_regsql.exe -S [DB Server Name] -U [DB login] -P [Password] -A all -d [Database name]". I am old and started before windows. I know DOS. But obviously not well enough. How do you "Navigate to C:WINDOWSMicrosoft.NETFrameworkv2.0.50727"? If I say "CDWINDOWS", it works. When I am at the "C:WINDOWS>" prompt and say "CD Microsoft.NET" it says "invalid directory" When I am at the "C:>" prompt and say "CDWINDOWSMicrosoft.NET" it says "invalid directory" When I am at the "C:>" prompt and say "CDWINDOWSMicros~1" it says "invalid directory" Thanks for your help. John Brown
I have been reading on aspnet_regsql.exe tool and still haven't found my answer. So here we go... I am using VWD Express and I have already made many pages in many dbs within the app folder. My question is how do I use the aspnet_regsql.exe tool to know what DB that I want the tool to know AND how do I put in the name of the DB on my sql hosting server? For instance:Let say in my app folder I have a DB named testDB.mdf and my hosting sql server is named sqlHostingServer... so if I use the command line entry in accordance with the documentation, it should look like this (in the dos prompt):aspnet_regsql.exe -E -S localhost -d testdb.mdf -A all -sqlexportonly c:output.sqlbut it seems that for the DB name I can put anything I want and still gives me output... wtfark... any help? I don't work at Microsoft so please simple documentation or something like that.Thanks,MR
Does anyone know what aspnet_regsql.exe requires to run stand-alone? I have to apply the .NET 2.0 Management/Role API to a sql2000 database on a machine that does not have the .net 2.0 framework installed.
Im trying to setup a SQL server 2000 database to use membership & roles. Running aspnet_regsql.exe gives me the following errorsSetup failed.Exception:An error occurred during the execution of the SQL file 'InstallCommon.sql'. The SQL error number is 515 and the SqlException message is: Cannot insert the value NULL into column 'Column', table 'tempdb.dbo.#aspnet_Permissions_________________________________________________________________________________________________000000008000'; column does not allow nulls. INSERT fails.Warning: Null value is eliminated by an aggregate or other SET operation.The statement has been terminated.----------------------------------------Details of failure----------------------------------------SQL Server: Database: [AddressVerification]SQL file loaded:InstallCommon.sqlCommands failed:CREATE TABLE #aspnet_Permissions( Owner sysname, Object sysname, Grantee sysname, Grantor sysname, ProtectType char(10), [Action] varchar(20), [Column] sysname)INSERT INTO #aspnet_PermissionsEXEC sp_helprotectIF (EXISTS (SELECT name FROM sysobjects WHERE (name = N'aspnet_Setup_RestorePermissions') AND (type = 'P')))DROP PROCEDURE [dbo].aspnet_Setup_RestorePermissionsSQL Exception:System.Data.SqlClient.SqlException: Cannot insert the value NULL into column 'Column', table 'tempdb.dbo.#aspnet_Permissions_________________________________________________________________________________________________000000008000'; column does not allow nulls. INSERT fails.Warning: Null value is eliminated by an aggregate or other SET operation.The statement has been terminated. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at System.Web.Management.SqlServices.ExecuteFile(String file, String server, String database, String dbFileName, SqlConnection connection, Boolean sessionState, Boolean isInstall, SessionStateType sessionStatetype)Ive run this many times on other servers and have never come across this problem before. Has anyone else ? Does anyone know the cause and if there is a fix ??** I am logged in with full admin privaliges tiaMark.
I've been using SQL Serer 2000 or SQL Server 2005 (external) for my website and I have it configured through the aspnet_regsql tool. The hosting company doesn't offer access to SQL Server to configure the database. So I thought I'd use SQL Express. Only problem is now I can use the exe to set up this db.
Does anyone know of a good way to configure this database for my website?
I just ran the utility without any commands ant the wizard has come up. This is all independent of my web application.I am guessing this is going to install the database tables to my existing database. UPDATE: They have been createdWill I then connect my web app to this database schema that is created?How do I change the membership/roles users in my web app to point to the database tables?
Hi, My client is US based. Now I want to send them the database script for the package installation. Client does'nt have any technical people. So all I have to do it remotely from India. So could any one guide me on this?
Hi, My client is US based. Now I want to send them the database script for the package installation. Client does'nt have any technical people. So all I have to do it remotely from India. So could any one guide me on this?
Hi I have just started using the SQL Server 2005 Express Edition and wondering how to install the InstNwnd.sql from the sql file. I can't find any way to insert the database
to download AdventureWorksDB.msi. Once I save that to my local machine I run the install and it completes with no errors. Unfortunately, I can't see any of the data in SQL Server Management Studio Express. I'm new to SQL Server Express so maybe its me, but I get the feeling that it was never added to the database. I'm still looking for SQLServerExpressSamplesOverview.htm to see if I am missing a step but I can't find it anywhere.
The install seems to have extracted database files but if I need to run some scripts by hand to create the database I don't know which order to run them in.
Hi there,I have a database on my test machine that will need to be installed on usersmachines. I would like to create the database with the given schema on theusers machine and also with some suitable default values in the tables. Inote that although I can script the schema so that re-creating the structureof the database is simple on the users machine, I cannot script the contentsof the tables also (automatically). What I would like to do is take somekind of "snapshot", save it as a script and then run this script in myinstaller. Are there any tools available to do this?Secondly and related to the above: if I subsequently make changes to thedatabase schema (adding or removing columns, altering, adding or removingstored procedures etc.), how do I roll out those changes to a customer? DoI need to hand code an "upgrade" script, or is there a tool that willproduce a "difference between" script I can run on the customers machine?Thanks for any tips you can give me about this.Robin
I was installing SQL server 2005 by unattended installation. I've been using this method for a few times before, and they were all successful. However, when I use this method recently, the following message pops up in the middle of the installation (around the time when it is trying to install SQL Server Database service):
SQL Server Setup was unable add user NTADMINNcheng to local group SQLServer2005MSFTEUser$NTHKGV34$NCHENG
and because of this, the whole setup failed.
Could someone please help me on this issue? Thanks in advance.
I am hoping someone can help me. I am having issues changing the service account MSSQLSERVER. I changed it to Local System only due to issues installing Service Packs up SP2 Critical. I used the Configuration tool to do so. I have installed all patches up to and including Critical update ( KB 934458 ). I had a heck of a time getting them to install under custom service accounts. Now when I change the service accounts back to a custom account using the configuration tool the service wont start at all.
To be clear. The service runs fine under Local System Account, but I want to run it under a limited account. I used the config tool and made sure the permissions groups were added, but it still fails to start. I am not sure what SSL log entries below is referring to.
I am running:
SQL Server Standard Edition x86 Windows 2003 Stnd SP2
Below is the log file: 2007-09-01 23:50:16.15 spid9s Starting up database 'model'. 2007-09-01 23:50:16.20 Server Error: 17190, Severity: 16, State: 1. 2007-09-01 23:50:16.20 Server FallBack certificate initialization failed with error code: 1. 2007-09-01 23:50:16.20 Server Unable to initialize SSL encryption because a valid certificate could not be found, and it is not possible to create a self-signed certificate. 2007-09-01 23:50:16.21 Server Error: 17182, Severity: 16, State: 1. 2007-09-01 23:50:16.21 Server TDSSNIClient initialization failed with error 0x80092004, status code 0x80. 2007-09-01 23:50:16.21 Server Error: 17182, Severity: 16, State: 1. 2007-09-01 23:50:16.21 Server TDSSNIClient initialization failed with error 0x80092004, status code 0x1. 2007-09-01 23:50:16.21 Server Error: 17826, Severity: 18, State: 3. 2007-09-01 23:50:16.21 Server Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log. 2007-09-01 23:50:16.21 Server Error: 17120, Severity: 16, State: 1. 2007-09-01 23:50:16.21 Server SQL Server could not spawn FRunCM thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.
I am not DBA or very heavy IT, but rather a developer wearing multiple hats, for the time being. So any help is greatly appreciated.
Trying to install SQL Server Express Edition from downloaded file SQLEXPR_DUT.EXE. MSXML6, SQL Setup support files, SQL Native Client and SQL VSS Writer are all installed ok, but SQL Server Database Services fails with a message that the SQL Server-service cannot be started and to look at Book Online for error files and starting manually. The end of the relevant error file would seem to be:
2006-07-26 18:45:47.33 Server SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required. 2006-07-26 18:45:47.33 Server Detected 1 CPUs. This is an informational message; no user action is required. 2006-07-26 18:45:47.48 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required. 2006-07-26 18:45:47.49 Server Database Mirroring Transport is disabled in the endpoint configuration. 2006-07-26 18:45:47.49 spid5s Warning ****************** 2006-07-26 18:45:47.50 spid5s SQL Server started in single-user mode. This an informational message only. No user action is required. 2006-07-26 18:45:47.50 spid5s Starting up database 'master'. 2006-07-26 18:45:47.60 spid5s Recovery is writing a checkpoint in database 'master' (1). This is an informational message only. No user action is required. 2006-07-26 18:45:47.71 spid5s SQL Trace ID 1 was started by login "sa". 2006-07-26 18:45:47.75 spid5s Starting up database 'mssqlsystemresource'. 2006-07-26 18:45:47.78 spid5s The resource database build version is 9.00.2047. This is an informational message only. No user action is required. 2006-07-26 18:45:48.20 spid5s Error: 15209, Severity: 16, State: 1. 2006-07-26 18:45:48.20 spid5s An error occurred during encryption. 2006-07-26 18:45:48.20 spid5s SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
I downloaded the Northwind database install script (SQL2000SampleDb.msi) and ran instnwnd.sql in my SQL Server Management Studio Express. I got the following error messages:
Msg 5105, Level 16, State 2, Line 1
A file activation error occurred. The physical file name 'northwnd.mdf' may be incorrect. Diagnose and correct additional errors, and retry the operation.
Msg 1802, Level 16, State 1, Line 1
CREATE DATABASE failed. Some file names listed could not be created. Check related errors.
Msg 15010, Level 16, State 1, Procedure sp_dboption, Line 64
The database 'Northwind' does not exist. Use sp_helpdb to show available databases.
Msg 15010, Level 16, State 1, Procedure sp_dboption, Line 64
The database 'Northwind' does not exist. Use sp_helpdb to show available databases.
Msg 911, Level 16, State 1, Line 1
Could not locate entry in sysdatabases for database 'Northwind'. No entry found with that name. Make sure that the name is entered correctly.
Msg 3726, Level 16, State 1, Line 2
Could not drop object 'dbo.Customers' because it is referenced by a FOREIGN KEY constraint.
Msg 3726, Level 16, State 1, Line 2
Could not drop object 'dbo.Employees' because it is referenced by a FOREIGN KEY constraint.
Msg 2714, Level 16, State 6, Line 1
There is already an object named 'Employees' in the database.
Msg 1913, Level 16, State 1, Line 1
The operation failed because an index or statistics with name 'LastName' already exists on table 'dbo.Employees'.
Msg 1913, Level 16, State 1, Line 1
The operation failed because an index or statistics with name 'PostalCode' already exists on table 'dbo.Employees'.
Msg 2714, Level 16, State 6, Line 1
There is already an object named 'Customers' in the database.
Msg 1913, Level 16, State 1, Line 1
The operation failed because an index or statistics with name 'City' already exists on table 'dbo.Customers'.
Msg 1913, Level 16, State 1, Line 1
The operation failed because an index or statistics with name 'CompanyName' already exists on table 'dbo.Customers'.
Msg 1913, Level 16, State 1, Line 1
The operation failed because an index or statistics with name 'PostalCode' already exists on table 'dbo.Customers'.
Msg 1913, Level 16, State 1, Line 1
The operation failed because an index or statistics with name 'Region' already exists on table 'dbo.Customers'.
(1 row(s) affected)
............................................etc.
Please help and advise me how to get the Northwind database installed in my SQL Server Management Studio Express.
I am getting the following error while installing a SQL 2005 on a standalone machine with Win2k3
Product: Microsoft SQL Server 2005 -- Error 29515. SQL Server Setup could not connect to the database service for server configuration. The error was: [Microsoft][SQL Native Client]SSL Provider: The client and server cannot communicate, because they do not possess a common algorithm.
any help to resolve this problem will be highly appreciated.
I have created an .iss file which when compiled creates a setup.exe file on a cd rom. Within the .iss I have extracted the sqlexpress files out so that it will install straight from disk to the users machine rather than from the .msi file. All this has been successful so far....
My problem is:- I want to attach a database to the an instance of sqlexpress on the users machine. I have detached it from SQL Server 2000 and copied it over to the cd. The setup file copies these over the users hard drive. I have looked through many forums etc and the words that keep popping up are:-
sqlcmd.exe
template.ini
type into the command prompt.
Sorry if I'm a little ignorant but I am not sure how to go about these. How do I open the command prompt on the users machine from CD? Do I have to create something to do this?
Any information would be appreciated, any guidance or scripts would be great.
Hi,im a student who desperately need to use dql management studio at home for my project.But after installing all that is needed,i am receiveing an error 916 when i try to attach a database.It says," an excpetion while executing a transact statement or batch.(microsoft.sqlserver.express.connectioninfo)blah blah blah is not able to access the database model under the current security context.Microsoft Sql server error 916.As for creating a new database,it says,"create database ddenied in database master>Error 262)".pls help me T.T
Is it possible to install and configure the MSDTC resource in a SQL Server 2000 cluster after SQL is installed and running?
When I recently went through a rebuild of my cluster, I forgot to install the resource before installing SQL Server. Now, if I install and bring online the MSDTC resource the SQL disk groups will not fail over correctly. The SQL Server resource will not come online.
Thanks in advance for any help. I would really like to avoid rebuilding again.
I know that by default asp.net 2.0 creates the aspnetdb sql express database for storing membership, role management, profiling etc. And I saw we have the aspnet_regsql tool to have this installed in a standard sql server. But what should I do to have these stored procedures, tables etc installed in an existing sql express database? Aspnet_regsql doesn't seem suited for that.
I've noticed some sql scripts in the framework folder like InstallCommon.sql, InstallMembership.sql, etc. They seem to be used to create the regular aspnetdb.mdf database, should I just modify those and run them against my own sql express database or is there a tool or an easier way?