Top "Sql-server-express" questions

Microsoft SQL Server Express is a freely downloadable and distributable version of Microsoft's SQL Server relational database management system.

Delete rows from multiple tables using a single query (SQL Express 2005) with a WHERE condition

This is the query I'm using: DELETE TB1.*, TB2.* FROM TB1 INNER JOIN TB2 ON TB1.PersonID = TB2.PersonID WHERE (…

sql sql-server sql-server-express sql-server-2005-express
How do I fix a "Performance counter registry hive consistency" when installing SQL Server R2 Express?

I'm trying to install SQL Server 2008 R2 Express from this site: http://www.microsoft.com/express/database/ I have a 64…

sql-server installation sql-server-express
Default instance name of SQL Server Express

I don't have access to a SQL Server Express installation at the moment, but I know that the installer usually …

sql-server-2008 sql-server-express
Enable tcp\ip remote connections to sql server express already installed database with code or script(query)

I am deploying sql express with my application. I will like that database engine to accept remote connections. I know …

configuration cmd database-connection sql-server-express remote-connection
How to create a connection string in asp.net c#

I am working on asp.net c# project, for connection I used: SqlConnection con = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=…

c# asp.net sql-server-express
Connecting to SQL Server Express - What is my server name?

I was just given a laptop to perform some development from a client and I am currently in the process …

sql sql-server sql-server-2008 sql-server-express
Making a DateTime field in a database automatic?

I'm putting together a simple test database to learn MVC with. I want to add a DateTime field to show …

database database-design datetime sql-server-express field
pyodbc insert into sql

I use a MS SQL express db. I can connect and fetch data. But inserting data does not work: cursor.…

python sql sql-server-express python-2.6 pyodbc
Create/restore database from backup SQL Server Express

I don't have SQL Server Management Studio on my machine. I have a database backup (SQL Server 2008 R2). There is …

sql-server sql-server-express database-restore
How to run a stored procedure every day in SQL Server Express Edition?

How is it possible to run a stored procedure at a particular time every day in SQL Server Express Edition? …

sql sql-server sql-server-express scheduled-tasks