zoukankan      html  css  js  c++  java
  • SharePoint report site.

    1. Create site.

    2. Upload rdl files into Dashboards lib.

    3. Manage Data source.

      Select the rdl file and click …

      Data sources defined in the rdl file should be listed here.

      Click the data source name.

      If you select custom data source, you can change the connection string, credentials, etc.

      If you select shared data source, shared data source is listed.

       

    4. How to create shared data source.

      Create a xml file and paste the following content into it.

      <?xml version="1.0" encoding="utf-8"?>

      <DataSourceDefinition xmlns="http://schemas.microsoft.com/sqlserver/reporting/2006/03/reportdatasource">

      <Extension>SQL</Extension>

      <ConnectString>Data Source=<server>,<port>;Initial Catalog=<database name></ConnectString>

      <CredentialRetrieval>Store</CredentialRetrieval>

      <WindowsCredentials>False</WindowsCredentials>

      <ImpersonateUser>False</ImpersonateUser>

      <Enabled>True</Enabled>

      </DataSourceDefinition>

      And save it with file extension rsds.

      After uploading it into the Dashboards library, you can select it when managing data sources for rdl files.

  • 相关阅读:
    谈谈程序员、技术主管和架构师
    PyPI教程
    python以下划线开头的变量和函数的作用
    csv和xlsx区别
    编码问题2 utf-8和Unicode的区别
    编码问题1
    洛谷 1404 平均数
    洛谷 1441 砝码秤重
    【模板】高斯消元法
    线段树练习题
  • 原文地址:https://www.cnblogs.com/time-is-life/p/5895693.html
Copyright © 2011-2022 走看看