英文:
How move parameter location in Azure Data Factory
问题
我想把参数 'TableName' 从底部移动到顶部,即在 'CountName' 上面。我以为只需要将它从现有位置拖动到您想要的位置就可以了。在图像中,您可以看到我有一个十字准心,可以让我拖动参数 TableName,但是当我拖动并释放时,参数仍然保持在底部。
有人可以告诉我我做错了什么吗?
我添加了另一张显示实际移动箭头的图像,见下图
英文:
I want to move the parameter 'TableName' from the bottom to the top i.e above 'CountName'. I thought it simply a matter of dragging it from its existing location to where you would like. In the image you can see I have the cross-hairs that enable me to drag the Parameter TableName but when I drag and release the Parameter remains at the bottom.
Can someone let me know what I'm doing wrong?
I have updated the image with move arrows, see below
I have added another image showing the actual move arrows, see below
答案1
得分: 2
我尝试了上述情景,对我来说是一样的。
AFAIK,可能无法移动参数。要么您需要删除所有参数,按照您的顺序创建,要么按照评论中建议的方式重命名参数名称、类型和值可能是一种解决方法。
(或者)
您可以根据需要在管道 JSON 中编辑参数。
需要存储过程的参数可以通过点击导入按钮创建,并且这些参数将按照存储过程的顺序创建。存储过程将根据参数的名称来识别这些参数。
如果您想要更改顺序,您需要编辑您的存储过程或像上面那样编辑参数。
英文:
I tried the above scenario, and it is same for me.<br>
AFAIK, It might not be possible to move the parameters. Either you need to delete all parameters and create by your order or rename the parameter names, types and values might be the workaround as suggested in comments.
(OR)
You can edit the parameters in the pipeline JSON as per your requirement.
The parameters which are needed for the stored procedure can be created by clicking on import button in it and these will be created in the order of the stored procedure. The stored procedure will identify the parameters by the name of the parameter.
If you want to change the order, you need to edit your stored procedure or edit the parameters like above.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论