Reputation: 786
I cannot find an output data set that has been created while setting up a Copy Activity. A data store and a pipeline are associated with this data set and thus I cannot delete them. I get the following message when trying to do so:
Linked service 'TestDestination' cannot be deleted as it is being referenced by 1 other objects. First reference is 'OutputDataset-bla'.
I cannot find this OutputDataset-bla
anywhere. It is not in the Author and Deploy>Data sets. I also tried to search for it within Azure All Resources but nothing came out.
suggestions?
Upvotes: 2
Views: 1884
Reputation: 14389
Is it within the pipeline code? Copy Activity can generate one big JSON including datasets rather than individual objects.
Look at your pipeline in the 'Author and Deploy' section you will see the raw JSON for your pipeline(s). You will also see other datasets, linked services etc. Your missing dataset is probably referenced here somewhere, and possibly within a pipeline section rather than the dataset section.
Upvotes: 1