16
votes
3answers
7k views
SQL Server: Can I Comma Delimit Multiple Rows Into One Column?
Creating Comma Separated Lists In SQL
Hi All,
I am attempting to merge something like this in my SQL Server database:
[TicketID], [Person]
T0001 Alice
T0001 Bob
T0002 ...
21
votes
6answers
32k views
Split Function equivalent in tsql?
I'm looking to split '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15...' (comma delimited) into a table or table variable.
Does anyone have a function that returns each one in a row?
4
votes
4answers
353 views
Concatenate values based on ID
I Have a table called Results and the data looks like:
Response_ID Label
12147 It was not clear
12458 Did not Undersstand
12458 Was not resolved
12458 Did not ...
7
votes
3answers
4k views
Bulk DELETE on SQL Server 2008 (Is there anything like Bulk Copy (bcp) for delete data?)
Is there any solution for bulk delete in SQL Server?
I can't use TRUNCATE because I want to use WHERE for limiting the rows in action.
Is there anything like Bulk Copy (bcp) for delete data?
33
votes
6answers
19k views
Is the NOLOCK (Sql Server hint) bad practice?
I'm in the business of making website and applicatins that are not mission critical -> eg. banking software, space flight, intensive care monitoring application, etc. You get the idea.
So, with that ...
6
votes
3answers
432 views
Select / Insert version of an Upsert: is there a design pattern for high concurrency?
I want to do the SELECT / INSERT version of an UPSERT. Below is a template of the existing code:
// CREATE TABLE Table (RowID INT NOT NULL IDENTITY(1,1), RowValue VARCHAR(50))
IF NOT EXISTS (SELECT ...
4
votes
3answers
11k views
Remove trailing zeros from decimal in SQL Server
I have a column DECIMAL(9,6) i.e. it supports values like 999,123456.
But when I insert data like 123,4567 it becomes 123,456700
How to remove those zeros?
8
votes
3answers
3k views
T-SQL - SET verus SELECT when assigning variables?
What are the differences between SET vs. SELECT statement when assigning variables in T-SQL?
3
votes
2answers
455 views
Stored procedure hangs seemingly without explanation
we have a stored procedure that ran fine until 10 minutes ago and then it just hangs after you call it.
Observations:
Copying the code into a query window yields the query result in 1 second
SP ...
0
votes
1answer
176 views
Managing synonyms in a proc with nested procs using sp_getapplock
Building on the topics previously addressed by gbn in these questions
Q1, Q2, Q3, Q4, and regarding the use of synonyms and re-creating the synonyms to keep the synonyms pointing at live data, it is ...
44
votes
5answers
75k views
Check if a row exists, otherwise insert
I need to write a T-SQL stored procedure that updates a row in a table. If the row doesn't exist, insert it. All this steps wrapped by a transaction.
This is for a booking system, so it must be ...
28
votes
5answers
6k 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 ...
6
votes
3answers
103 views
How to I modify this t-sql query to return the maximum value for different column names?
I have the following query:
SELECT
[Rate],
[RateMon],
[RateTue],
[RateWed],
[RateThu],
[RateFri],
[RateSat],
[RateSun]
FROM
...
3
votes
5answers
635 views
SQL Server: calculating date ranges
I'm trying to get a date range from the beginning of this month (previous year) to current day (previous year). Is there a way to simplify this code?
SELECT 'From the beginning of month to this day, ...
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 ...
4
votes
6answers
547 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 ...
4
votes
5answers
7k views
Using PIVOT in SQL Server 2008
Let's say I have some data, either in a SQL Server 2008 table or a [table]-typed variable:
author_id review_id question_id answer_id
88540 99001 1 719
88540 ...
2
votes
10answers
544 views
How to decrease response time of a simple select query?
MarketPlane table contains more than 60 million rows.
When I need the total number of plane from a particular date, I execute this query which takes more than 7 min. How can I reduce this time ?
...
1
vote
4answers
176 views
Keep table downtime to a minimum by renaming old table, then filling a new version?
I have a handful or so of permanent tables that need to be re-built on a nightly basis.
In order to keep these tables "live" for as long as possible, and also to offer the possibility of having a ...
1
vote
3answers
928 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
2answers
114 views
When does SQL SELECT statements throw exceptions?
TSQL here. Specifically Server 2008(literally just upgraded)
Concerning stored procedures: Try/Catch
I was trying to make a list of cases when a Select Statement will throw an exception. The ones I ...
0
votes
4answers
105 views
Problem in T-sql
I have a table called results and the data looks like:
Response_ID order [part label] [Answer text] [Answer label]
124587 6 It was not clear NULL ...
4
votes
3answers
523 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 ...
8
votes
3answers
266 views
The proper way to implement unique constraint that allows multiple NULL values in SQL Server
I need 1 column in the table to hold unique non-null values or NULL. TSQL UNIQUE constraint treats 2 NULLs as equal, so I cannot make column unique.
What is the right way to handle this problem?
...
0
votes
3answers
133 views
SQL Server CTE -Find top parentID forEach childID?
I have a table which contains hierarchy data - something like :
childID | parentID
____________________
1 | 5
5 | 9
9 | 20
2 | 4
3 | 7
7 ...
7
votes
4answers
7k views
Instead of trigger in SQL Server loses SCOPE_IDENTITY?
I have a table where I created an INSTEAD OF trigger to enforce some business rules.
The issue is that when I insert data into this table, SCOPE_IDENTITY() returns a NULL value, rather than the ...
4
votes
6answers
449 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
4answers
336 views
How to delete completely duplicate rows
Say i have duplicate rows in my table and well my database design is of 3rd class :-
Insert Into tblProduct (ProductId,ProductName,Description,Category) Values (1,'Cinthol','cosmetic soap','soap');
...
2
votes
5answers
653 views
set identity on the column
How can I modify table and set identity on PK column using T-SQL?
thanks for help
2
votes
2answers
263 views
Capturing multiple error messages from a single statement
I am running a batch of statements on several columns and tables and want to retrieve information on what errors occur.
The statement is a type change (varchar to nvarchar) and when it fails, it ...
6
votes
6answers
1k 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 ...
6
votes
4answers
246 views
How to copy tables avoiding cursors in SQL?
I want to write script in SQL that will copy these 2 tables(A,B) to other 2 tables(C,D) with the same structure as A,B accordingly.
IMPORTANT:
Tables C,D are NOT necessary empty
Several processes ...
5
votes
3answers
2k views
sql server 4 byte unsigned int
Does anyone know of any work around by which i can save unsigned integers (0 to 4294967295) simply using 4 bytes instead of using 8 bytes and bigint?
I know we can create user defined datatypes and ...
3
votes
6answers
454 views
Output a comma seperated list in T-SQL
I have a table with phone numbers in it. Instead of spitting out a single row for each number I want to return a comma separated list of phone numbers. What's the easiest way to do this in sql? A ...
2
votes
4answers
703 views
Calculate working days - Monday to Fri in Tsql
How can i calculate the last working five days which is monday to Friday. my current script gets the last monday's date, but i cannot get the last friday's date. Please help
declare @StartDate ...
2
votes
4answers
433 views
Query where two columns are in the result of nested query
I'm writing a query like this:
select * from myTable where X in (select X from Y) and XX in (select X from Y)
Values from columns X and XX has to be in the result of the same query: select X from ...
1
vote
1answer
79 views
How to determine whether a record with specific IMAGE data type already exists in the table?
What is the most effective way to do that? I'm looking for a stored procedure, with returns me a new ID or an ID of the record with that image. Image could be up to 15-20MB, but mostly it will be ...
1
vote
2answers
184 views
XQuery and Node Ids
I have this variable:
declare @xmlDoc XML
it has the following xml stored in it:
<?xml version="1.0" encoding="utf-8"?>
<NewDataSet>
<Table1>
...
1
vote
2answers
595 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 ...
0
votes
3answers
66 views
How to sum Accounts by account code length?
I have 2 tables: DimAccounts and FactBudget.
DimAccounts example:
AccountKey AccountCode AccountName AccountGroup AccountType
1.6 1 6 1 NN 6 S
...
0
votes
1answer
254 views
how to see/script definitions of system views?
I tried to execute scripts from [1] in model database and user-defined databases but they give definitions/scripts of only user-defined (non-system) views, i.e. those that I anyway can easily get from ...
0
votes
2answers
308 views
Refreshing metadata on user functions t-SQL
I am doing some T-SQL programming and I have some Views defines on my database. The data model is still changing these days and I have some table functions defined. Sometimes i deliberately use
...
-1
votes
5answers
161 views
SQL Server : UPDATE MyTable SET col1 = value, col2 = col1
I have a table col1 float, col2 float with the following data:
1,2
3,4
After the query:
UPDATE MyTable SET col1 = 100, col2 = col1
is executed, the rows are:
100,1
100,3
...
11
votes
3answers
1k views
Anybody using SQL Source Control from Red Gate
We have been looking into possible solutions for our SQL Source control. I just came across Red Gates SQL Source control and wondered if anyone has implemented it? I am going to download the trial ...
10
votes
5answers
28k views
SQL Server SELECT INTO @variable?
I have the following code in one of my Sql (2008) Stored Procs which executes perfectly fine:
CREATE PROCEDURE [dbo].[Item_AddItem]
@CustomerId uniqueidentifier,
@Description ...
6
votes
3answers
11k views
Most Efficient Method to Detect Column Change in MS SQL Server
Our system runs on SQL Server 2000, and we are in the process of preparing for an upgrade to SQL Server 2008. We have a lot of trigger code where we need to detect a change in a given column and then ...
4
votes
2answers
988 views
Using COALESCE in SQL view
I need to create a view from several tables. One of the columns in the view will have to be composed out of a number of rows from one of the table as a string with comma-separated values.
Here is a ...
6
votes
4answers
400 views
How to Find Rows which are Duplicates by a Key but Not Duplicates in All Columns?
I am working with a table which is an extract of a set of other tables. All of the rows of the extract table should be unique according to keys D1, D2 and D3. They are not. It appears that an earlier ...
3
votes
3answers
962 views
T-SQL stored procedure to return google style “suggested” search results
Ok, using SQL Server 2008. On my web page I have a textbox with jQuery-UI AutoComplete hooked up.
Now I need a stored procedure to search across all columns of a single table(or multiple joined ...
6
votes
3answers
2k views
Storing DateTime (UTC) vs. storing DateTimeOffset
I usually have an "interceptor" that right before reading/writing from/to the database does datetime conversion (from UTC to localtime, and from localtime to utc), so I can use DateTime.Now ...