/var/lib/gnumed/server/sql/gmUnmatchableData-dynamic.sql is in gnumed-server 16.17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | -- =============================================
-- GNUmed - re-runnable objects for unmatchable incoming results
-- =============================================
-- $Source: /home/ncq/Projekte/cvs2git/vcs-mirror/gnumed/gnumed/server/sql/gmUnmatchableData-dynamic.sql,v $
-- $Id: gmUnmatchableData-dynamic.sql,v 1.2 2005-11-27 13:00:59 ncq Exp $
-- license: GPL v2 or later
-- author: Karsten.Hilbert@gmx.net
-- =============================================
-- force terminate + exit(3) on errors if non-interactive
\set ON_ERROR_STOP 1
-- ---------------------------------------------
comment on table clin.incoming_data_unmatchable is
'this table holds test results that could not be matched
to any patient, it is intended to prevent overflow of
incoming_data_unmatched with unmatchable data';
-- ---------------------------------------------
grant select, insert, update, delete on
clin.incoming_data_unmatched
, clin.incoming_data_unmatched_pk_seq
to group "gm-doctors";
-- =============================================
-- do simple schema revision tracking
select log_script_insertion('$RCSfile: gmUnmatchableData-dynamic.sql,v $1', '$Revision: 1.2 $');
-- =============================================
-- $Log: gmUnmatchableData-dynamic.sql,v $
-- Revision 1.2 2005-11-27 13:00:59 ncq
-- - since schema "clin" exists now we better use it
--
-- Revision 1.1 2005/10/30 21:57:51 ncq
-- - incoming data tables: unmatched/unmatchable
--
--
|