ADAC: Removing Navigation Nodes - Tech Support
The Stack Exchange Network is a collection of 183 Q&A communities, including Stack Overflow, the largest and most trusted online community for developers to learn, share their knowledge, and build their careers.
Introduction
In this article, we will discuss how to remove navigation nodes using ADAC (Azure Data Analytics Catalog). This is a useful skill for anyone working with the Azure Data Analytics Catalog, as it allows you to customize and streamline your navigation experience.
Prerequisites
Before you begin, make sure you have the following:
- Access to an Azure Data Analytics Catalog
- The necessary permissions to remove navigation nodes
Removing Navigation Nodes
To remove a navigation node using ADAC, you can use the following steps:
- Connect to the Azure Data Analytics Catalog using ADAC
- Navigate to the node you want to remove
- Right-click on the node and select "Delete"
- Confirm the deletion when prompted
It's important to note that deleting a navigation node will permanently remove it and all of its child nodes. Make sure you have a backup of any important data before proceeding.
Code Example
Here is an example of how to remove a navigation node using ADAC and PowerShell:
# Connect to the Azure Data Analytics Catalog
Connect-AzDataCatalog -Server "myserver.database.windows.net" -Database "mydatabase" -Username "myusername" -Password "mypassword"
# Navigate to the node you want to remove
$node = Get-AzDataCatalogNode -Path "/Nodes/MyFolder/MyNode"
# Remove the node
$node | Remove-AzDataCatalogNode
Removing navigation nodes using ADAC is a simple and effective way to customize your navigation experience in the Azure Data Analytics Catalog. By following the steps outlined in this article, you can easily remove nodes and their child nodes.