Plsql Function with error: No space left on device.

From: "David M(dot) Richter" <D(dot)Richter(at)DKFZ-heidelberg(dot)de>
To: pgsql-sql(at)postgresql(dot)org
Subject: Plsql Function with error: No space left on device.
Date: 2001-06-25 08:50:54
Message-ID: 3B36FB6E.1039F0D4@DKFZ-heidelberg.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


HAllo!

I have wrote a function. If I call this function the following output
appears:

psql:restructure.sql:139: ERROR: cannot extend image: No space left on
device.
Check free disk space.

My Postgres version is 7.1.2
My Server has the following data:

Main memory size: 510 Mbytes
1 GenuineIntel Pentium III (Coppermine) processor
1 vga+ graphics device
1 keyboard
1 parallel port:
lp0: base 0x378, no irq, no dma, modes SPP,ECP,ECPEPP,ECPPS2
PCI bus devices:
Host bridge: Intel 440BX - 82443BX Host (rev 3).
PCI bridge: Intel 440BX - 82443BX AGP (rev 3).
ISA bridge: Intel 82371AB PIIX4 ISA (rev 2).
IDE interface: Intel 82371AB PIIX4 IDE (rev 1).
USB Controller: Intel 82371AB PIIX4 USB (rev 1).
Bridge: Intel 82371AB PIIX4 ACPI (rev 2).
SCSI storage controller: Adaptec AIC-7890/1 (rev 0).
PCI bridge: DEC DC21152 (rev 3).
Ethernet controller: Intel 82557 (rev 8).
Multimedia audio controller: Ensoniq ES1371 (rev 8).
Multimedia video controller: Zoran ZR36057 (rev 2).
VGA compatible controller: Matrox Matrox G200 AGP (rev 3).
Display controller: Matrox Matrox G200 AGP (rev 3).

This is the function:
CREATE FUNCTION series_image () RETURNS integer AS '
DECLARE

psr_rec record;
i integer := 0;

BEGIN
FOR psr_rec IN SELECT * FROM relseries_image000 LOOP
UPDATE image
SET seriesoid = psr_rec.parentoid
WHERE chilioid = psr_rec.childoid;
i := i + 1;
END LOOP;
IF NOT FOUND THEN RETURN -1;
ELSE RETURN i;
END IF;
END;

' LANGUAGE 'plpgsql';

I saw during the execute of the function that the Ram was fully used and
also the swap space was also fully used.

How could I optimize the function above with new constructs of 7.1?

the table relseries_image000 has ca. 3 Millions of rows. Every row has 3
columns.

Thank you in advance for your help

David

Attachment Content-Type Size
D.Richter.vcf text/x-vcard 468 bytes

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Huxton 2001-06-25 10:23:18 Re: Plsql Function with error: No space left on device.
Previous Message Andreas Tille 2001-06-25 07:34:01 Foreign key problem