HP3000-L Archives

March 2001, Week 2

HP3000-L@RAVEN.UTC.EDU

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Subject:
From:
EBEN YONG <[log in to unmask]>
Reply To:
EBEN YONG <[log in to unmask]>
Date:
Mon, 12 Mar 2001 18:28:53 -0800
Content-Type:
text/plain
Parts/Attachments:
text/plain (78 lines)
This question goes out to the ImageSQL gurus.  Notice below the DBERR 2502
when the SQL statement is attempted:

isql=> CONNECT TO 'HLTHDBE';
isql=> select a.prov#, count(a.ccn#), b.firstname, b.lastname
> from online.drug_claim_load a, health.provider b
> where b.prov# = a.prov#
> group by a.prov#, b.firstname, b.lastname;
MIXED space exhausted in DBEFileSet SYSTEM.  (DBERR 2502)
isql=>

From the ALLBASE/SQL Message Manual:
*-----------
2502

MESSAGE   ! space exhausted in DBEFileSet !. (DBERR 2502)
CAUSE   This message can have several meanings as follows:

All the space is exhausted in a DBEFileset if no expandable DBEFiles are
available.

All fixed-length DBEFiles in the DBEFileSet have run out of space, and all
expandable DBEFiles have been fully expanded.
The first parameter is the setting for the DBEFile's TYPE attribute. Valid
settings are INDEX, TABLE, and MIXED.

ACTION   Add new DBEFiles of the appropriate type to the DBEFileSet. If
space has been exhausted in the System.DBEFileSet during a query, try adding
more tempspace and more contiguous physical disk space.
*-----------

I have attempted to accomplish the recommended action.  From SQLGEN, here
are the statements I have used in an attempt to add DBEfiles to my DB
Environment:

*-----------
/* This file was created with a user language environment of */
/*    NATIVE-3000                                            */


CREATE DBEFILESET HLTHMFS;

CREATE DBEFILESET IMAGESQL;

CREATE DBEFILE HLTHMIX2
   WITH PAGES = 10000,
   NAME = 'HLTHMIX2',
   TYPE = MIXED;

ADD DBEFILE HLTHMIX2 TO DBEFILESET HLTHMFS;

CREATE DBEFILE HLTHMIX3
   WITH PAGES = 100000,
   NAME = 'HLTHMIX3',
   TYPE = MIXED;

ADD DBEFILE HLTHMIX3 TO DBEFILESET HLTHMFS;

CREATE DBEFILE HLTHMIX1
   WITH PAGES = 3000,
   NAME = 'HLTHMIX1',
   TYPE = MIXED;

ADD DBEFILE HLTHMIX1 TO DBEFILESET IMAGESQL;

COMMIT WORK;
*-----------

We have noticed that the error pertains to running out of SYSTEM space.  But
ISQL will not allow me to add a mixed type dbefile to the system dbefileset
(IMAGESQL) of more than 3000 pages.

In any event, if anyone can shed some light on this issue, I would really
appreciate it.  Thanks.

Eben Yong
Health Plan of San Mateo

ATOM RSS1 RSS2