Can I remove an attribute in Amazon SimpleDB without specifying ItemName?

Is it possible to remove an attribute in SimpleDB without specifying the ItemName parameter in the query string? The way I store my data is the names of the UUIDs, so I don’t know the UUIDs of the data I want to delete. Is there a way to specify an attribute and remove all elements with this attribute?

+4
source share
1 answer

There is no way to delete without an element name, but you can use SELECT to get the elements you need to delete:

select itemName() from MyDomain where MyAttribute = 'foo' 
+3
source

All Articles