Top "Sql-server-2005" questions

Use this tag for questions specific to the 2005 version of Microsoft's SQL Server.

SQL Server table creation date query

How can I get the table creation date of a MS SQL table using a SQL query? I could not …

sql sql-server tsql sql-server-2005
What are the main performance differences between varchar and nvarchar SQL Server data types?

I'm working on a database for a small web app at my school using SQL Server 2005. I see a couple …

sql-server sql-server-2005 storage varchar nvarchar
SQL Server Restore Error - Access is Denied

I created a database on my local machine and then did a backup called tables.bak of table DataLabTables. I …

sql-server sql-server-2005 backup restore
Insert Picture into SQL Server 2005 Image Field using only SQL

Using SQL Server 2005 and Management Studio how do I insert a picture into an Image type column of a table? …

sql sql-server sql-server-2005 image
How to insert text with single quotation sql server 2005

I want to insert text with single quote Eg john's to table in sql server 2005 database

sql sql-server-2005 quotes quotations
What is the point of "Initial Catalog" in a SQL Server connection string?

Every SQL Server connection string I ever see looks something like this: Data Source=MyLocalSqlServerInstance;Initial Catalog=My Nifty Database; …

sql-server database sql-server-2005 connection-string database-connection
Advantages of SQL Server 2008 over SQL Server 2005?

What are the key differences between Microsoft's SQL Server 2005 and SQL Server 2008? Are there any compelling reasons for upgrading (any …

sql-server-2005 sql-server-2008 comparison
Watching variables in SSIS during debug

I have a project in SSIS and I've added an Execute SQL Task which sends its result out to a …

sql sql-server-2005 debugging ssis watch
Is it necessary to use # for creating temp tables in SQL server?

Is it necessary to use # before creating a temporary table in SQL server? Example: SELECT column1, column2, someInt, someVarChar INTO …

sql sql-server sql-server-2008 sql-server-2005
How can I rollback an UPDATE query in SQL server 2005?

How can I rollback an UPDATE query in SQL server 2005? I need to do this in SQL, not through code.

sql sql-server-2005 sql-update rollback