[google-appengine] Re: Help Deleting Corrupt Data from Datastore

2008-09-24 Thread Alexander Pugachev
I saw. I just thought there was no way to know the key. 2008/9/24 Gee <[EMAIL PROTECTED]> > > Hello! > > I was able to solve this by: > > 1) figure out the Key of the record by using Key.from_path() and > GUESSING at the correct ID (acutally iterating) based on the record > before it and after it

[google-appengine] Re: Help Deleting Corrupt Data from Datastore

2008-09-24 Thread Gee
Hello! I was able to solve this by: 1) figure out the Key of the record by using Key.from_path() and GUESSING at the correct ID (acutally iterating) based on the record before it and after it (since I could never see that record directly because all apis would throw an exception) 2) once I had t

[google-appengine] Re: Help Deleting Corrupt Data from Datastore

2008-09-24 Thread Alexander Pugachev
Maybe you could dump all valid models data, remove that model definition and update application (at this stage datastore should not keep data for that model), add model definition back, update application, and put back valid data? 2008/9/24 Gee <[EMAIL PROTECTED]> > > Hi all, > > I somehow manage