将 SQL Server 数据库数据移动到 SAP BW

2021-12-30 00:00:00 etl sql-server ssis data-warehouse sap-bw

我读过几篇关于将数据从 SAP BW 移到 SQL Server 的文章.我找不到任何关于将数据从 SQL Server 移动到 SAP BW 的文章,是否有可能?如果有,最好的处理方法是什么?

I have read a few articles about moving data out of SAP BW and into SQL Server. I cant find any articles on moving the data from SQL Server to SAP BW, is it even possible and if so what would be the best way to handle this?

推荐答案

在搜索此主题后,我发现了许多解决此问题的链接,在此答案中,我将尝试对它们进行总结并提供所有链接可以帮助您实现目标.

有多种方法可以将数据从 SQL Server 导入 SAP BW:

There are many way to import data from SQL Server into SAP BW:

使用 DB Connect,您可以从 SAP 支持的数据库系统加载数据,通过

With DB Connect, you can load data from a database system that is supported by SAP, by

  • 将数据库链接到作为源系统的 BW,从而创建对外部关系数据库管理系统 (RDBMS) 的直接访问点.
  • 通过生成数据源让 BW 知道元数据.

  • 使用 DB Connect 传输数据莉>
  • 创建数据源一步一步地进行数据库连接
  • SAP BW 7.3:如何使用 DB Connect 从 SQL Server 提取数据
  • Note 512739 - MS SQLServer 的 BW 外部数据库连接
    • 使用 SQL Server 数据库创建数据存储

    Microsoft 为 SAP BW 创建了 SSIS 连接器,它允许您创建连接到 SAP BW,您可以参考以下链接和官方文档:

    Microsoft has created a SSIS connector for SAP BW, which allows you to create connection To SAP BW, you can refer to the following links and official documentations:

    • 如何使用 SSIS 从 SQL Server 将数据加载到 SAP BW 7.3

    SQL Server 2016

    适用于 SAP BW 的 Microsoft 连接器由一组三个组件组成,可让您从 SAP Netweaver BW 版本 7 系统中提取数据或将数据加载到其中.Microsoft Connector for SAP BW for SQL Server 2016 是 SQL Server 2016 Feature Pack 的一个组件.

    The Microsoft Connector for SAP BW consists of a set of three components that let you extract data from, or load data into, an SAP Netweaver BW version 7 system. The Microsoft Connector for SAP BW for SQL Server 2016 is a component of the SQL Server 2016 Feature Pack.

    • 适用于 SAP BW 的 Microsoft 连接器
    • 适用于 SAP BW 组件的 Microsoft 连接器
    • SQL Server 2014

      适用于 SAP BW 的 Microsoft Connector 1.1 由一组三个组件组成,可让您从 SAP Netweaver BW 版本 7 系统中提取数据或将数据加载到其中.

      The Microsoft Connector 1.1 for SAP BW consists of a set of three components that let you extract data from, or load data into, an SAP Netweaver BW version 7 system.

      • 适用于 SAP BW 的 Microsoft 连接器 1.1
      • SQL Server 2008

        • 将 SQL Server 2008 集成服务与 SAP BI 7.0 结合使用

        如果您决定使用 SSIS,我从 SAP 找到了这份白皮书,其中包含详细的教程:

        If you decide to go with SSIS, I found this white paper from SAP that contains a detailed tutorials:

        • 如何使用Microsoft Connector 1.0带有 Open Hub 服务的 MS SQL Server 集成服务包,用于将数据从 SAP BI 导出到 MS SQL

        如果本文没有帮助,您可以参考互联网上数十个关于如何创建 SSIS 包的教程:

        If this article didn't help, you can refer to tens of tutorials on how to create SSIS packages on the internet:

        • 步骤创建您的第一个 SSIS 包
        • SSIS 基础:设置初始包
        • 创建新的 SSIS 包/
        • 官方集成服务教程

        这是一个第三方工具,旨在允许 SSIS 与 SAP BW 连接.

        This is a third-party tool created to allow SSIS to connect with SAP BW.

        Xtract IS 组件套件提供九个组件来提供各种 SAP 接口技术.使用图形编辑器以安全且类型安全的方式实施数据流.

        The Xtract IS Component Suite offers nine components to provide all kinds of SAP interface technologies. Implement your data flows in a secure and type-safe way with a graphical editor.

        • Xtract IS – SAP 和 SQL Server 集成服务的即插即用
        • 在搜索这个问题时,不推荐使用SSIS来实现,因为它可能会遇到一些不兼容的问题,他们建议使用SAP BW标准anyDB源系统或SAP BO数据服务.

          While searching for this issue, using SSIS to achieve that is not recommended because it may encounter some incompatibility issue, they recommended to use SAP BW standard anyDB source system or SAP BO Data services.

          问题示例:

          • 加载数据SSIS 到 SAP BW
          • 使用 SSIS将数据从 SQL Server 加载到 SAP BW
          • SAP BW to SQl Server 导入导出向导

          另一方面,SSIS 保证了易用性,并且有数以千计的关于这项技术的主题和参考资料,可以帮助您比其他技术更快地实现目标.

          On the other hand, SSIS guarantee the ease of use and there is thousands of topics and references for this technologies which will help you to achieve your goal faster than other technologies.

          • 如何加载使用 SSIS 从 SQL Server 到 SAP BW 的数据
          • 快速提示: SSIS 和 SAP BW-在 SAP BW 和 SSIS 之间建立连接
          • 白皮书 -SAP BW 使用 DB Connect 传输数据

相关文章