29 SSRS Performance Tuning Techniques and Tricks

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 13

  • @avinashk8686
    @avinashk8686 7 ปีที่แล้ว

    Good stuff... thanks for providing real time videos ..,

  • @rajatshrivastava879
    @rajatshrivastava879 4 ปีที่แล้ว +2

    Sir could you provide this query for calculating (timeprocessingsum,timeretreivalsum,timerenderingsum) for sample ? Thanks in advance.

    • @GerardoSangronis
      @GerardoSangronis 3 ปีที่แล้ว +1

      SELECT COUNT(Name) AS ExecutionCount,
      Name,
      SUM(TimeDataRetrieval) AS TimeDataRetrievalSum,
      SUM(TimeProcessing) AS TimeProcessingSum,
      SUM(TimeRendering) AS TimeRenderingSum,
      SUM(ByteCount) AS ByteCountSum,
      SUM([RowCount]) AS RowCountSum
      FROM (SELECT TimeStart,
      Catalog.Type,
      Catalog.Name,
      TimeDataRetrieval,
      TimeProcessing,
      TimeRendering,
      ByteCount,
      [RowCount]
      FROM Catalog
      INNER JOIN
      ExecutionLog
      ON Catalog.ItemID = ExecutionLog.ReportID
      WHERE Type = 2
      ) AS RE
      GROUP BY Name
      ORDER BY COUNT(Name) DESC,
      Name;

    • @eastoncolten6666
      @eastoncolten6666 3 ปีที่แล้ว

      You probably dont give a damn but does someone know of a way to log back into an Instagram account..?
      I was dumb forgot the password. I would love any tricks you can offer me!

    • @nicholasgordon5967
      @nicholasgordon5967 3 ปีที่แล้ว

      @Easton Colten instablaster ;)

    • @eastoncolten6666
      @eastoncolten6666 3 ปีที่แล้ว

      @Nicholas Gordon thanks for your reply. I found the site through google and im waiting for the hacking stuff atm.
      I see it takes quite some time so I will get back to you later when my account password hopefully is recovered.

    • @eastoncolten6666
      @eastoncolten6666 3 ปีที่แล้ว

      @Nicholas Gordon It worked and I actually got access to my account again. I am so happy:D
      Thanks so much you saved my account!

  • @mvrdata6928
    @mvrdata6928 7 ปีที่แล้ว +1

    Nice explanation .. can you provide for SSAS as well..

    • @Training2SQLMSBI
      @Training2SQLMSBI  7 ปีที่แล้ว +2

      sure ..Thanks for your feedback and appreciate your time...

  • @jagdeepjulka1694
    @jagdeepjulka1694 5 ปีที่แล้ว

    Sir how can I download SQL server with all services like SSRS SSIS SSAS

  • @bhargavtej1762
    @bhargavtej1762 ปีที่แล้ว

    How to enable cached reports??

    • @SBDavin
      @SBDavin หลายเดือนก่อน

      You do this in the Report Manager website.
      First set the credentials in the shared data source (SDS). The credentials must be hard-coded in the SDS to enable caching or snapshots.
      Then "Manage" the report in Report Manager and enable caching. Alternately, you could have snapshots be created on a schedule.