Viewing 15 posts - 5,416 through 5,430 (of 7,614 total)
SELECT CustomerNumber,
SUM(CASE WHEN [YearMonth] BETWEEN 201401 AND 201412 THEN TotalAmount ELSE 0 END) AS Sales_2014,
SUM(CASE WHEN [YearMonth] BETWEEN 201201 AND 201312 THEN...
January 30, 2015 at 9:51 am
This should give you more accurate totals, although it will list every combination of ProductionLine and Category, which may not be what you want.
SELECT D.Line AS Line, D.ProductionLine AS ProductionLine,...
January 29, 2015 at 3:42 pm
Dell Dude (1/29/2015)
ScottPletcher (1/29/2015)
sp_help elmah gives this for indexes
So I guess the table name is "elmah"?! It's somewhat confusing with all the different "table names" given.
DROP INDEX PK_ELMAH_Error ON...
January 29, 2015 at 2:22 pm
David Burrows (1/29/2015)
dwain.c (1/28/2015)
David - that's a very clever alternative!Thank you :blush:
It is very annoying that you can use ALTER COLUMN to do everything except add or remove IDENTITY 🙁
True,...
January 29, 2015 at 1:03 pm
sp_help elmah gives this for indexes
So I guess the table name is "elmah"?! It's somewhat confusing with all the different "table names" given.
DROP INDEX PK_ELMAH_Error ON elmah
DROP INDEX idx_ELMAH_TimeUtc...
January 29, 2015 at 12:39 pm
Btw, be sure to script out the existing indexes before you delete them so you can recreate them easily ;-).
January 29, 2015 at 12:32 pm
Dell Dude (1/29/2015)
ScottPletcher (1/29/2015)
January 29, 2015 at 12:31 pm
You could try a nonclustered index on a that contains id,
and a nonclustered index on b that contains id.
That may or may not help, depending on the total sizes of...
January 29, 2015 at 11:45 am
Drop all the indexes, starting with the nonclustered, then recreate them, starting with clustered. Unless the table itself is damaged, that's likely your best chance to clean this up.
January 29, 2015 at 11:42 am
I believe CROSS APPLY would be more appropriate to the original requirement ... but I just see that may be a moot point now :-D.
SELECT
...
January 29, 2015 at 10:24 am
Phil Parkin (1/23/2015)
ScottPletcher (1/22/2015)
--But, ProductId seems right to me if you're going to camel case.
--
Camel case would be productId. ProductId is Pascal case 🙂
I believe either ProductId or productId are...
January 29, 2015 at 10:07 am
Steve Jones - SSC Editor (1/29/2015)
Eric M Russell (1/27/2015)
January 29, 2015 at 9:59 am
Based solely on the existing query -- having not yet reviewed index missing stats and index usage stats for this table -- you could add a clustered index on:
si.ShippingKey
Nonclustered...
January 29, 2015 at 9:53 am
TomThomson (1/28/2015)
Eric M Russell (1/27/2015)
andrew gothard (1/27/2015)
Eric M Russell (1/21/2015)
However, I would take issue with ID...
January 29, 2015 at 7:57 am
Something like this:
SELECT
SUM(CASE WHEN ht.asAtDate >= DATEADD(DAY, -7, today_midnight)
THEN ht.[numLow] + ht.[numMedium]...
January 27, 2015 at 3:58 pm
Viewing 15 posts - 5,416 through 5,430 (of 7,614 total)