Use this tag for questions specific to the 2008 version of Microsoft's SQL Server.
47
votes
4answers
70k views
Sql Server add auto increment primary key to existing table
As the title, I have an existing table which is already populated with 150000 records. I have added an Id column (which is currently null).
I'm assuming I can run a query to fill this column with ...
39
votes
5answers
11k views
SQL Server 2008 Empty String vs. Space
I ran into something a little odd this morning and thought I'd submit it for commentary.
Can someone explain why the following SQL query prints 'equal' when run against SQL 2008. The db ...
30
votes
14answers
132k views
Import Excel spreadsheet columns into SQL Server database
I have an Excel spreadsheet that I want to import select columns into my SQL Server 2008 database table. The wiz didn't offer that option.
Any easy code options?
13
votes
7answers
4k views
Database design: Calculating the Account Balance
How do I design the database to calculate the account balance?
1) Currently I calculate the account balance from the transaction table
In my transaction table I have "description" and "amount" etc..
...
23
votes
4answers
18k views
How do I view the full content of a text or varchar(MAX) column in SQL Server 2008 Management Studio?
In this live SQL Server 2008 (build 10.0.1600) database, there's an Events table, which contains a text column named Details. (Yes, I realize this should actually be a varchar(MAX) column, but whoever ...
11
votes
6answers
33k views
There is a way to access the “previous row” value in a SELECT statement?
I need to calculate the difference of a column between two lines of a table, there is any way I can do this directly in SQL? I'm using Microsoft SQL Server 2008.
I'm looking for something like this:
...
4
votes
3answers
2k views
Flattening of a 1 row table into a key-value pair table
What's the best way to get a key-value pair result set that represents column-value in a row?
Given the following table A with only 1 row
Column1 Column2 Column3 ...
Value1 Value2 Value3
I want ...
13
votes
2answers
8k views
Entity Framework 4 Code First - Prevent DB Drop/Create
I've written an ASP.Net MVC 3 application using the Code First paradigm whereby when I make a change to the model the Entity Framework automatically attempts to re-create the underlying SQL Server ...
7
votes
3answers
5k views
How to register System.DirectoryServices for use in SQL CLR User Functions?
I am porting an old 32-bit COM component that was written in VB6 for the purpose of reading and writing to an Active Directory server. The new solution will be in C# and will use SQL CLR user ...
21
votes
3answers
49k views
Debugging Stored Procedure in SQL Server 2008
Is there any way to debug a stored procedure on SQL Server 2008?
I have access to use SQL Server Management Studio 2008 and Visual Studio 2008 (not sure whether either provides this functionality).
...
14
votes
1answer
5k views
Why doesn't SSIS recognize line feed {LF} row delimiter while importing UTF-8 flat file?
I am trying to import data from a utf-8 encoded flat file into SQL Server 2008 using SSIS. This is what the end of the row data looks like in Notepad++:
I have a couple more images showing what the ...
14
votes
3answers
3k views
SQL Server: should I use information_schema tables over sys tables?
In SQL Server there is two schemas for metadata:
INFORMATION_SCHEMA
SYS
I have heard that INFORMATION_SCHEMA tables are based on ANSI standard. When developing e.g. stored procedures, should it ...
8
votes
8answers
32k views
Login failed for user 'NT AUTHORITY\NETWORK SERVICE'
I been strugling with this for 2 days now without comming any closer to solution. I have read 20-30 threads alteast and stil can not resolve this.
Please help me out.
I have disable anonymous ...
7
votes
5answers
42k views
How to connect to SQL Server from another computer?
I want to connect from home using SQL Server 2005 to another PC.
I had a look on the msd...but before connecting it says I should connect to another computer
using the computer management and it ...
11
votes
1answer
2k views
Is there a practical way to use the hierarchyID datatype in entity framework 4?
As it stands now, the CLR UDTs including HierarchyID aren't supported in Entity Framework 4. HierarchyID.ToString() is useful, but breaks down once any item has 10+ siblings (the basic structure is ...
7
votes
3answers
11k views
SQL Pivot with multiple columns
Need help with the pivot clause in sql server 2008.
I have a table with this info:
Weekno DayOfWeek FromTime ToTime
1 2 10:00 14:00
1 3 10:00 ...
7
votes
7answers
66k views
How do I connect to a SQL Server 2008 database in Java with JDBC?
I have MSSQL 2008 installed on my local PC, and my Java application needs to connect to a MSSQL database. I am a new to MSSQL and I would like get some help on creating user login for my Java ...
6
votes
7answers
12k views
Where value in column containing comma delimited values
Hi I am wondering how to write an SQL statement for SQL Server 2008 that Selects entry's where a column contains a value, now the value within the column is a comma delimited list (usually - there ...
6
votes
2answers
13k views
How to pass User Defined Table Type as Stored Procedured parameter in C#
In SQL Server 2008, we can define a table type and use it as Stored Procedures' parameters.
But How can I use it in C# invocation of this SP? In other words, how to create a table or list and pass it ...
4
votes
2answers
660 views
Update null column value from non null value in previous row
@@Version 1
Using SQL Server 2008, I am trying to cascade values down a column. I have a table with group id (GID) and Seq containing ordering for records within the group. For the columns present, ...
11
votes
3answers
12k views
How can I select the first day of a month in SQL?
I just need to select the first day of the month of a given datetime variable.
I know it's quite easy to do using this kind of code :
select CAST(CAST(YEAR(@mydate) AS VARCHAR(4))
+ '/' + ...
10
votes
1answer
18k views
Enable 'xp_cmdshell' SQL Server
I want to execute
EXEC master..xp_cmdshell @bcpquery
but I am getting an error:
SQL Server blocked access to procedure 'sys.xp_cmdshell' of component
'xp_cmdshell' because this component is ...
9
votes
1answer
8k views
Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.VisualStudio.OLE.Interop.IServiceProvider'
After installing Visual Studio 2008 and SQL Server 2008 on Windows 7, I get the following error when connecting to a server with SQL Management Studio:
Unable to cast COM object of type ...
6
votes
4answers
1k views
SQL Server error handling: exceptions and the database-client contract
We’re a team of SQL Servers database developers. Our clients are a mixed bag of C#/ASP.NET, C# and Java web services, Java/Unix services and some Excel.
Our client developers only use stored ...
5
votes
3answers
3k views
Implementing one-to-zero-or-one relation in SQL Server
I'm using Entity Framework 4.1 database first approach. I've used legacy database. In my edmx file which create entity classes based on tables in the legacy database, there is a one-to-zero-or-one ...
5
votes
3answers
35k views
Classic ASP - SQL Server 2008 Connection String using Windows Authentication
This should be painfully simple, but I cannot come up with a working connection string for a local copy of SQL Server 2008 using Windows Authentication. I've tried using the Data Link Properties tool ...
4
votes
2answers
2k views
Migrating ASP.NET Membership Database to SQL Azure
I am trying to migrate a database from SQL Server 2008 to SQL Azure. The database that I am attempting to migrate includes the ASP.NET Membership database ...
4
votes
3answers
790 views
sql group by only rows which are in sequence
Say I have the following table:
MyTable
---------
| 1 | A |
| 2 | A |
| 3 | A |
| 4 | B |
| 5 | B |
| 6 | B |
| 7 | A |
| 8 | A |
---------
I need the sql query to output the following:
---------
...
4
votes
6answers
1k views
SQL Server 2008 - Conditional Query
SQL is not one of my strong suits. I have a SQL Server 2008 database. This database has a stored procedure that takes in eight int parameters. For the sake of keeping this question focused, I will use ...
2
votes
3answers
2k views
What this query does to create comma delimited list SQL Server?
I've written this query with the help of google to create a delimited list from a table but I didn't understand anything from this query.
Can anyone explain me what's happening
SELECT
...
1
vote
3answers
4k views
Split function in SQL Server 2008
I have Table1 with columns like this:
ID Name
1 MSSQL
2 MySQl
3 Oracle
In Table2, I have a column like
Databasename
1,3
2
1,2
My output should be:
...
8
votes
9answers
1k views
SQL Joins: Future of the SQL ANSI Standard (where vs join)?
We are developing ETL jobs and our consultant have been using "old style" SQL when joining tables
select a.attr1, b.attr1
from table1 a, table2 b
where a.attr2 = b.attr2
instead of using inner join ...
6
votes
2answers
4k views
INFORMATION_SCHEMA vs sysobjects
In SQL Server:
What is the difference between INFORMATION_SCHEMA and sysobjects? Does one provide more information than the other or are they used for different things usually?
Is sysobjects the ...
6
votes
4answers
5k views
Table-Valued Parameter in Stored Procedure and the Entity Framework 4.0
I have a stored procedure in SQL Server 2008 called 'GetPrices' with a Table-Valued Parameter called 'StoreIDs'.
This is the type i created for this TVP:
CREATE TYPE integer_list_tbltype AS TABLE (n ...
5
votes
2answers
1k views
Why is my CASE expression non-deterministic?
I am trying to create a persisted computed column using CASE expression:
ALTER TABLE dbo.Calendar ADD PreviousDate AS
case WHEN [Date]>'20100101' THEN [Date]
ELSE NULL
END PERSISTED
...
4
votes
2answers
926 views
sql runs fast in ssms slow in asp.net
I have been having this problem for a couple of weeks now. The problem is that the query takes 4-5 minutes to run on the website and at most 2 or 3 seconds to run in ssms. Also I found that after I ...
2
votes
2answers
8k views
Sql Server 2008 Cross Tab Query
I usually can figure out any sql queries I need for my applications, but I have recently been stumped by a Cross Tab query I need to create and was wondering if you could help?
I have 3 tables
...
10
votes
5answers
13k views
how to get cumulative sum
declare @t table
(
id int,
SomeNumt int
)
insert into @t
select 1,10
union
select 2,12
union
select 3,3
union
select 4,15
union
select 5,23
select * from @t
the above select returns ...
7
votes
5answers
4k views
Can I set ignore_dup_key on for a primary key?
I have a two-column primary key on a table. I have attempted to alter it to set the ignore_dup_key to on with this command:
ALTER INDEX PK_mypk on MyTable
SET (IGNORE_DUP_KEY = ON);
But I get this ...
6
votes
2answers
789 views
SQL Server and connection loss in the middle of a transaction [duplicate]
Possible Duplicate:
What happens to an uncommitted transaction when the connection is closed?
What would happen if lose the connection in the middle of a transaction?
I guess that if the ...
5
votes
3answers
50k views
SQL Server 2008 - Help writing simple INSERT Trigger
This is with Microsoft SQL Server 2008.
I've got 2 tables, Employee and EmployeeResult and I'm trying to write a simple INSERT trigger on EmployeeResult that does this - each time an INSERT is done ...
4
votes
2answers
161 views
How can I highlight a word
I'm using a textbox to search information from a gridview , how can I highlight the text found in the table ? Can someone please explain?
4
votes
2answers
8k views
An attempt to login using SQL authentication failed
I am trying to connect to SQL Server 2008 using 'sa' username and its password.
In the SQL Server log file I see this error:
Login failed for user 'sa'. Reason: An attempt to login using SQL
...
3
votes
2answers
480 views
How do I optimize Upsert (Update and Insert) operation within SSIS package?
I am not a DBA but I do work for a small company as the IT person. I have to replicate a database from staging to production. I have created an SSIS package to do this but it takes hours to run. ...
3
votes
3answers
839 views
SQL joining 6 tables
Please take a look at the image.There are 5tables related to appointTable with appointID.
Now i need all the data with same appointment id..what should be the joining query?Can any one help me about ...
3
votes
6answers
5k views
SQL Server: Rethrow exception with the original exception number
I am using a TRY CATCH block in a stored procedure where I have two INSERT instructions.
If something goes wrong, the CATCH block takes care of rolling back all changes made and it works fine, except ...
2
votes
2answers
263 views
how to exclude column from a report
i am including column 13 as a dummy column here:
+----+---+---+---+----+---+---+---+---+---+----+----+----+----+
| | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
...
1
vote
3answers
1k views
Best way to query a data dictionary in sql [closed]
For a project I'm setting up, I need a very dynamic data structure. I'm going to store records for which I don't have a defintion. One record could consist of 5 columns, another might be 10.
To ...
1
vote
6answers
9k views
SQL Server - In clause with a declared variable
Let say I got the following :
DECLARE @ExcludedList VARCHAR(MAX)
SET @ExcludedList = 3 + ', ' + 4 + ' ,' + '22'
SELECT * FROM A WHERE Id NOT IN (@ExcludedList)
Error : Conversion failed when ...
0
votes
3answers
936 views
SQL Server 2008 R2 to MySQL Migration
Is there a GUI tool out there that will allow me to migrate entire SQL Server 2008 R2 databases to MySQL? I have MySQL Workbench installed, but it looks like there isn't a feature in it like SSIS to ...
