Monday, May 30, 2016

Using Indexed View to improve query performance


select concat(c.FirstName,' ',c.LastName) CustomerName,subtotal.TotalAmount
 from
DimCustomer c left outer join
(
select p.EnglishProductName, s.CustomerKey,sum(s.SalesAmount) TotalAmount
from DimProduct p join FactInternetSales s
on p.ProductKey=s.ProductKey
group by p.EnglishProductName, s.CustomerKey
) subtotal
on c.CustomerKey=subtotal.CustomerKey
order by CustomerName
OPTION (MAXDOP 1);



(58922 row(s) affected)
Table 'Worktable'. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table 'Workfile'. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table 'DimCustomer'. Scan count 1, logical reads 975, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table 'FactInternetSales'. Scan count 1, logical reads 1234, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table 'DimProduct'. Scan count 1, logical reads 251, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.

(1 row(s) affected)


--Set the options to support indexed views. 
--These are default SQL Server settings as well
-- But not default for ODBC/OLEDB
-- https://msdn.microsoft.com/en-sg/library/ms191432.aspx

SET NUMERIC_ROUNDABORT OFF; 
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, 
    QUOTED_IDENTIFIER, ANSI_NULLS ON; 
GO 

IF OBJECT_ID ('vCustProdSales', 'view') IS NOT NULL 
drop view vCustProdSales
GO

CREATE VIEW vCustProdSales
WITH SCHEMABINDING 
AS 
select p.EnglishProductName, s.CustomerKey,sum(s.SalesAmount) TotalAmount, count_big(*) Sales_Count
from dbo.DimProduct p join dbo.FactInternetSales s
on p.ProductKey=s.ProductKey
group by p.EnglishProductName, s.CustomerKey
GO 
--Create an index on the view. 
CREATE UNIQUE CLUSTERED INDEX IDX_vCustProdSales
    ON vCustProdSales (EnglishProductName, CustomerKey); 
GO 


select concat(c.FirstName,' ',c.LastName) CustomerName,subtotal.TotalAmount
 from
DimCustomer c left outer join
(
select p.EnglishProductName, s.CustomerKey,sum(s.SalesAmount) TotalAmount
from DimProduct p join FactInternetSales s
on p.ProductKey=s.ProductKey
group by p.EnglishProductName, s.CustomerKey
) subtotal
on c.CustomerKey=subtotal.CustomerKey
order by CustomerName
OPTION (MAXDOP 1);




(58922 row(s) affected)
Table 'Worktable'. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table 'Workfile'. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table 'DimCustomer'. Scan count 1, logical reads 975, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table 'vCustProdSales'. Scan count 1, logical reads 530, physical reads 0, read-ahead reads 3, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.


Friday, May 6, 2016

Fix SSH slow login issue in RHEL7/OL7

Setting highlighted in green are final setting modified in sshd_conf.

[root@localhost ~]# diff /etc/ssh/sshd_config /etc/ssh/sshd_config.20160506
93,94c93,94
< #GSSAPIAuthentication yes
< #GSSAPICleanupCredentials no
---
> GSSAPIAuthentication yes
> GSSAPICleanupCredentials no
129c129
< UseDNS no
---
> #UseDNS yes

[root@localhost ~]# service sshd restart
Redirecting to /bin/systemctl restart  sshd.service

Reference URL: http://ask.xmodulo.com/fix-slow-ssh-login-issue-linux.html