sql >> データベース >  >> RDS >> Sqlserver

URL からレポートを生成する - SQL Server Reporting Services 2008

    あなたの問題は、パラメータを http://server/reports... に渡していることです パラメータを http://server/reportserver... に渡す必要があります

    Reporting Services を初めて使用したときにこの問題が発生したことを覚えています。

    役立つ MSDN は次のとおりです。 /en-us/library/ms155391.aspx

    For example, to specify two parameters, “ReportMonth” and “ReportYear”, defined in a 
    report, use the following URL for a native mode report server:
    
    http://myrshost/ReportServer?/AdventureWorks 2008R2/Employee_Sales_Summary_2008R2&ReportMonth=3&ReportYear=2008
      

    結果は次のようになります:

    http://myRSServer/ReportServer/Pages/Report.aspx?%2fDefaultTenant%2fDialing+Reports%2fDialing+Agent+Performance&dFrom=01/01/2012&dTo=08/08/2012

    レポートを Excel / PDF / などにエクスポートしたい場合は、それを追加できます:

    Excel の場合:&rs:Format=Excel

    PDF の場合:&rs:Format=PDF

    これも役立つはずです:http://www.mssqltips.com/sqlservertip/1336/pass-parameters-and-options-with-a-url-in-sql-reporting-services/



    1. MySQLデータベースから同様のアイテムをプルするための最良の方法

    2. Postgresデータベースに画像ファイルを保存する方法は?

    3. EXPLAINとCOUNTは2つの異なる値を返します

    4. SQLスクリプトを一度に1つのステートメントでOracleDBに実行する