Viewing 15 posts - 3,376 through 3,390 (of 7,609 total)
SELECT ut.IdUser,
MIN(ut.IdShop) AS IdShop_Min, MAX(ut.IdShop) AS Id_Shop_Max /*MIN & MAX are optional, of course*/
FROM @UserTransaction ut
GROUP BY ut.IdUser
HAVING COUNT(DISTINCT ut.IdShop) >...
May 18, 2018 at 2:54 pm
Still seems too long for only 76K rows.
1) Check fragmentation on the clus index. If it's bad, the index may need reorganized or rebuilt.
2) Compress the table...
May 18, 2018 at 11:09 am
SELECT GL_TransLines.[GLL_Account] as "Account"
, GL_TransLines.[Amount] as "Current Expenses"
, GL_TransLines.[COP_Period] as "Period"
, GL_TransLines.[GLT_TransDate] as "Trans Date"
,...
May 18, 2018 at 11:04 am
Your clustered index is fine.
Actually that's a significant understatement by me. Your clus index is generally superb (although you could probably remove the Attribute* columns with no real...
May 17, 2018 at 10:25 am
Your clustered index is fine.
You really don't need the temp tables for this specific query, but if building them is not taking much time, then that's OK too.
May 17, 2018 at 8:24 am
For testing a datetime/datetime2 column for the current day, you should do this:
--good way
cr.CreatedDate >= DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()), 0) AND
cr.CreatedDate < DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()) +...
May 15, 2018 at 10:52 am
Data warehouses are often denormalized. However, this data is so unlikely to be needed that all columns other than, say, FullName, should be put into a separate table, which can be joined...
May 14, 2018 at 11:29 am
Back in the day, I would do a pattern search to determine eligible data types:
SUM(CASE WHEN column NOT LIKE '%[^0-9]%' THEN 1 ELSE 0 END) AS column_has_only_digits,
etc.
May 11, 2018 at 1:31 pm
For a first pass, you could try just ISDATE, IS NULL, ISNUMERIC and a few other key attributes:
CREATE TABLE dbo.column_profile ( ... );
INSERT...
May 11, 2018 at 12:39 pm
Put the metrics in a table. Then we can join to each metric as needed.
May 10, 2018 at 1:16 pm
May 10, 2018 at 10:24 am
Also, don't you want to subtract 1 from the substring length to you get rid of the period and everything after it in the string (that seems to me to...
May 10, 2018 at 9:50 am
As always, clustering key is the most critical thing.
Do you (almost) always specify the deal_id when reading the dbo.avt_deal_restriction table? If so, cluster that table on ( deal_id,...
May 9, 2018 at 2:03 pm
Viewing 15 posts - 3,376 through 3,390 (of 7,609 total)