如何将 Azure 流分析输出到 Azure SQL 数据库中
How to get Azure Stream Analytics output into an Azure SQL DB
如何在 Azure SQL 数据库中显示流分析输出,我是否必须创建一个新的 table?如果是,我应该输入什么数据名称和类型,参考Raspberry Pi Azure IoT Web Simulator
https://azure-samples.github.io/raspberry-pi-web-simulator/
我是 Azure 物联网和流分析的新手。
目前我正在使用 Raspberry Pi Azure IoT Web 模拟器作为学习 material,我遵循 Microsoft 文档并成功制作了存储帐户 blob 中显示的模拟器消息。
How to make Stream Analytics output shown in Azure SQL database, do I
have to create a new table? If so, what data name and type should I
input
是的,您需要在 Azure Sql 数据库中创建表,以便您可以将其配置为输出。
您可以关注这位官方 document 在 Azure 流分析中配置输出。
既然你已经有了输入数据,那么就在查询中使用输出别名sql来解析数据。输入数据类型需要与输出列数据类型匹配。
如何在 Azure SQL 数据库中显示流分析输出,我是否必须创建一个新的 table?如果是,我应该输入什么数据名称和类型,参考Raspberry Pi Azure IoT Web Simulator https://azure-samples.github.io/raspberry-pi-web-simulator/
我是 Azure 物联网和流分析的新手。 目前我正在使用 Raspberry Pi Azure IoT Web 模拟器作为学习 material,我遵循 Microsoft 文档并成功制作了存储帐户 blob 中显示的模拟器消息。
How to make Stream Analytics output shown in Azure SQL database, do I have to create a new table? If so, what data name and type should I input
是的,您需要在 Azure Sql 数据库中创建表,以便您可以将其配置为输出。
您可以关注这位官方 document 在 Azure 流分析中配置输出。
既然你已经有了输入数据,那么就在查询中使用输出别名sql来解析数据。输入数据类型需要与输出列数据类型匹配。