本文介绍了订阅未注册为使用名称空间'Microsoft.DataFactory错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通过本教程使用Visual Studio使用复制活动创建管道" 并在我点击发布"时收到此错误.

Going through this tutorial "Create a pipeline with Copy Activity using Visual Studio" and recieving this error when i hit publish.

Creating datafactory-Name:VSTutorialFactory,Tags:,Subscription:Pay-As-You-Go,ResourceGroup:MyAppGroup,Location:North Europe,

24/03/2016 11:30:34- Error creating data factory:  
Microsoft.WindowsAzure.CloudException: MissingSubscriptionRegistration:  
The subscription is not registered to use namespace 'Microsoft.DataFactory'.

在网络上的任何地方都没有提到错误,而在网络上通常没有关于Azure的帮助/知识.

Error not mentioned anywhere on net and very little help/knowledge on azure generally on web.

推荐答案

在Azure中,每种功能都有一个资源提供程序(例如Microsoft.DataFactory).

In Azure, for each functionality there's a resource provider (Microsoft.DataFactory for example).

默认情况下,您的Azure订阅未在所有资源提供者中注册,并且由于您的订阅未在Microsoft.DataFactory资源提供者中注册,因此出现此错误.

By default, your Azure Subscription is not registered with all resource providers and because your Subscription is not registered with Microsoft.DataFactory resource provider, you're getting this error.

您需要做的是向资源提供者手动注册您的订阅.如果使用的是Azure PowerShell,则可以使用Register-AzureRmResourceProvider Cmdlet来实现相同的目的.您将需要使用如下语法:

What you have to do is manually register your subscription with a resource provider. If you're using Azure PowerShell, you can use Register-AzureRmResourceProvider Cmdlet to achieve the same. You would need to use syntax like below:

Register-AzureRmResourceProvider -ProviderNamespace Microsoft.DataFactory

一旦您的订阅在此资源提供商处注册,该错误就会消失.

Once your Subscription is registered with this resource provider, this error will go away.

这篇关于订阅未注册为使用名称空间'Microsoft.DataFactory错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 14:56