如何将数据从 SQL Azure 导入到 O365 outlook 日历

How to import data from SQL Azure to O365 outlook Calendar

如有任何建议,我们将不胜感激。

我正在尝试将用户数据列表从 Azure SQL 导入 Outlook 日历。

我知道我可以在 PowerShell 中完成。但是,看看除了 powershell 是否还有其他选择。

非常感谢, 宁静

选项 1:

您可以使用 Logic App / Power Automate(以前称为 Microsoft Flow)

下面的连接器将从 SQL 服务器获取行: https://docs.microsoft.com/en-us/connectors/sql/#get-rows-v2-action-aggregation-transformation-parameter-detail

您可以使用 for each(在逻辑应用程序中)或 Apply to each(在 power automate 中)遍历每一行

使用 Create event 连接器相应地创建一个日历事件

选项 2:

如果您想提供一个 UI 用户必须自己触发的地方 - 您可以使用 MS Powerapps - 它也有相关的连接器并且操作在下面完成用户

选项 3:

您可以通过 Rest API 公开您的服务器数据并在您的应用程序中使用这些数据。 例如,您可以使用 Skyvia Connect for the same. In the same application you could make use of the Outlook APIs to create/manager the calendar events.