Follow the instructions below if you want to clear out all of the existing components from the Managed Edition so that the Edition is recreated from scratch the next time the pipeline is published.
Permission to Manage Semantic Services is required to complete this task.
- First, copy the URI of the Dataset for which you want to clear the Managed Edition. How do I find the URI for a dataset?
- Next, In the Administration application, expand the Monitoring & Diagnostics menu and select Semantic Services.
- Search for the LinkedDataService and view its details. Then click the Service Builder tab in Semantic Service Details.
- Click the Please Select an Operation field and select clearWorkingEdition from the drop-down list. The Request Statements for the service call are populated:

- Toward the bottom of the request, replace the <temp://value_to_fill_in_1> placeholder URI with the URI for the Dataset.
<http://serviceRequesta9e72cca-a79b-42f6-94a7-1ef9dfb1e65c> {
<http://serviceRequesta9e72cca-a79b-42f6-94a7-1ef9dfb1e65c> a ld:ClearWorkingEditionRequest ;
ld:fldsToClear <temp://value_to_fill_in_1> ;
ld:typesToClear <temp://value_to_fill_in_0> .
<temp://value_to_fill_in_1> a ld:FileBasedLinkedDataSet .
}
For example:
<http://serviceRequesta9e72cca-a79b-42f6-94a7-1ef9dfb1e65c> {
<http://serviceRequesta9e72cca-a79b-42f6-94a7-1ef9dfb1e65c> a ld:ClearWorkingEditionRequest ;
ld:fldsToClear <http://csi.com/FileBasedLinkedDataSet/ee8d3d5792fd218a03b70fdf850b6a4c> ;
ld:typesToClear <temp://value_to_fill_in_0> .
<http://csi.com/FileBasedLinkedDataSet/ee8d3d5792fd218a03b70fdf850b6a4c> a ld:FileBasedLinkedDataSet .
}
- Comment out the
ld:typesToClear <temp://value_to_fill_in_0>
line. For example:<http://serviceRequesta9e72cca-a79b-42f6-94a7-1ef9dfb1e65c> {
<http://serviceRequesta9e72cca-a79b-42f6-94a7-1ef9dfb1e65c> a ld:ClearWorkingEditionRequest ;
ld:fldsToClear <http://csi.com/FileBasedLinkedDataSet/ee8d3d5792fd218a03b70fdf850b6a4c> ;
# ld:typesToClear <temp://value_to_fill_in_0> .
<http://csi.com/FileBasedLinkedDataSet/ee8d3d5792fd218a03b70fdf850b6a4c> a ld:FileBasedLinkedDataSet .
}
- Click the Run Service button to clear the Edition. Anzo returns a response such as the following example when the request is processed:
@prefix n-1060687345: <http://openanzo.org/ClearWorkingEditionResponse/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ld: <http://cambridgesemantics.com/ontologies/2009/05/LinkedData#> .
@prefix ss: <http://openanzo.org/ontologies/2008/07/SemanticService#> .
n-1060687345:effbda5b-ce9c-4190-abb1-6f6efd07f5d8 {
n-1060687345:effbda5b-ce9c-4190-abb1-6f6efd07f5d8 ld:wasWorkingEditionCleared
"true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
n-1060687345:effbda5b-ce9c-4190-abb1-6f6efd07f5d8 rdf:type ld:ClearWorkingEditionResponse .
n-1060687345:effbda5b-ce9c-4190-abb1-6f6efd07f5d8 rdf:type ss:ServiceResponse
}
Now, if you browse the Managed Edition for the Dataset, you will see that the Edition does not contain any Jobs or Data Components. The next time this Dataset's pipeline is published, the Managed Edition will be repopulated.