3

我有这个要优化的查询

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[ComprobantesFacturasObtenerEstadisticasLocal2] 
(
    @FechaDesde DateTime,
    @FechaHasta DateTime,
    @XML ntext  
)
AS
BEGIN

    DECLARE @docHandler INT

    EXEC sp_xml_preparedocument @docHandler OUTPUT, @XML    

    --Locales
    Select IdLocal
    into #seleccionados
    FROM OPENXML(@docHandler, N'/NewDataSet/Table1', 2) 
    WITH (IdLocal int)  

    select d.* into #Locales from  Dim_Sucursal d inner join GrimRepCen..Locales l on l.Codigo = d.Codigo inner join #seleccionados s on s.IdLocal = l.iDlocal

    /*2011/12/06 busco los descuentos del rio*/
    select distinct l.Codigo + ' - ' + l.Nombre  as local, c.IdComprobante, -1 as Cantidad,
        -1 * isnull(abs(c.TotalNeto),0) as IMPORTE, 
        'Varios' as Familia, 'Dto Bco Rio' as Linea
    into #descuentoRio
    from Fact_Comprobante(nolock) c 
    --inner join Fact_ComprobanteItem(nolock) ci on ci.IdComprobante = c.IdComprobante 
    inner join #locales l  on c.idDim_ComprobanteTipo = 5  and l.IdDim_sucursal = c.IdDim_sucursal  and c.fecha between @FechaDesde and @FechaHasta   

    /*******************COMPROBANTES************************************************ */
    select distinct
        c.*, l.Codigo + ' - ' + l.Nombre  as local, ct.IdComprobanteTipo
    into #Comprobantes
    from Fact_Comprobante(nolock) c 
    inner join Fact_ComprobanteItem(nolock) ci on ci.IdCOmprobante = c.IdComprobante
    inner join Dim_ComprobanteTipo(nolock) ct on ct.IdDim_ComprobanteTipo = c.idDim_ComprobanteTipo 
    inner join #locales l on l.IdDim_sucursal = c.IdDim_sucursal and  ct.IdComprobanteTipo not in (46 /*Error Fiscal Factura B*/, 47 /*Error Fiscal Factura A*/) and c.fecha between @FechaDesde and @FechaHasta   

     --Comprobantes por Linea/Marca/Familia
    select 
        m.Nombre as Marca, l.Nombre as Linea , case  when c.IdComprobanteTipo in (21,23,26,28) then 0 else -sum(ci.Cantidad) end as Cantidad,
        case  when c.IdComprobanteTipo in (21,23,26,28) 

        --toma en cuenta los descuentos de las facturas que fueron anuladas
        then c.TotalNeto 
        else isnull(ci.ImporteNeto,0) - isnull((select sum(importe) as importe 
                                                from Fact_Descuento (nolock) DD
                                                where DD.IdComprobante = ci.idComprobante  and ci.IdDim_Producto = IdDim_Producto
                                                 and ci.IdDim_Medida = IdDim_Medida and ci.IdDim_Calidad = IdDim_Calidad 
                                                 and exists 
                                                     (
                                                        select 1 
                                                        from ComprobanteReferencias AA
                                                        inner join Fact_Comprobante BB on aa.IdComprobanteCredito = BB.IdComprobante
                                                        where AA.IdComprobanteDebito = DD.IdComprobante
                                                        and BB.IdDim_ComprobanteTipo in (4,13,16,19)
                                                     )
                                                 ),0)
        end as IMPORTE, 
        f.Nombre as Familia
    from #Comprobantes c 
    inner join Fact_ComprobanteItem(nolock) ci on  ci.IdComprobante = c.IdComprobante 
    inner join Dim_Producto(nolock) p on p.IdDim_Producto = ci.IdDim_Producto
    inner join Dim_Marca(nolock) m on m.IdDim_Marca = p.IDDim_Marca
    inner join Dim_Familia(nolock) f on f.idDim_Familia = p.IdDim_Familia
    inner join Dim_Linea(nolock) l on l.IdDim_Linea = p.IdDim_Linea
    Group by m.Nombre,l.Nombre,f.Nombre,c.TotalNeto,ci.IdComprobante, ci.IdDim_producto,
    ci.idDim_Medida,ci.ImporteNeto,c.IdComprobanteTipo  ,ci.IdDim_Calidad
    union all
    select 'Grimoldi' as Marca, Linea , - 1 Cantidad,
        IMPORTE, 
        Familia
    from #descuentoRio 

    --/*Familia*/
    select case  when c.IdComprobanteTipo in (21,23,26,28) then 0 else -isnull(sum(ci.Cantidad),0) end as Cantidad,
    case  when c.IdComprobanteTipo in (21,23,26,28) 

        --toma en cuenta los descuentos de las facturas que fueron anuladas
        then c.TotalNeto 
        else isnull(ci.ImporteNeto,0) - isnull((select sum(importe) as importe 
                                                from Fact_Descuento (nolock) DD
                                                where DD.IdComprobante = ci.idComprobante  and ci.IdDim_Producto = IdDim_Producto
                                                 and ci.IdDim_Medida = IdDim_Medida and ci.IdDim_Calidad = IdDim_Calidad 
                                                 and exists 
                                                     (
                                                        select 1 
                                                        from ComprobanteReferencias AA
                                                        inner join Fact_Comprobante BB on aa.IdComprobanteCredito = BB.IdComprobante
                                                        where AA.IdComprobanteDebito = DD.IdComprobante
                                                        and BB.IdDim_ComprobanteTipo in (4,13,16,19)
                                                     )
                                                 ),0)
        end as IMPORTE, 
        f.Nombre as Familia
    from #Comprobantes c 
    inner join Comprobantes(nolock) co on co.IdComprobante = c.IdComprobante
    inner join Fact_ComprobanteItem(nolock) ci on  ci.IdComprobante = c.IdComprobante 
    inner join Dim_Producto(nolock) p on p.IdDim_Producto = ci.IdDim_Producto
    full outer join Dim_Familia(nolock) f on f.idDim_Familia = p.IdDim_Familia
    Group by f.Nombre,ci.ImporteNeto,ci.IdComprobante, ci.IdDim_producto,
    ci.idDim_Medida,c.TotalNeto, c.IdComprobanteTipo    ,ci.IdDim_Calidad
    union all
    select  -1 as Cantidad,
        IMPORTE, 
        Familia
     from #descuentoRio 

    /*local*/
    select c.Local, case  when c.IdComprobanteTipo in (21,23,26,28) then 0 else -isnull((sum(ci.Cantidad)),0) end as Cantidad,
        case  when c.IdComprobanteTipo in (21,23,26,28) 

        --toma en cuenta los descuentos de las facturas que fueron anuladas
        then c.TotalNeto 
        else isnull(ci.ImporteNeto,0) - isnull((select sum(importe) as importe 
                                                from Fact_Descuento (nolock) DD
                                                where DD.IdComprobante = ci.idComprobante  and ci.IdDim_Producto = IdDim_Producto
                                                 and ci.IdDim_Medida = IdDim_Medida and ci.IdDim_Calidad = IdDim_Calidad 
                                                 and exists 
                                                     (
                                                        select 1 
                                                        from ComprobanteReferencias AA
                                                        inner join Fact_Comprobante BB on aa.IdComprobanteCredito = BB.IdComprobante
                                                        where AA.IdComprobanteDebito = DD.IdComprobante
                                                        and BB.IdDim_ComprobanteTipo in (4,13,16,19)
                                                     )
                                                 ),0)
    end as IMPORTE,
    f.Nombre as Familia, l.Nombre as Linea
    from #Comprobantes c 
    inner join Comprobantes(nolock) co on co.IdComprobante = c.IdComprobante
    inner join Fact_ComprobanteItem(nolock) ci on  ci.IdComprobante = c.IdComprobante 
    inner join Dim_Producto(nolock) p on p.IdDim_Producto = ci.IdDim_Producto
    inner join Dim_Linea(nolock) l on l.IdDim_Linea = p.IdDim_Linea
    inner join Dim_Familia(nolock) f on f.idDim_Familia = p.IdDim_Familia
    Group by f.Nombre,ci.ImporteNeto, l.Nombre  ,ci.IdComprobante, ci.IdDim_producto,
    ci.idDim_Medida, c.Local,c.TotalNeto, c.IdComprobanteTipo,ci.IdDim_Calidad
    union all
    select Local, -1 as Cantidad,
        IMPORTE, 
        Familia, Linea
     from #descuentoRio 
