SQL Server 2008のバグにより、レポートのスケジュール機能が動作しない場合がある。

Scheduled reports that you create by using SQL Server 2008 Reporting Services (SSRS) do not display chart data in System Center Operations Manager 2007 R2

対策

  1. SQL Server の稼動しているコンピューターに、管理者権限のあるユーザーでログイン
  2. エクスプローラで以下のフォルダを開きます。Reporting Services フォルダは、SQL Server Reporting Services のインストールフォルダにある
    ¥Reporting Services¥ReportServer¥bin
  3. 開いたフォルダにある ReportingServicesService.exe.config をコピーし (バックアップ)、メモ帳で開く
  4. 下記の内容を、<dependentAssembly></dependentAssembly> に囲まれた部分に追加する
    <assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore" publicKeyToken="89845dcd8080cc91" culture="neutral" /> <bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" /> </dependentAssembly> <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
    <assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore" publicKeyToken="89845dcd8080cc91" culture="neutral" /> <bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
    
  5. 変更を保存して、ファイルを閉じる
  6. SQL Server Reporting Services を再起動する