Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I delete an entire partition in Windows Azure Table Storage?

I have a set of rows in a partition that represents some cached data. I want to refresh that cache without any concern for what is already there. Is it possible to delete an entire partition without having to do any selects?

like image 461
Ryan Pedersen Avatar asked Sep 12 '11 20:09

Ryan Pedersen


1 Answers

No, but you can delete an entire table with one call, so you might consider making your partitions separate tables instead. (But, of course, you can't do cross-table queries.)

like image 99
user94559 Avatar answered Sep 22 '22 15:09

user94559