Re: IJ out of memory

2007-08-15 Thread Kristian Waagan
Pendleton [mailto:[EMAIL PROTECTED] Sent: 14 August 2007 15:41 To: Derby Discussion Subject: Re: IJ out of memory Failed Statement is: ALTER TABLE logicproperty ADD CONSTRAINT r_186 FOREIGN KEY ( zone_id ) REFERENCES zone ON DELETE CASCADE You can include the foreign key constraints

RE: IJ out of memory

2007-08-15 Thread Williamson, Nick
JIRA DERBY-3009 created. Regards, Nick -Original Message- From: Williamson, Nick Sent: 15 August 2007 09:53 To: Derby Discussion Subject: RE: IJ out of memory Thanks Kristian, I'll visit the site and create an issue, attaching the script. Thanks for doing the investigation

IJ out of memory

2007-08-14 Thread Williamson, Nick
Hi all, I'm experiencing java.lang.OutOfMemoryError when trying to create a large schema (500+ tables, lots of constraints). Is there anything I can do about it (perhaps by allocating more memory to IJ) or is it a bug? TIA Nick

Re: IJ out of memory

2007-08-14 Thread Kristian Waagan
Williamson, Nick wrote: Hi all, I'm experiencing java.lang.OutOfMemoryError when trying to create a large schema (500+ tables, lots of constraints). Is there anything I can do about it (perhaps by allocating more memory to IJ) or is it a bug? Hello Nick, You say nothing about configuration,

RE: IJ out of memory

2007-08-14 Thread Williamson, Nick
Thanks Kristian, ...and apologies for the lack of information. I knew as soon as I'd posted that I should have said more about the environment... My config is default AFAIK, with the exception that I have the error logging set to 0. That said, I still get the OOME if I set error logging back to

Re: IJ out of memory

2007-08-14 Thread Bryan Pendleton
Failed Statement is: ALTER TABLE logicproperty ADD CONSTRAINT r_186 FOREIGN KEY ( zone_id ) REFERENCES zone ON DELETE CASCADE You can include the foreign key constraints in the initial table definition itself, instead of creating the table and then adding the constraints to it later.

RE: IJ out of memory

2007-08-14 Thread Williamson, Nick
too big for the list. If anyone would like to see it, please e-mail me off-list. Regards, Nick -Original Message- From: Bryan Pendleton [mailto:[EMAIL PROTECTED] Sent: 14 August 2007 15:41 To: Derby Discussion Subject: Re: IJ out of memory Failed Statement is: ALTER TABLE