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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
-- GNUmed
-- author: Karsten Hilbert <Karsten.Hilbert@gmx.net>
-- license: GPL v2 or later
-- $Source: /home/ncq/Projekte/cvs2git/vcs-mirror/gnumed/gnumed/server/sql/country.specific/de/PLZ.sql,v $
-- $Revision: 1.13 $
-- ===================================================================
-- force terminate + exit(3) on errors if non-interactive
\set ON_ERROR_STOP 1
set client_encoding to 'LATIN1';
-- ===================================================================
delete from dem.urb where id_state = (select id from dem.state where code='SN' and country='DE');
delete from dem.state where country='DE';
-- Deutschland (Bundeslnder)
insert into dem.state (code, country, name) values ('BW', 'DE', 'Baden-Wrttemberg');
insert into dem.state (code, country, name) values ('BY', 'DE', 'Bayern');
insert into dem.state (code, country, name) values ('BE', 'DE', 'Berlin');
insert into dem.state (code, country, name) values ('BB', 'DE', 'Brandenburg');
insert into dem.state (code, country, name) values ('HB', 'DE', 'Bremen');
insert into dem.state (code, country, name) values ('HH', 'DE', 'Hamburg');
insert into dem.state (code, country, name) values ('HE', 'DE', 'Hessen');
insert into dem.state (code, country, name) values ('MV', 'DE', 'Mecklenburg-Vorpommern');
insert into dem.state (code, country, name) values ('NI', 'DE', 'Niedersachsen');
insert into dem.state (code, country, name) values ('NW', 'DE', 'Nordrhein-Westfalen');
insert into dem.state (code, country, name) values ('RP', 'DE', 'Rheinland-Pfalz');
insert into dem.state (code, country, name) values ('SL', 'DE', 'Saarland');
insert into dem.state (code, country, name) values ('SN', 'DE', 'Sachsen');
insert into dem.state (code, country, name) values ('ST', 'DE', 'Sachsen-Anhalt');
insert into dem.state (code, country, name) values ('SH', 'DE', 'Schleswig-Holstein');
insert into dem.state (code, country, name) values ('TH', 'DE', 'Thringen');
-- sterreich (Bundeslnder)
insert into dem.state (code, country, name) values ('Wien', 'AT', 'Wien'); -- Vienna
insert into dem.state (code, country, name) values ('Tirol', 'AT', 'Tirol'); -- the Tyrol
insert into dem.state (code, country, name) values ('O', 'AT', 'Obersterreich'); -- Upper Austria
insert into dem.state (code, country, name) values ('N', 'AT', 'Niedersterreich'); -- Lower Austria
insert into dem.state (code, country, name) values ('Stmk', 'AT', 'Steiermark'); -- Styria
insert into dem.state (code, country, name) values ('Sbg', 'AT', 'Salzburg');
insert into dem.state (code, country, name) values ('Vlbg', 'AT', 'Vorarlberg');
insert into dem.state (code, country, name) values ('Bgld', 'AT', 'Burgenland');
insert into dem.state (code, country, name) values ('Ktn', 'AT', 'Krnten'); -- Carinthia
-- jo, wos is jetz ds ?
--INSERT into dem.state(code, country, name) VALUES ('BU','AT',i18n.i18n('Burgenland'));
--INSERT into dem.state(code, country, name) VALUES ('CA','AT',i18n.i18n('Carinthia'));
--INSERT into dem.state(code, country, name) VALUES ('NI','AT',i18n.i18n('Niederoesterreich'));
--INSERT into dem.state(code, country, name) VALUES ('OB','AT',i18n.i18n('Oberoesterreich'));
--INSERT into dem.state(code, country, name) VALUES ('SA','AT',i18n.i18n('Salzburg'));
--INSERT into dem.state(code, country, name) VALUES ('ST','AT',i18n.i18n('Steiermark'));
--INSERT into dem.state(code, country, name) VALUES ('TI','AT',i18n.i18n('Tirol'));
--INSERT into dem.state(code, country, name) VALUES ('VO','AT',i18n.i18n('Vorarlberg'));
--INSERT into dem.state(code, country, name) VALUES ('WI','AT',i18n.i18n('Wien'));
select dem.gm_upd_default_states();
------------------
-- Gro Srchen --
------------------
insert into dem.urb (id_state, name, postcode) values (
(select id from dem.state where code = 'SN' and country='DE'),
'Gro Srchen',
'02999'
);
-------------
-- Leipzig --
-------------
-- no street
insert into dem.urb (id_state, postcode, name) values (
(select id from dem.state where code = 'SN' and country = 'DE'),
'04318',
'Leipzig'
);
insert into dem.urb (id_state, postcode, name) values (
(select id from dem.state where code = 'SN' and country = 'DE'),
'04317',
'Leipzig'
);
-- streets
insert into dem.street (
id_urb,
name,
suburb,
postcode
) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Zum Kleingartenpark',
'Sellerhausen',
'04318'
);
insert into dem.street (id_urb, name, postcode) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Riebeckstrae',
'04317'
);
insert into dem.street (id_urb, name, postcode) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Lange Reihe',
'04299'
);
insert into dem.street (id_urb, name, postcode) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Ferdinand-Jost-Strae',
'04299'
);
insert into dem.street (
id_urb,
name,
suburb,
postcode
) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Schildberger Weg',
'Mockau',
'04357'
);
insert into dem.street (id_urb, name, postcode) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Wurzener Strae',
'04315'
);
insert into dem.street (
id_urb,
name,
suburb,
postcode
) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Wurzener Strae',
'Sellerhausen',
'04318'
);
insert into dem.street (id_urb, name, postcode) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Eilenburger Strae',
'04317'
);
insert into dem.street (
id_urb,
name,
suburb,
postcode
) values (
(select id from dem.urb where name='Leipzig' limit 1),
'Cunnersdorfer Strae',
'Sellerhausen',
'04318'
);
-- ===================================================================
-- do simple revision tracking
delete from gm_schema_revision where filename = '$RCSfile: PLZ.sql,v $';
INSERT INTO gm_schema_revision (filename, version) VALUES('$RCSfile: PLZ.sql,v $', '$Revision: 1.13 $');
-- =============================================
-- $Log: PLZ.sql,v $
-- Revision 1.13 2006-01-09 13:46:19 ncq
-- - adjust to schema "i18n" qualification
--
-- Revision 1.12 2006/01/06 10:12:02 ncq
-- - add missing grants
-- - add_table_for_audit() now in "audit" schema
-- - demographics now in "dem" schema
-- - add view v_inds4vaccine
-- - move staff_role from clinical into demographics
-- - put add_coded_term() into "clin" schema
-- - put German things into "de_de" schema
--
-- Revision 1.11 2005/10/19 11:29:09 ncq
-- - when selecting state pks must give country, too, or else duplicates exist
--
-- Revision 1.10 2005/09/25 17:52:09 ncq
-- - add commented out alternative state information for AT
--
-- Revision 1.9 2005/09/19 16:26:07 ncq
-- - update default states
--
-- Revision 1.8 2005/07/14 21:31:43 ncq
-- - partially use improved schema revision tracking
--
-- Revision 1.7 2005/06/10 07:21:35 ncq
-- - better docs
--
-- Revision 1.6 2005/06/07 20:59:18 ncq
-- - Austrian states
--
-- Revision 1.5 2005/05/24 19:44:31 ncq
-- - use proper state abbreviations
--
-- Revision 1.4 2005/05/17 08:17:53 ncq
-- - Bundeslnder
--
-- Revision 1.3 2004/09/20 21:17:39 ncq
-- - add a few suburbs
--
-- Revision 1.2 2004/04/07 18:16:06 ncq
-- - move grants into re-runnable scripts
-- - update *.conf accordingly
--
-- Revision 1.1 2003/12/29 15:15:01 uid66147
-- - a few German post codes
--
|