Use this tag for questions specific to the 2008 version of Microsoft's SQL Server.
5
votes
2answers
435 views
selecting the Row of table Except the First one
i want to select all the row except the Top One so can anybody help me on this Query.
5
votes
3answers
860 views
storing images in sql server
I am trying to put together db design for storing images. Many of you might have had experience designing db to store images and the challenges associated with it.
The db might store hundreds of ...
4
votes
2answers
174 views
A constraint that only allows one of two tables to reference a base table
I have 3 tables. A base table, call it Table A, and two tables that reference Table A, Call them Table X and Table Y. Both X and Y have a foreign key contraint that references Table A. The Foreign Key ...
4
votes
4answers
713 views
Hierarchial xml to Flat xml using XSLT
I have xml which is structed like following
<root>
<PNode>
<node1>
<node1Child>data</node1Child>
<node2Child>data</node2Child>
...
4
votes
6answers
662 views
NCHAR(1) vs BIT
I'm working under refactoring of database (SQL Server 2008) scheme and gather arguments to change NCHAR(1) columns (which keep Y|N values) to BIT. Everybody understand this is necessary and don't know ...
4
votes
2answers
14k views
Help with deadlock in Sql Server 2008
My website doesn't seem to handle a high number of visitors, I believe it's because the server is too simple.
2 hours ago my website was getting a lot of hits and I noticed that 3 deadlock errors ...
3
votes
3answers
1k views
Speed up update of 185k rows in SQL Server 2008?
I have a binary file with about 185k rows in it. C# parses file in seconds. What would be the best way to update MSSQL table with that data?
What I've tried:
Easiest way - read binary row, parse, ...
3
votes
2answers
6k views
Create Database in SQL Server 2012, Script and Use in 2008?
If I create a database using 2012 and work and add that info to it, if I were to script the database after, would I be able to run the script in 2008 and have everything work A.O.K?
3
votes
2answers
457 views
Can I define which word breakers to use when building a mssql fulltext index?
I have created a fulltext catalog that stores the data from some of the columns in a table, but the contents seem to have been split apart by characters that I don't really want to be considered word ...
2
votes
3answers
4k views
How does sql server sort your data?
I was wondering how sql server sorts it's data.
I noticed that if I have a table that doesn't contain the column "Id" and you select data without "ORDER BY" sql server doesn't automatically sort on ...
2
votes
2answers
601 views
Passing a list to a TSQL 2008 Stored Procedure
In MSSQL Server 2008 is there a way to construct the flowing as a stored procedure where the ... is passed in as a parameter. And not have to have a "separating" stored procedure or function which ...
1
vote
2answers
8k views
How to connect to Microsoft SQL Server 2008 (MSSQL) from Matlab?
This is probably a simple question:
How do I connect to Microsoft SQL Server 2008 R2 from Matlab?
How do I read a table into a matrix given some SQL query?
Update
I'd prefer a method that doesn't ...
1
vote
1answer
1k views
Does JPA 2.0 support SQL Server table variables?
I am using JPA 2.0 and SQL Server 2008 and I have determined that JPA doesn't like my stored procedures when I use a table variable.
For example, this sproc works:
declare @t table
(
id int ...
0
votes
2answers
2k views
Querying a SQL Server 2008 table to find values in a column containing Unicode characters
I've run into a problem in a project I'm working on: some of the string values in a specific SQL Server 2008 table column contain Unicode characters. For example, instead of a dash some strings will ...
15
votes
3answers
13k views
What is SYSNAME data type in SQL Server?
What is the SQL Server SYSNAME data type for? BOL says:
The sysname data type is used for
table columns, variables, and stored
procedure parameters that store object
names.
but I don't ...
9
votes
8answers
4k views
Is there anyway to reset the identity of a Table Variable?
Say I have a table variable:
DECLARE @MyTableVar TABLE (ID INT IDENTITY(1,1), SomeData NVARCHAR(300))
After I have inserted 250 rows, I need to "Start Over" with the table. I do this:
DELETE FROM ...
7
votes
5answers
11k 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 ...
5
votes
1answer
690 views
Combining datasets with EXCEPT versus checking on IS NULL in a LEFT JOIN
I'm currently working my way through the Microsoft SQL Server 2008 - Database Development (MCTS Exam 70-433) certification. In one of the earlier chapters on Combining Datasets, I came across the ...
5
votes
4answers
3k views
Periodic InvalidCastException and “The server failed to resume the transaction” with Linq
I see this on our stage system, after it has been up for 2-3 days.
"The server failed to resume the transaction. Desc:39000000ef." (with desc:xxx increasing every time).
The stack trace shows
...
5
votes
3answers
48k 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
7k 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
...
4
votes
2answers
196 views
Get count of items and their values in one column
Consider these Tables:
Table Items:
ItemID ItemName
------------------
1 N1
2 N2
3 N4
4 N5
and in MyTbl table I have a ItemID that may be like this:
...
3
votes
5answers
1k views
Recursive select in SQL
I have an issue I just can't get my head around. I know what I want, just simply can't get it out on the screen.
What I have is a table looking like this:
Id, PK UniqueIdentifier, NotNull
Name, ...
2
votes
1answer
351 views
How to restrict unlogged/unauthorized users from viewing web pages in ASP.NET
I have some created web forms and I need to check whether the user is authenticated or not, before displaying the other web forms. All the users can access Default.aspx and About.aspx pages.
And I ...
2
votes
2answers
158 views
Data modeling for Same tables with same columns
I have many tables that have same number of columns and names because they are all lookup tables.
For example, there are LabelType and TaskType tables. LabelType and TaskType tables have TypeID and ...
2
votes
2answers
6k views
com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host localhost, port 1433 has failed
I keep on getting this error. I tried one solution from stackoverflow (below) which did not work for me -
SQL Exception while connecting to SQL server
I tried allowing port 1433 in the windows ...
2
votes
1answer
723 views
Import String Date in Derived column
I have a string date being read in from a file in the following format and is giving me cast error.
Oct 25 2011 10:18:10:756PM
I am using Derived Column to cast the string to a date.
I have tried ...
2
votes
4answers
8k views
Creating a composite foreign key in SQL Server 2008
I have two tables that I'd like to create a foreign key for.
Primary Table
PK - Key1 - varchar(20)
PK - Key2 - date
Secondary Table
PK - AutoID
FK - Key1 - varchar(20)
FK - Key2 - date
When I ...
2
votes
1answer
1k views
Entity Framework: Alternate solution to using non primary unique keys in an association
I know the entity frame work does not allow you to generate a model from a database using non primary unique keys as a Foreign Key association. Can I modify the EDMX manually? If so, can someone ...
2
votes
2answers
1k views
How does ANSI_NULLS work in TSQL?
SET ANSI_NULLS OFF seems to give different results in TSQL depending on whether you're comparing a field from a table or a value. Can anyone help me understand why the last 2 of my queries give no ...
2
votes
3answers
211 views
How to remove duplicate records in a table?
I've got a table in a testing DB that someone apparently got a little too trigger-happy on when running INSERT scripts to set it up. The schema looks like this:
ID UNIQUEIDENTIFIER
TYPE_INT SMALLINT
...
2
votes
3answers
15k views
Connecting to SQL Server 2008 from Java
I am trying to connect to SQL Server 2008 server from Java
here is a program
import java.sql.*;
public class connectURL {
public static void main(String[] args) {
// Create a ...
1
vote
2answers
62 views
Getting the exact edited data from SQL Server
I have two Tables:
Articles(artID, artContents, artPublishDate, artCategoryID, publisherID).
ArticleUpdated(upArtID, upArtContents, upArtEditedData, upArtPublishDate, upArtCategory, ...
1
vote
1answer
1k views
Converting float to varchar with correct decimal separator
Hi i'm living in austria and we use the , as decimal separator.
It seems to be impossible to convert the float to varchar with the correct separator according to the language/collation setting?
Is ...
1
vote
3answers
6k views
SQL Server 2008: Error converting data type nvarchar to float
Presently troubleshooting a problem where running this SQL query:
UPDATE tblBenchmarkData
SET OriginalValue = DataValue, OriginalUnitID = DataUnitID,
DataValue = CAST(DataValue AS float) * ...
1
vote
3answers
1k views
SQL Trigger cannot do INSTEAD OF DELETE but is required for ntext, image columns
CREATE TRIGGER [dbo].[C1_Deletions] ON [dbo].[C1] INSTEAD OF DELETE AS
SET NOCOUNT ON
IF EXISTS ( SELECT 'True' FROM deleted JOIN C1 ON deleted.ACCOUNTNO = C1.ACCOUNTNO )
BEGIN
INSERT INTO ...
1
vote
1answer
532 views
SQL Server pick random (or first) value with aggregation
How can I get SQL Server to return the first value (any one, I don't care, it just needs to be fast) it comes across when aggregating?
For example, let's say I have:
ID Group
1 A
2 ...
1
vote
2answers
1k views
How to parse a string and create several columns from it?
I have a varchar(max) field containing Name Value pairs, in every line I have Name UnderScore Value.
I need to do a query against it so that it returns the Name, Value pairs in two columns (so by ...
1
vote
1answer
67 views
Weird behaviour of Management Studio
My sql managment studio is behaving weird with thi sql script.
Bug in the Sql File .
SqlScript.
Steps to reproduce:
Here is the sql file. Open it in Sql Management studio 2008. Comment the line ...
1
vote
2answers
5k views
System.Data.SqlClient.SqlException: Timeout expired
Coupled days ago I noticed that my web application giving me sql an exception timeout expired.
I cleaned up couple stored procedures taking more cpu and restarted SQL Server service and my ...
1
vote
3answers
2k views
Is NOLOCK the default for SELECT statements in SQL Server 2005?
I have only SQL Server 2008R2 installed though I need to communicate with customers having 2005.
[1] tells:
"NOLOCK
This does not lock any object. This is the default for SELECT operations. ...
0
votes
1answer
1k views
How to make a sql loop query to check difference between values?
first of all, I'm not a native english speaker and this is a hard to explain issue. If you have any doubts, please let me know.
We're using a GPS vehicle tracking device, which is programmed to send ...
0
votes
6answers
9k views
Check if a parameter is null or empty in a stored procedure
I know how to check if a parameter is null but i am not sure how to check if its empty ... I have these parameters and I want to check the previous parameters are empty or null and then set them like ...
0
votes
3answers
1k views
SQL try-catch statement not handling error (SQL Server 2008)
I am trying to catch an error in a SQL query (not in a stored procedure) using try-catch.
For some reason this is not handling my error and I am still getting:
Msg 213, Level 16, State 1, Line 29
...
0
votes
2answers
454 views
How can I make this query to accept dynamic table names?
This is my function which mainly concats all the rows data into one string. I know a function named Coallasce is available, however just out of curiosity I want to know how can I change this function ...
0
votes
3answers
401 views
SELECT FROM stored procedure?
If I have a stored proc in SQL Server 2008, I know I can run it from management studio like so:
exec rpt_myproc @include_all = 1, @start_date = '1/1/2010'
But I'm using an ad-hoc query tool that ...
0
votes
0answers
196 views
SQL Query to return values of a particular column concactenated with comma (,) [duplicate]
Possible Duplicate:
How do I Create a Comma-Separated List using a SQL Query?
ItemName | DepartmentId
---------------------
Item1 | 21
Item1 | 13
Item1 | 9
Item1 ...
-1
votes
2answers
225 views
SQL Server 2008 Intellisense problem [duplicate]
Possible Duplicate:
Lost the IntelliSense
I have created schema in SQL Server 2008 called CustomerTraining in the AdventureWorks database. Then created a table called Customer like this:
...
-2
votes
1answer
182 views
How to group by the each week upto last six week sundays dates in sql?
Currently am working on the report. What i need is
sample table,
Instance Type Sep-23 Sep-16 Sep-09 Sep-02 Aug-26 Aug-19
...
25
votes
5answers
11k views
SQL Server 2008 Full Text Search (FTS) versus Lucene.NET
I know there have been questions in the past about SQL 2005 versus Lucene.NET but since 2008 came out and they made a lot of changes to it and was wondering if anyone can give me pros/cons (or link to ...



