Viewing 15 posts - 2,761 through 2,775 (of 3,957 total)
I've seen this sort of "inconsistent" result on UPDATEs where you're applying multiple rows to a single row and I don't believe it is controlled by a setting.
You need to...
September 20, 2012 at 12:45 am
GSquared (9/19/2012)
Phil Parkin (9/19/2012)
You need to code an OUTPUT clause and use $Action...
September 20, 2012 at 12:41 am
Not sure but considering your latest requirements, I think a slight modification to Lowell's original suggestion might perform better:
With MyCTE (Product,Parts,Status)
AS
(
SELECT 'Laptop1','mouse','OK' UNION ALL
SELECT 'Laptop1','screen','OK' UNION ALL
SELECT...
September 20, 2012 at 12:32 am
Incidentally, a slight change to the table DDL and adding an index had a nice impact on my second solution's elapsed time:
CREATE TABLE #Customer
( CustKey INT ...
September 19, 2012 at 11:24 pm
egerencher (9/19/2012)
"Firstly, I'd like to question why trans# 3 and 6 appear in your expected results. The total charges for period 02-03 Jan is $510 for 123456789 and for 02-03...
September 19, 2012 at 10:37 pm
egerencher (9/19/2012)
September 19, 2012 at 10:18 pm
FYI. These were my timing stats on 960,000 transactions:
SQL Server Execution Times:
CPU time = 17815 ms, elapsed time = 99414 ms.
September 19, 2012 at 9:57 pm
David - Really nice explanation of your approach. I have to say mine falls short in that regard.
I think it's important to look at the whole picture though. ...
September 19, 2012 at 9:47 pm
Lowell (9/19/2012)
one witht he proprietary SQL syntax, and another with a correlated query:
--SQL Server UPDATE FROM syntax
UPDATE [Projects]
SET Projects.Closed = Projects3.Closed
FROM [Projects3]
WHERE Projects3.Name =...
September 19, 2012 at 8:40 pm
egerencher (9/19/2012)
Here are the results I need:Trans#------SSN---------Date---------Amount
1--------123456789----01/01/12---------$600
2--------123456789----01/02/12---------$500
3--------123456789----01/03/12----------$10
4--------987654321----04/01/12---------$600
5--------987654321----04/02/12---------$600
6--------987654321----04/03/12---------$100
Firstly, I'd like to question why trans# 3 and 6 appear in your expected results. The total charges for period 02-03 Jan is...
September 19, 2012 at 7:26 pm
robert.gerald.taylor (9/19/2012)
SELECT DISTINCT SpecificCols
FROM
(SELECT col1, col2, col3, col4
FROM @t) t
UNPIVOT
(SpecificCols FOR AllCols...
September 19, 2012 at 6:48 pm
Timothy Graffham (9/19/2012)
September 19, 2012 at 6:38 pm
You might want to take a look at this article by Jeff Moden to get you started: http://www.sqlservercentral.com/articles/T-SQL/71550/, although that endpoint requirement is a bit odd and may take some...
September 19, 2012 at 1:46 am
Yasemin Örnek (9/19/2012)
Is it possible executing dynamic sql and store values in a temp table with WITH clause like below code?
DECLARE...
September 19, 2012 at 1:36 am
Jeff Moden (9/18/2012)
As a side bar, this is one of the reasons for my strong dislike for XML.
As a side bar, here is one of the reasons I shouldn't be...
September 19, 2012 at 1:23 am
Viewing 15 posts - 2,761 through 2,775 (of 3,957 total)