Re: [HACKERS] postgres database crashed

2006-10-16 Thread Ashish Goel
x27;t maintain the referrences but when we include the referrences then the database crashes somewhere between 2500-3000 transactions.So could this problem be due to the multiple referrences being made to the same table ?Markus Schaber <[EMAIL PROTECTED]> wrote: Hi, Ashish,Ashish Goel wrote:> But

Re: [HACKERS] postgres database crashed

2006-10-15 Thread Ashish Goel
But the same code worked when I inserted around 2500 images in the database. After that it started crashing. So , I don't think it's because of error in the code. Can u suggest some other possible reasons and also why is it crashing at call to memcpy().Tom Lane <[EMAIL PROTECTED]&g

Re: [HACKERS] postgres database crashed

2006-10-15 Thread Ashish Goel
llocations , and i don't find problem there.Tom Lane <[EMAIL PROTECTED]> wrote: Ashish Goel <[EMAIL PROTECTED]> writes:> We have a following table xyz( id int , fname varchar(50), img image)> where image is a data type we have created similar to lo.> ...> Can somebody sugg

[HACKERS] postgres database crashed

2006-10-11 Thread Ashish Goel
We have a following table xyz( id int , fname varchar(50), img image)where image is a data type we have created similar to lo.so when we executed an insert query on the following table :-insert into xyz VALUES (2541, '/home/ravi/jdbc/2_down/76.jpg', '76.jpg');It works well for nearly 2500 images bu