end

有些事情我无法更改,例如,以其他方式发送 id 而不是 xml(因为我必须修改代码而我不能)、表的结构和其他内容。我只能修改这个存储。此查询接收一些 Id,插入临时表 ( #Seleccionados) 并使用它进行一些连接以获取有关销售和其他信息的信息。此外,您可以看到奇怪的东西,如带有硬编码值的 Union ALL 和其他东西。那是因为代码中报告的方式是完成的,也无法改变(我的意思是,不要担心那些奇怪的事情)。这个存储基本上返回 4 个选择:其中一个只有一行,所以我遇到了其他 3 个的问题,我在这里向您展示。

我试过的:

我在想的是尝试解决一些重复的事情,例如,这个子查询:

(select sum(importe) as importe 
                                                from Fact_Descuento (nolock) DD
                                                where DD.IdComprobante = ci.idComprobante  and ci.IdDim_Producto = IdDim_Producto
                                                 and ci.IdDim_Medida = IdDim_Medida and ci.IdDim_Calidad = IdDim_Calidad 
                                                 and exists 
                                                     (
                                                        select 1 
                                                        from ComprobanteReferencias AA
                                                        inner join Fact_Comprobante BB on aa.IdComprobanteCredito = BB.IdComprobante
                                                        where AA.IdComprobanteDebito = DD.IdComprobante
                                                        and BB.IdDim_ComprobanteTipo in (4,13,16,19)
                                                     )
                                                 )

ISNULL子句中重复 3 次选择。所以,我认为我可以使用 WITH Common_Expresion_Table 并减少它。但是,该选择是一个子查询,因此在我使用子查询时取决于选择的值(可以在该子查询的子句中看到我在说什么where

然后我虽然,3个选择没有那么不同。他们有几个重复的连接,但以不同的方式分组。所以,我也想使用某种临时表或 CTE,但我不确定,因为它们以不同的方式分组,并且也有一个或两个不同JOINS

一些额外的信息:

#Seleccionados将有大约 100 行 ID。此查询需要 50 段。一个星期:

  • 第一个查询返回47083 rows
  • 第二个查询返回47084 rows
  • 第三个查询返回47084 rows

如您所见,它几乎是相同的信息,但以不同的方式分组。

表格: Fact_Comprobante获得有关一次销售的信息。Fact_ComprobanteItem关于出售的物品。 Dim_Producto获得了有关一种产品的Dim_Familia信息,有关产品系列的Dim_Marca信息,获得了有关产品标志的信息,Dim_Linea获得了有关产品系列的信息(这 3 个表是 Dim_Producto 中的 FK)。 Dim_ComprobanteTipo获得了有关销售类型的 Fact_Descuento信息 获得了与销售相关的折扣信息。

所有表都有很多信息。

这些(Nolock)语句是因为我们在这些表中同时有 3 个服务插入、更新和其他内容。

我没有做这个查询,我只需要优化它。

4

1 回答 1

0

使用 SQL 探查器(如果您有权访问它)并筛选存储过程的名称。确保显示每个步骤(因此运行该过程会显示超过 1 或 2 行)。然后在每一步上,您都会看到秒数、读取次数、写入次数等。这样您就可以专注于耗时的部分。

替代方案您可以使用此 SQL 分析替代方案:

declare @dStart datetime
set @dStart = getdate()

-- at every place you like to monitor
print 'a: ' + convert(nvarchar(datediff(ms, @dStart, getdate()))

在不深入研究过程的情况下,我将从子查询开始并存在(...

这可能是一个昂贵的,而是将其重写为左连接或右连接

于 2012-07-12T20:47:18.997 回答