
rem  * Drop & then create table descriptions
rem  * Example, you may need another filling

DROP TABLE descriptions;

rem COMMIT;
rem Removed hardcoded tablespace  -ml12/7/94 2:07pm.
CREATE TABLE descriptions (
	table_name	CHAR(32) NOT NULL,
	explanation	CHAR(255) NOT NULL
) ;
COMMIT;

rem Removed phone table  -ml12/7/94 2:08pm.
rem INSERT INTO descriptions (table_name,explanation) VALUES
rem ('OCR.DUBNA_PHONES', 'Local phone numbers database.
rem Field names are self-explanatory. Contents is in
rem KOI-8 coding. If your comp is not russified - see WORA 
rem docs on how to help it.');

rem Changed hardcoded owner to variable  -ml12/7/94 2:08pm.
INSERT INTO descriptions (table_name,explanation) VALUES
( user || '.DESCRIPTIONS', 'About itself - containing short
explanation what table is what about');
COMMIT;

GRANT SELECT ON descriptions TO PUBLIC;
COMMIT;

