On Nov 2, 7:07 pm, Baron <richar...@gmail.com> wrote:
> Hello,
>
> I want to remove all records from a table. The table will have a lot
> of records, so is it possible to somehow drop the table?
> Or do I need to setup a taskqueue to progressively delete it?

You need to delete all of the records individually.  The datastore
doesn't really have any concept of a "table".

When writing the task, make sure you do keys_only queries; fetching
the whole entities will be unnecessarily slow (although deletes in
general are fairly slow as it is).
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to