JS_Diver
JS_Diver

Reputation: 786

Azure Data Factory - cannot find data set associated with pipeline and data store

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

Answers (1)

wBob
wBob

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

Related Questions