Tagged Questions
14
votes
5answers
34k views
XML Query in SQL Server 2008
I am just starting to use XML within SQL Server 2008. I have the data in the XML, but I am having a hard time finding good examples of querying the data. Can someone point me to a good place to ...
14
votes
3answers
12k views
N prefix before string in Transact-SQL query
Would you tell me, please, when should I use N prefix before string in Transact-SQL query? I have started to work with a database where I don't get any results using query like this
SELECT * FROM ...
12
votes
5answers
564 views
What algorithms does SQL use? [closed]
Ive always wondered this but never had the chance to research it.
What sort of algorithms are use in SQL? Naturally you search and compare for basic statements, what search algorithms? Sorting? and ...
12
votes
11answers
5k views
How do I return random numbers as a column in SQL Server 2005?
I'm running a SQL query on SQL Server 2005, and in addition to 2 columns being queried from the database, I'd also like to return 1 column of random numbers along with them. I tried this:
select ...
11
votes
3answers
155 views
Group close numbers
I have a table with 2 columns of integers. The first column represents start index and the second column represents end index.
START END
1 8
9 13
14 20
20 25
30 42
42 49
60 67
...
11
votes
3answers
3k views
Cannot insert explicit value for identity column in table 'table' when IDENTITY_INSERT is set to OFF
I have below error when i execute the following script;
Could you specify what it is and how it can be resolved?
Insert table(OperationID,OpDescription,FilterID)
values (20,'Hierachy Update',1)
...
10
votes
2answers
10k views
Temporary function or stored procedure in T-SQL
Hello is there any chance to create temporary stored procedure or function on MS SQL 2005? I would like to use this stored procedure only in my query so after execution it will be gone.
I have a ...
10
votes
3answers
5k views
How can I monitor the executed sql statements on a ms SQL server 2005
In a project of mine the SQL statements that are executed against a ms SQL server are failing for some unknown reason. Some of the code is already used in production so debugging it is not an easy ...
9
votes
3answers
700 views
What is the difference between “Is Not Null” and “Not Is Null”
SELECT id FROM customers WHERE type IS NOT Null;
Versus:
SELECT id FROM customers WHERE NOT type IS NULL;
The data that either of the above will return will be exactly the same.
What is the ...
9
votes
8answers
3k views
How to insert a record and return the newly created ID using a single SqlCommand?
I'm using an SqlCommand object to insert a record into a table with an autogenerated primary key. How can I write the command text so that I get the newly created ID when I use the ExecuteScalar() ...
9
votes
5answers
2k views
SQL, Auxiliary table of numbers
For certain types of sql queries, an auxiliary table of numbers can be very useful. It may be created as a table with as many rows as you need for a particular task or as a user defined function that ...
8
votes
3answers
239 views
Why do SQL FullText queries slow down when you OR?
In SQL Server (2008), I have a FullText index on two columns, call them Table1.FirstNames and Table2.LastNames. After profiling some queries, I came up with the following results:
SELECT *
FROM ...
8
votes
7answers
3k views
SQL Server truncation and 8192 limitation
In SQL Server 2005 I am trying to query a varchar(MAX) column which has some rows with text data that exceed the 8192. Yet, In Management Studio I have under Tools --> Options --> Query Results --> ...
8
votes
6answers
5k views
Hierarchical Queries in SQL Server 2005
Way back when I was working in an Oracle shop I took the CONNECT_BY for granted. Now I'm stuck working with SQL Server 2005 and have some nasty object hierarchies. Specifically, we have a self ...
8
votes
5answers
8k views
SQL Server 2005 implementation of MySQL REPLACE INTO?
MySQL has this incredibly useful yet properitary REPLACE INTO SQL Command. I wonder: Can this easily be emulated in SQL Server 2005?
Starting a new Transaction, doing a Select() and then either ...
7
votes
7answers
358 views
Why is doing a top(1) on an indexed column in SQL Server slow?
I'm puzzled by the following. I have a DB with around 10 million rows, and (among other indices) on 1 column (campaignid_int) is an index.
Now I have 700k rows where the campaignid is indeed 3835
...
7
votes
5answers
28k views
SQL WHERE.. IN clause multiple columns
i need to implement the following query in SQL Server
select *
from table1
WHERE (CM_PLAN_ID,Individual_ID)
IN
(
Select CM_PLAN_ID, Individual_ID
From CRM_VCM_CURRENT_LEAD_STATUS
Where Lead_Key = ...
7
votes
8answers
9k views
SQL query - Join that returns the first two records of joining table
I have two tables:
Patient
pkPatientId
FirstName
Surname
PatientStatus
pkPatientStatusId
fkPatientId
StatusCode
StartDate
EndDate
Patient -> PatientStatus is a one to many relationship.
I ...
7
votes
8answers
6k views
SQL Query to get latest price
I have a table containing prices for a lot of different "things" in a MS SQL 2005 table. There are hundreds of records per thing per day and the different things gets price updates at different times.
...
6
votes
2answers
99 views
Getting all consecutive rows differing by certain value?
I am trying to get my head around doing this as it involves comparison of consecutive rows. I am trying to group values that differ by a certain number. For instance, let us say I have this table:
...
6
votes
4answers
92 views
Switching the values of two fields/columns in SQL Server without third variable
As a result of a mistake during an import to the a test table called CUSTOMERS, I found myself needing to switch the values of two columns in SQL Server.
I mistakenly imported the respective values ...
6
votes
3answers
127 views
SQL Selecting rows at varying intervals
I've got a situation where I have a huge table, containing a huge number of rows, which looks like (for example):
id Timestamp Value
14574499 2011-09-28 08:33:32.020 ...
6
votes
2answers
364 views
At what cardinality does SQL Server switch to an index scan (vs. seek)
Assuming that a table contains sufficient information to warrant an index seek, at what cardinality will SQL Server (or PostgreSQL) opt for an index scan?
The reason I ask this is I previously posted ...
6
votes
0answers
585 views
The endless debate: atomic inserts, locking, & transactions in SQL Server. It ends here [closed]
Edit: My question is, "Why does my first code example work?" Please read on...
Edit1: There is no doubt that a unique constraint is the correct way to ensure duplicates don't happen. This is a given. ...
6
votes
3answers
136 views
Sql Server Displaying Items in specific order
I have a list of items
ItemName Manufacturer TopSalesUnit
Item1 A 100
Item2 A 80
Item3 A 60
Item4 B 70
...
6
votes
4answers
4k views
SQL server query to get the list of columns in a table along with Data types, NOT NULL, and PRIMARY KEY constraints
I need to write a query on SQL server to get the list of columns in a particular table, its associated data types and their length and if they are not null. I have managed to do this much. But now i ...
6
votes
5answers
361 views
SQL query to calculate part of visit duration from log table
I have a table which logs the userid, course, sessionid and requestdate each time a webpage is loaded.
I want to calcuate the duration per userid for a given courseid.
It is problematic to do this due ...
6
votes
3answers
355 views
How to speed up a massive update to the clustered column?
I have a pretty large table: 20+ million rows and I need to update about 5% of that - or 1 million rows.
Unfortunately, I am updating the (int) column that is being used as the clustered index.
My ...
6
votes
1answer
7k views
T-SQL : Using { fn NOW() } in WHERE
I was reviewing some SQL queries and I saw a select statement that looked like this
SELECT *
FROM dbo.mytable
WHERE (dbo.mytable.[Date] < { fn NOW() })
What is the purpose of using a WHERE ...
6
votes
11answers
38k views
SQL: How do I SELECT only the rows with a unique value on certain column?
Thanks a million everyone for everyone's response. Unfortunately, none of the solutions appear to be working on my end, and my guess is that the example I've provided is messed up.
So let me try ...
5
votes
3answers
125 views
Need SQL Server Query help, Newbie
I have a table that has the following columns.
id,
compid(used to identify a piece of equipment),
startalarmdate,
endalarmdate
when a piece of equipment goes into alarm, I insert the compid and ...
5
votes
1answer
136 views
How Can I “flatten” Out My TSQL Results?
Preface: I have looked all over stackoverflow.com and google for this. I have found hundreds of possible answers but either its not the correct SQL Server version or its not for SQL Server at all and ...
5
votes
2answers
117 views
Find gaps in time not covered by records with start date and end date
I have a table of fee records (f_fee_item) as follows:
Fee_Item_ID int
Fee_Basis_ID int
Start_Date date
End_Date date
(irrelevant columns removed)
Assume that records for the same ...
5
votes
6answers
167 views
SQL Server 2008 Generate a Series of date times
I am trying to generate a table with a series of date times in it.
I have the specified start date time and end date time(end date time is end of sequence), I add a time interval ~ (this can vary) to ...
5
votes
3answers
80 views
What's the best way to select data only appearing in one of two tables?
If I have two tables such as this:
CREATE TABLE #table1 (id INT, name VARCHAR(10))
INSERT INTO #table1 VALUES (1,'John')
INSERT INTO #table1 VALUES (2,'Alan')
INSERT INTO #table1 VALUES (3,'Dave')
...
5
votes
1answer
47 views
Does query optimization phase consider this?
I have a table with a date column StartDate indexed. I was just wondering how the query optimization phase handles queries of the following form:
SELECT *
FROM <dbo.TABLE>
WHERE (StartDate ...
5
votes
2answers
118 views
Creating a table using explicit create table statement versus select into
Are there any performance differences between using an explicit create table statement and loading data versus selecting into. This example just shows 2 columns, but the question is geared towards ...
5
votes
3answers
276 views
SQL Query to get aggregated result in comma seperators along with group by column in SQL Server
I need to write a sql query on the table such that the result would have the group by column along with the aggregated column with comma separators.
My table would be in the below format
...
5
votes
3answers
474 views
Query Validation using c#
I am looking for a query validator in c#, which allows me to parse the SQL Text from textbox and verify wether its correct or not before sending it for execution. (MS SQL or DB2 queries).
5
votes
5answers
744 views
Get the most recent Friday's date SQL
I'm trying to get the most recent Friday in SQL Server 2008.
I have this. It gets the beginning of the week (monday) then subtracts 3 days to get Friday.
declare @recentFriday datetime = ...
5
votes
1answer
306 views
Word matching in SQL Server
I have a requirement to provide a suggested match between data in two database tables. The basic requirement is;
- A "match" should be suggested for the highest number of matched words (irrespective ...
5
votes
8answers
4k views
SQL Server: Get table primary key using sql query
I want to get a particular table's primary key using SQL query for SQL Server database.
In MySQL I am using following query to get table primary key:
SHOW KEYS FROM tablename WHERE Key_name = ...
5
votes
3answers
1k views
Split Multiple Columns into Multiple Rows
I have a table with this structure.
UserID | UserName | AnswerToQuestion1 | AnswerToQuestion2 | AnswerToQuestion3
1 | John | 1 | 0 | 1
2 | Mary ...
5
votes
2answers
888 views
Why better isolation level means better performance in SQL Server
When measuring performance on my query I came up with a dependency between isolation level and elapsed time that was surprising to me
READUNCOMMITTED - 409024
READCOMMITTED - 368021
REPEATABLEREAD - ...
5
votes
4answers
3k views
Split Address column into separate columns in SQL view
I have an Address column in a table that I need to split into multiple columns in a view in SQL Server 2005. I need to split the column on the line feed character, chr(10), and there could be from 1 ...
5
votes
4answers
531 views
Help modify / optimize database schema / indexes for faster query result when using LIKE and EXISTS clauses
While implementing a hierarchy / tree structure on a SQL server 2005 database, I'm getting very slow query response ( below queries talking more than 5 sec ) when using LIKE clause combined with the ...
5
votes
7answers
1k views
Update query on linked MySQL table from SQL Server
I have a MS SQL Server with a linked MySQL server. I need to partially synchronize a table between the two servers. This is done in three steps and based on a condition:
Delete all rows from the ...
5
votes
3answers
8k views
Select Parent Record With All Children in SQL
Let's say I have two tables, "Parent" and "Child". Parent-to-Child is a many:many relationship, implemented through a standard cross-referencing table.
I want to find all records of Parent that are ...
5
votes
8answers
952 views
Semi-Tricky SQL Query
I am trying to write a query for SQL Server 2005 but I can't figure out how to do it. I have a table with the following fields:
MessageID int
CategoryID int
Priority tinyint
MessageText ...
5
votes
4answers
3k views
C# - SQLClient - Simplest INSERT
Before someone gets in a tizzy because this was answered elsewhere (not sure if it was,but...), the 5 "related questions" shown right now do not match what I'm looking for, and I searched the string ...