如何使用Powershell复制Azure Cosmos DB存储过程

问题描述 投票:1回答:1
  • 我在Azure门户中有两个不同的资源组,例如rg-swm-develop和rg-swm-production 在两个资源组中,我都有一个Cosmos DB帐户,比如cdb-swm-develop-001和cdb-swm-production-001 两个帐户都包含数据库管理员 admin数据库有集合:名称,地址,城市 我想将存储过程从cdb-swm-develop-001复制到cdb-swm-production-001

如何使用Powershell将整个存储过程从一个资源组复制到另一个资源组?

powershell azure azure-cosmosdb azure-powershell
1个回答
0
投票

看看Powershell CosmosDB module。它带来了两个可以帮助你的特定命令:

  • Get-CosmosDbStoredProcedure - 获取要复制身体的SP
  • New-CosmosDbStoredProcedure - 在目标帐户中创建SP
© www.soinside.com 2019 - 2024. All rights reserved.