[Zope] Help: Finding/Deleting Bad Object from ZODB (Data.fs)

Jens Vagelpohl jens@zope.com
Wed, 12 Mar 2003 09:02:37 -0500


i don't know what you mean by "all i saw was my current session 
opened". have you tried something like...

ob = app._p_jar['\x00\x00\x00\x00\x00\x01\xef\xce']
ob.getPhysicalPath()

etc...  ?

jens


On Wednesday, Mar 12, 2003, at 08:40 US/Eastern, BZ wrote:

> Ok... a clue.
>
> I went into the debugger and all I saw was my current session opened.
> Look at the cache detail I found the object:
>
> 1 '\x00\x00\x00\x00\x00\x01\xef\xce'      1 G
> Products.CMFCore.PortalFolder.PortalFolder
>
> That is the object I am having problems with, but I have other Portal
> Folders which are fine.
>
> Another clue would be great...
>
> BZ
>
>> have you tried the debugger? you can find out more about the object
>> that way. suppose you are in the debugger and the zope root is bound 
>> to
>> app::
>>
>> app._p_jar['\x00\x00\x00\x00\x00\x01\xef\xce']
>>
>> that grabs the object "directly" and you might be able to find out 
>> more
>> that way.
>>
>> jens