IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Voir le flux RSS

Au Pied Levé - À Main Levée

I-3.1.6. Ex&Co SQL CREATE_BDD

Noter ce billet
par , 01/04/2020 à 10h05 (243 Affichages)
APL-AML est une monographie fragmentée en plusieurs billets pour des raisons de volume.
Un billet SYNOPSIS et un billet SOMMAIRE agrègent tous les billets du blog via des liens hypertextes.

■ ■ ■ SOMMAIRE DU BILLET ■ ■ ■

  • CREATE_BDD
CREATE_BDD

SQL de création de toutes les tables de la BDD "concours".

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
{------------------------------------------------------------------------------}
{
CREATE_BDD.sql
}
{------------------------------------------------------------------------------}
{
sql de création de toutes les tables de la BDD "concours"

Les attributs les plus courants sont codifiés par un radical suivi du nom de la 
table à laquelle ils appartiennent ou du nom de leur table référente. 

Les attributs retenus sont les suivants :

+------------+----+------------------------------------------------------------+
| Numéro     | n_ | l'attribut "n_cec" se lit "Numéro  de la table cec"        |
| Code       | c_ | l'attribut "c_ec"  se lit "Code    de la table ec"         |
| Type       | t_ | l’attribut "t_ec"  se lit "Type    de la table ec"         |
| Session    | s_ | l’attribut "s_ec"  se lit "Session de la table ec"         |
| Groupe     | g_ | l’attribut "g_cea" se lit "Session de la table cea"        |
| Epreuve    | e_ | l’attribut "e_cea" se lit "Session de la table cea"        |
| Option     | o_ | l’attribut "o_cea" se lit "Session de la table cea"        |
| Libellé    | l_ | l’attribut "l_cm"  se lit "Libellé de la table cm"         |
+------------+----+------------------------------------------------------------+

ATTENTION ! La structure de la table "pim" dépend de l'académie.

            Elle est adaptée au fichier de transfert de la télématique,
            avec en fin de table les attributs non prévus par la télématique
            de l'académie mais prévus par la télématique d'une autre académie.

            Les attributs supplémentaires se traduisent par l'ajout d'autant de
            pipes à la fin de chaque items (par un sql) avant le load.
}
{------------------------------------------------------------------------------}
{
sql de précaution en cas de run accidentel
}
{------------------------------------------------------------------------------}

select rien
from   rien;

{------------------------------------------------------------------------------}

{ ac    (académies) -----------------------------------------------------------}
{ cea   (candidatures épreuves d'admission) -----------------------------------}
{ cea_n (candidatures épreuves d'admission) -----------------------------------}
{ cec   (candidatures examens-concours) ---------------------------------------}
{ cec_n (candidatures examens-concours) ---------------------------------------}
{ cm    (communes) ------------------------------------------------------------}
{ cnd   (candidatures OCEAN) --------------------------------------------------}
{ cp    (codes postaux) -------------------------------------------------------}
{ dg    (district géographique) -----------------------------------------------}
{ dec   (direction des examens-concours : Ministère) --------------------------}
{ dip   (diplomes - voir table eaq) -------------------------------------------}
{ doc   (documentation Ex&Co : views per, ace, shl, sql) ----------------------}
{ ea    (épreuves d'admissibilités/admission) ---------------------------------}
{ ea_n  (épreuves d'admissibilités/admission) ---------------------------------}
{ eaq   (examen pour acquis OCEAN = diplômes) ---------------------------------}
{ ec    (examens-concours) ----------------------------------------------------}
{ ec_n  (examens-concours) ----------------------------------------------------}
{ epr   (épreuves OCEAN) ------------------------------------------------------}
{ et    (établissements) ------------------------------------------------------}
{ exa   (examens OCEAN) -------------------------------------------------------}
{ gr    (grades) --------------------------------------------------------------}
{ itrf  (ITRF) ----------------------------------------------------------------}
{ ln    (logname) -------------------------------------------------------------}
{ lv    (langues vivantes) ----------------------------------------------------}
{ mat   (matières) ------------------------------------------------------------}
{ mj    (membres du jury) -----------------------------------------------------}
{ mra   (motifs recul d'âge) --------------------------------------------------}
{ nat   (nationalités) --------------------------------------------------------}
{ ne    (natures établissements) ----------------------------------------------}
{ net   (candidatures internet issues d'INSCRINET OCEAN) ----------------------}
{ oc    (origine des candidats) -----------------------------------------------}
{ opt   (options) -------------------------------------------------------------}
{ oral  (ordre oral) ----------------------------------------------------------}
{ os    (origines statutaires) ------------------------------------------------}
{ pec   (personnels examens-concours) -----------------------------------------}
{ pec_n (personnels examens-concours) -----------------------------------------}
{ pic   (pré-inscriptions CONCOURS) -------------------------------------------}
{ pic_n (pré-inscriptions CONCOURS) -------------------------------------------}
{ pim   (pré-inscriptions MINITEL) --------------------------------------------}
{ pim_n (pré-inscriptions MINITEL) --------------------------------------------}
{ pj    (planning jury) -------------------------------------------------------}
{ pm    (pièces manquantes) ---------------------------------------------------}
{ prf   (professions OCEAN) ---------------------------------------------------}
{ qcm   (questionnaire à choix multiple : importation) ------------------------}
{ qjo   (questionnaire jury d'oral      : importation) ------------------------}
{ rc    (refus d'autorisation de concourir) -----------------------------------}
{ sa    (situations administratives -------------------------------------------}
{ sg    (services gestionnaires) ----------------------------------------------}
{ sh    (suivi historique) ----------------------------------------------------}
{ sh_n  (suivi historique) ----------------------------------------------------}
{ sp    (salles/places) -------------------------------------------------------}
{ spe   (spécialités) ---------------------------------------------------------}
{ sys_c (colonnes) ------------------------------------------------------------}
{ sys_t (tables) --------------------------------------------------------------}

{ sysmenus --------------------------------------------------------------------}
{ sysmenuitems ----------------------------------------------------------------}

{ t_cm  (typologie communes) --------------------------------------------------}
{ tec   (typologie examens-concours) ------------------------------------------}
{ tj    (travaux jury) --------------------------------------------------------}
{ tj_n  (travaux jury) --------------------------------------------------------}
{ tmp   (temporaire) ----------------------------------------------------------}
{ tmp_hf(temporaire hommes_femmes) --------------------------------------------}
{ tmp_nd(temporaire niveaux de diplôme) ---------------------------------------}
{ tmp_nh(temporaire niveaux hiérarchiques) ------------------------------------}
{ tmp_os(temporaire origines statutaires) -------------------------------------}
{ tmp_ta(temporaire tranches d'âge) -------------------------------------------}
{ uad   (unité administrative) ------------------------------------------------}
{ ut    (unités de traitement) ------------------------------------------------}

{------------------------------------------------------------------------------}

{ ac    (académies) -----------------------------------------------------------}

create table ac
(
c_ra            char(2),
c_ac            char(2)  not null,
l_ac            char(20) not null,
division        char(38),
c_et            char(8),
c_et_iufm       char(8),
ordre_paiement  char(1)
) ;

grant  all    on ac to public;

{ cea   (candidatures épreuves d'admission) -----------------------------------}

create table cea
(
n_cec           integer  not null,
n_pec           integer  not null,
n_pim           integer,
cts_geo         char(12) not null,
cts             char(9)  not null,
geo             char(3)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
groupe          char(1)  not null,
epreuve         char(1)  not null,
option          char(1)  not null,
partiel         char(1),
ordre_oral      smallint,
post_it         smallint,
n_pj            smallint,
c_et            char(8),
lieu            char(38),
hall            char(38),
salle           char(5),
jury            smallint,
passage         smallint,
d_epreuve       date,
h_appel         decimal(4,2),
hd_epreuve      decimal(4,2),
hf_epreuve      decimal(4,2),
num_lot         integer,
ord_can         smallint
) ;

grant all    on cea to public;

{ cea_n (candidatures épreuves d'admission) -----------------------------------}

create table cea_n
(
n_cec           integer  not null,
n_pec           integer  not null,
n_pim           integer,
cts_geo         char(12) not null,
cts             char(9)  not null,
geo             char(3)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
groupe          char(1)  not null,
epreuve         char(1)  not null,
option          char(1)  not null,
partiel         char(1),
ordre_oral      smallint,
post_it         smallint,
n_pj            smallint,
c_et            char(8),
lieu            char(38),
hall            char(38),
salle           char(5),
jury            smallint,
passage         smallint,
d_epreuve       date,
h_appel         decimal(4,2),
hd_epreuve      decimal(4,2),
hf_epreuve      decimal(4,2),
num_lot         integer,
ord_can         smallint
) ;

grant all    on cea_n to public;

{ cec   (candidatures examens-concours) ---------------------------------------}

create table cec
(

c_dp            char(2),
ordre_oral      smallint,
anonymat        smallint,
nom_cec         char(5)               not null,
n_cec           serial                not null,
n_pec           integer               not null,
n_pim           integer,
exercice        datetime year to year not null,
cts             char(9)               not null,
c_ec            char(5)               not null,
t_ec            char(2)               not null,
s_ec            char(2)               not null,
c_ec_pim        char(5),
t_ec_pim        char(2),
c_decision      char(1),
option_11       char(1),
option_12       char(1),
option_13       char(1),
option_14       char(1),
option_1A       char(1),
option_1B       char(1),
option_21       char(1),
option_22       char(1),
option_23       char(1),
option_24       char(1),
option_2A       char(1),
option_2B       char(1),
note_11         decimal(4,2),
note_11_1       decimal(4,2),
note_11_2       decimal(4,2),
note_11_3       decimal(4,2),
note_12         decimal(4,2),
note_12_1       decimal(4,2),
note_12_2       decimal(4,2),
note_12_3       decimal(4,2),
note_13         decimal(4,2),
note_13_1       decimal(4,2),
note_13_2       decimal(4,2),
note_13_3       decimal(4,2),
note_14         decimal(4,2),
note_14_1       decimal(4,2),
note_14_2       decimal(4,2),
note_14_3       decimal(4,2),
note_1A         decimal(4,2),
note_1B         decimal(4,2),
note_11c        decimal(5,2),
note_11c_1      decimal(5,2),
note_11c_2      decimal(5,2),
note_11c_3      decimal(5,2),
note_12c        decimal(5,2),
note_12c_1      decimal(5,2),
note_12c_2      decimal(5,2),
note_12c_3      decimal(5,2),
note_13c        decimal(5,2),
note_13c_1      decimal(5,2),
note_13c_2      decimal(5,2),
note_13c_3      decimal(5,2),
note_14c        decimal(5,2),
note_14c_1      decimal(5,2),
note_14c_2      decimal(5,2),
note_14c_3      decimal(5,2),
note_1Ac        decimal(4,2),
note_1Bc        decimal(4,2),
note_1          decimal(5,2),
note_21         decimal(4,2),
note_21_1       decimal(4,2),
note_21_2       decimal(4,2),
note_21_3       decimal(4,2),
note_22         decimal(4,2),
note_22_1       decimal(4,2),
note_22_2       decimal(4,2),
note_22_3       decimal(4,2),
note_23         decimal(4,2),
note_23_1       decimal(4,2),
note_23_2       decimal(4,2),
note_23_3       decimal(4,2),
note_24         decimal(4,2),
note_24_1       decimal(4,2),
note_24_2       decimal(4,2),
note_24_3       decimal(4,2),
note_2A         decimal(4,2),
note_2B         decimal(4,2),
note_21c        decimal(5,2),
note_21c_1      decimal(5,2),
note_21c_2      decimal(5,2),
note_21c_3      decimal(5,2),
note_22c        decimal(5,2),
note_22c_1      decimal(5,2),
note_22c_2      decimal(5,2),
note_22c_3      decimal(5,2),
note_23c        decimal(5,2),
note_23c_1      decimal(5,2),
note_23c_2      decimal(5,2),
note_23c_3      decimal(5,2),
note_24c        decimal(5,2),
note_24c_1      decimal(5,2),
note_24c_2      decimal(5,2),
note_24c_3      decimal(5,2),
note_2Ac        decimal(4,2),
note_2Bc        decimal(4,2),
note_2          decimal(5,2),
note_total      decimal(5,2),
absent_11       char(1),
absent_11_1     char(1),
absent_11_2     char(1),
absent_11_3     char(1),
absent_12       char(1),
absent_12_1     char(1),
absent_12_2     char(1),
absent_12_3     char(1),
absent_13       char(1),
absent_13_1     char(1),
absent_13_2     char(1),
absent_13_3     char(1),
absent_14       char(1),
absent_14_1     char(1),
absent_14_2     char(1),
absent_14_3     char(1),
absent_1a       char(1),
absent_1b       char(1),
absent_21       char(1),
absent_21_1     char(1),
absent_21_2     char(1),
absent_21_3     char(1),
absent_22       char(1),
absent_22_1     char(1),
absent_22_2     char(1),
absent_22_3     char(1),
absent_23       char(1),
absent_23_1     char(1),
absent_23_2     char(1),
absent_23_3     char(1),
absent_24       char(1),
absent_24_1     char(1),
absent_24_2     char(1),
absent_24_3     char(1),
absent_2a       char(1),
absent_2b       char(1),
jury_11_1       smallint,
jury_11_2       smallint,
jury_12_1       smallint,
jury_12_2       smallint,
jury_13_1       smallint,
jury_13_2       smallint,
jury_14_1       smallint,
jury_14_2       smallint,
admis_1         char(1),
admis_2         char(1),
admis           char(1),
rang            smallint,
exaequo         char(1),
liste           char(1),
d_saisie        date,
d_demande       date,
d_relance       date,
c_pm_1          char(2),
c_pm_2          char(2),
c_pm_3          char(2),
c_pm_4          char(2),
c_pm_5          char(2),
divers_1        char(78),
divers_2        char(78),
d_refus         date,
c_rc_1          char(2),
c_rc_2          char(2),
c_rc_3          char(2),
c_rc_4          char(2),
c_rc_5          char(2),
refus_1         char(78),
refus_2         char(78),
c_et            char(8),
salle           char(5),
place           smallint,
lettre_cle      char(1),
post_it         smallint,
d_load          date
) ;

grant all    on cec to public;

{ cec_n (candidatures examens-concours) ---------------------------------------}

create table cec_n
(
c_dp            char(2),
ordre_oral      smallint,
anonymat        smallint,
nom_cec         char(5)               not null,
n_cec           integer               not null,
n_pec           integer               not null,
n_pim           integer,
exercice        datetime year to year not null,
cts             char(9)               not null,
c_ec            char(5)               not null,
t_ec            char(2)               not null,
s_ec            char(2)               not null,
c_ec_pim        char(5),
t_ec_pim        char(2),
c_decision      char(1),
option_11       char(1),
option_12       char(1),
option_13       char(1),
option_14       char(1),
option_1A       char(1),
option_1B       char(1),
option_21       char(1),
option_22       char(1),
option_23       char(1),
option_24       char(1),
option_2A       char(1),
option_2B       char(1),
note_11         decimal(4,2),
note_11_1       decimal(4,2),
note_11_2       decimal(4,2),
note_11_3       decimal(4,2),
note_12         decimal(4,2),
note_12_1       decimal(4,2),
note_12_2       decimal(4,2),
note_12_3       decimal(4,2),
note_13         decimal(4,2),
note_13_1       decimal(4,2),
note_13_2       decimal(4,2),
note_13_3       decimal(4,2),
note_14         decimal(4,2),
note_14_1       decimal(4,2),
note_14_2       decimal(4,2),
note_14_3       decimal(4,2),
note_1A         decimal(4,2),
note_1B         decimal(4,2),
note_11c        decimal(5,2),
note_11c_1      decimal(5,2),
note_11c_2      decimal(5,2),
note_11c_3      decimal(5,2),
note_12c        decimal(5,2),
note_12c_1      decimal(5,2),
note_12c_2      decimal(5,2),
note_12c_3      decimal(5,2),
note_13c        decimal(5,2),
note_13c_1      decimal(5,2),
note_13c_2      decimal(5,2),
note_13c_3      decimal(5,2),
note_14c        decimal(5,2),
note_14c_1      decimal(5,2),
note_14c_2      decimal(5,2),
note_14c_3      decimal(5,2),
note_1Ac        decimal(4,2),
note_1Bc        decimal(4,2),
note_1          decimal(5,2),
note_21         decimal(4,2),
note_21_1       decimal(4,2),
note_21_2       decimal(4,2),
note_21_3       decimal(4,2),
note_22         decimal(4,2),
note_22_1       decimal(4,2),
note_22_2       decimal(4,2),
note_22_3       decimal(4,2),
note_23         decimal(4,2),
note_23_1       decimal(4,2),
note_23_2       decimal(4,2),
note_23_3       decimal(4,2),
note_24         decimal(4,2),
note_24_1       decimal(4,2),
note_24_2       decimal(4,2),
note_24_3       decimal(4,2),
note_2A         decimal(4,2),
note_2B         decimal(4,2),
note_21c        decimal(5,2),
note_21c_1      decimal(5,2),
note_21c_2      decimal(5,2),
note_21c_3      decimal(5,2),
note_22c        decimal(5,2),
note_22c_1      decimal(5,2),
note_22c_2      decimal(5,2),
note_22c_3      decimal(5,2),
note_23c        decimal(5,2),
note_23c_1      decimal(5,2),
note_23c_2      decimal(5,2),
note_23c_3      decimal(5,2),
note_24c        decimal(5,2),
note_24c_1      decimal(5,2),
note_24c_2      decimal(5,2),
note_24c_3      decimal(5,2),
note_2Ac        decimal(4,2),
note_2Bc        decimal(4,2),
note_2          decimal(5,2),
note_total      decimal(5,2),
absent_11       char(1),
absent_11_1     char(1),
absent_11_2     char(1),
absent_11_3     char(1),
absent_12       char(1),
absent_12_1     char(1),
absent_12_2     char(1),
absent_12_3     char(1),
absent_13       char(1),
absent_13_1     char(1),
absent_13_2     char(1),
absent_13_3     char(1),
absent_14       char(1),
absent_14_1     char(1),
absent_14_2     char(1),
absent_14_3     char(1),
absent_1a       char(1),
absent_1b       char(1),
absent_21       char(1),
absent_21_1     char(1),
absent_21_2     char(1),
absent_21_3     char(1),
absent_22       char(1),
absent_22_1     char(1),
absent_22_2     char(1),
absent_22_3     char(1),
absent_23       char(1),
absent_23_1     char(1),
absent_23_2     char(1),
absent_23_3     char(1),
absent_24       char(1),
absent_24_1     char(1),
absent_24_2     char(1),
absent_24_3     char(1),
absent_2a       char(1),
absent_2b       char(1),
jury_11_1       smallint,
jury_11_2       smallint,
jury_12_1       smallint,
jury_12_2       smallint,
jury_13_1       smallint,
jury_13_2       smallint,
jury_14_1       smallint,
jury_14_2       smallint,
admis_1         char(1),
admis_2         char(1),
admis           char(1),
rang            smallint,
exaequo         char(1),
liste           char(1),
d_saisie        date,
d_demande       date,
d_relance       date,
c_pm_1          char(2),
c_pm_2          char(2),
c_pm_3          char(2),
c_pm_4          char(2),
c_pm_5          char(2),
divers_1        char(78),
divers_2        char(78),
d_refus         date,
c_rc_1          char(2),
c_rc_2          char(2),
c_rc_3          char(2),
c_rc_4          char(2),
c_rc_5          char(2),
refus_1         char(78),
refus_2         char(78),
c_et            char(8),
salle           char(5),
place           smallint,
lettre_cle      char(1),
post_it         smallint,
d_load          date
) ;

grant all    on cec_n to public;

{ cm    (communes) ------------------------------------------------------------}

create table cm
(
c_dp            char(2)  not null,
c_am            char(5),
c_dg            char(2),
c_cm            char(5)  not null,
l_cm            char(38) not null,
t_cm            char(5),
t_cm_ff         char(1)
) ;

grant  all   on cm to public;

{ cnd   (candidatures OCEAN ---------------------------------------------------}

create table cnd
(
n_pec           integer,
cts             char(9),
c_ec            char(5),
t_ec            char(2),
s_ec            char(2),
geo             char(3),
groupe          char(1),
epreuve         char(1),
option          char(1),
cod_exa         char(3),
cod_spe         char(5),
num_can         char(10),
num_mtr         char(10),
num_men         char(13),
uad_ges         char(3),
eta_can         char(1),
cod_tit         char(4),
nmn_can         char(25),
nom_can         char(25),
pre_can         char(25),
dat_nai         date,
cmn_nai         char(30),
adr_can         char(32),
ad2_can         char(32),
ldi_can         char(24),
cpo_can         char(5),
cmn_can         char(26),
cod_eta         char(8),
tel_can         char(13),
tel_pro         char(13),
nbr_enf         smallint,
cod_nat         char(3),
cod_fam         char(1),
cod_prf         char(4),
cod_sml         char(1),
cod_sag         char(1),
cod_mag         char(1),
cod_han         char(2),
cod_eaq         char(3),
num_ano         char(10),
dci_sai         char(1),
flag            char(1)
) ;

grant all    on cnd to public;

{ cp    (codes postaux) -------------------------------------------------------}

create table cp
(
c_cp            char(5)  not null,
c_cm            char(5),
l_ld            char(30) not null
) ;

grant all    on cp to public;

{ dg    (district géographique) -----------------------------------------------}

create table dg
(
c_dp            char(2)  not null,
c_dg            char(2)  not null,
l_dg            char(20) not null
) ;

grant all    on dg to public;

{ dec   (direction des examens-concours : Ministère) --------------------------}

create table dec
(
numen           char(13),          { NUMEN    : NUMEN                  }
num_can         char(10),          { NUM_CAN  : NUMERO DU CANDIDAT     }
cod_exa         char(3),           { COD_EXA  : EXAMEN                 }
cod_spe         char(5),           { COD_SPE  : SPECIALITE/SERIE       }
dat_nai         date,              { DAT_NAI  : DATE DE NAISSANCE      }
cpo_can         char(5),           { CPO_CAN  : CODE POSTAL CANDIDAT   }
uad_ori         char(3),           { UAD_ORI  : UAD D'ORIGINE          }
cod_sex         char(1),           { COD_SEX  : SEXE                   }
cod_han         char(1),           { COD_HAN  : CODE HANDICAP          }
cod_nat         char(1),           { COD_NAT  : CODE NATIONALITE       }
cod_sml         char(1),           { COD_SML  : SITUATION MILITAIRE    }
cod_fam         char(1),           { COD_FAM  : SITUATION FAMILIALE    }
nbr_enf         char(3),           { NBR_ENF  : NOMBRE D'ENFANTS       }
cod_prf         char(4),           { COD_PRF  : PROFESSION DU CANDIDAT }
dip_pos         char(3),           { DIP_POS  : DIPLOME POSSEDE        }
cod_pst         char(2),           { COD_PST  : POSITION STATUTAIRE    }
cod_mag         char(1),           { COD_MAG  : MOTIF DE RECUL D'AGE   }
tot1            decimal(7,2),      { TOT1     : TOTAL POINTS GROUPE 1  }
dec1            char(1),           { DEC1     : DECISION ADMISSIBILITE }
cof1            decimal(5,2),      { COF1     : TOTAL COEFFICIENT  1   }
pos1            char(1),           { POS1     : POSITION DU GROUPE 1   }
tot2            decimal(7,2),      { TOT2     : TOTAL POINTS GROUPE 2  }
dec2            char(1),           { DEC2     : DECISION ADMISSION     }
cof2            decimal(5,2),      { COF2     : TOTAL COEFFICIENT  2   }
pos2            char(1),           { POS2     : POSITION DU GROUPE 2   }
cod_epr1        char(5),           { COD_EPR : CODE DE L'EPREUVE       }
sta_epr1        char(1),           { STA_EPR : STATUT DE L'EPREUVE     }
typ_epr1        char(1),           { TYP_EPR : TYPE D'EPREUVE          }
cod_mcl1        char(1),           { COD_MCL : MODE DE CALCUL          }
cod_not1        char(1),           { COD_NOT : TYPE DE NOTATION        }
cod_mat1        char(4),           { COD_MAT : MATIERE DE L'EPREUVE    }
cod_grd1        char(1),           { COD_GRD : GROUPE DE DECISION      }
cod_pos1        char(1),           { COD_POS : POSITION DE L'EPREUVE   }
cof_epr1        decimal(5,2),      { COF_EPR : COEFFICIENT EPREUVE     }
not_epr1        decimal(6,2),      { NOT_EPR : NOTE DE L'EPREUVE       }
vno_epr1        char(2),           { VNO_EPR : VALIDITE DE L'EPREUVE   }
cod_epr2        char(5),           { COD_EPR : CODE DE L'EPREUVE       }
sta_epr2        char(1),           { STA_EPR : STATUT DE L'EPREUVE     }
typ_epr2        char(1),           { TYP_EPR : TYPE D'EPREUVE          }
cod_mcl2        char(1),           { COD_MCL : MODE DE CALCUL          }
cod_not2        char(1),           { COD_NOT : TYPE DE NOTATION        }
cod_mat2        char(4),           { COD_MAT : MATIERE DE L'EPREUVE    }
cod_grd2        char(1),           { COD_GRD : GROUPE DE DECISION      }
cod_pos2        char(1),           { COD_POS : POSITION DE L'EPREUVE   }
cof_epr2        decimal(5,2),      { COF_EPR : COEFFICIENT EPREUVE     }
not_epr2        decimal(6,2),      { NOT_EPR : NOTE DE L'EPREUVE       }
vno_epr2        char(2),           { VNO_EPR : VALIDITE DE L'EPREUVE   }
cod_epr3        char(5),           { COD_EPR : CODE DE L'EPREUVE       }
sta_epr3        char(1),           { STA_EPR : STATUT DE L'EPREUVE     }
typ_epr3        char(1),           { TYP_EPR : TYPE D'EPREUVE          }
cod_mcl3        char(1),           { COD_MCL : MODE DE CALCUL          }
cod_not3        char(1),           { COD_NOT : TYPE DE NOTATION        }
cod_mat3        char(4),           { COD_MAT : MATIERE DE L'EPREUVE    }
cod_grd3        char(1),           { COD_GRD : GROUPE DE DECISION      }
cod_pos3        char(1),           { COD_POS : POSITION DE L'EPREUVE   }
cof_epr3        decimal(5,2),      { COF_EPR : COEFFICIENT EPREUVE     }
not_epr3        decimal(6,2),      { NOT_EPR : NOTE DE L'EPREUVE       }
vno_epr3        char(2),           { VNO_EPR : VALIDITE DE L'EPREUVE   }
cod_epr4        char(5),           { COD_EPR : CODE DE L'EPREUVE       }
sta_epr4        char(1),           { STA_EPR : STATUT DE L'EPREUVE     }
typ_epr4        char(1),           { TYP_EPR : TYPE D'EPREUVE          }
cod_mcl4        char(1),           { COD_MCL : MODE DE CALCUL          }
cod_not4        char(1),           { COD_NOT : TYPE DE NOTATION        }
cod_mat4        char(4),           { COD_MAT : MATIERE DE L'EPREUVE    }
cod_grd4        char(1),           { COD_GRD : GROUPE DE DECISION      }
cod_pos4        char(1),           { COD_POS : POSITION DE L'EPREUVE   }
cof_epr4        decimal(5,2),      { COF_EPR : COEFFICIENT EPREUVE     }
not_epr4        decimal(6,2),      { NOT_EPR : NOTE DE L'EPREUVE       }
vno_epr4        char(2),           { VNO_EPR : VALIDITE DE L'EPREUVE   }
cod_epr5        char(5),           { COD_EPR : CODE DE L'EPREUVE       }
sta_epr5        char(1),           { STA_EPR : STATUT DE L'EPREUVE     }
typ_epr5        char(1),           { TYP_EPR : TYPE D'EPREUVE          }
cod_mcl5        char(1),           { COD_MCL : MODE DE CALCUL          }
cod_not5        char(1),           { COD_NOT : TYPE DE NOTATION        }
cod_mat5        char(4),           { COD_MAT : MATIERE DE L'EPREUVE    }
cod_grd5        char(1),           { COD_GRD : GROUPE DE DECISION      }
cod_pos5        char(1),           { COD_POS : POSITION DE L'EPREUVE   }
cof_epr5        decimal(5,2),      { COF_EPR : COEFFICIENT EPREUVE     }
not_epr5        decimal(6,2),      { NOT_EPR : NOTE DE L'EPREUVE       }
vno_epr5        char(2),           { VNO_EPR : VALIDITE DE L'EPREUVE   }
cod_epr6        char(5),           { COD_EPR : CODE DE L'EPREUVE       }
sta_epr6        char(1),           { STA_EPR : STATUT DE L'EPREUVE     }
typ_epr6        char(1),           { TYP_EPR : TYPE D'EPREUVE          }
cod_mcl6        char(1),           { COD_MCL : MODE DE CALCUL          }
cod_not6        char(1),           { COD_NOT : TYPE DE NOTATION        }
cod_mat6        char(4),           { COD_MAT : MATIERE DE L'EPREUVE    }
cod_grd6        char(1),           { COD_GRD : GROUPE DE DECISION      }
cod_pos6        char(1),           { COD_POS : POSITION DE L'EPREUVE   }
cof_epr6        decimal(5,2),      { COF_EPR : COEFFICIENT EPREUVE     }
not_epr6        decimal(6,2),      { NOT_EPR : NOTE DE L'EPREUVE       }
vno_epr6        char(2)            { VNO_EPR : VALIDITE DE L'EPREUVE   }
) ;

grant all    on dec to public;

{ dip   (diplômes - voir table eaq) -------------------------------------------}

create table dip
(
c_dip           char(3)  not null,
l_dip           char(38) not null,
t_dip           char(1)
) ;

grant all    on dip to public;

{ doc   (documentation Ex&Co : views per, ace, shl, sql) ----------------------}

create table doc
(
processus       char(10),
c_ut            char(20),
suffixe         char(1),
cd              char(8),
ls              char(20),
wc              smallint,
flag            char(1)
) ;

grant all    on doc to concours;

{ dp    (départements) --------------------------------------------------------}

create table dp
(
c_dp            char(2)  not null,
c_dt            char(1)  not null,
l_dp            char(30) not null,
chef_lieu       char(20),
c_et            char(8),
c_ac            char(2),
c_academie      char(2)  not null,
km_fd           smallint
) ;

grant all    on dp to public;

{ ea    (épreuves d'admissibilité/admission) ----------------------------------}

create table ea
(
cts_geo         char(12) not null,
cts             char(9)  not null,
geo             char(3)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
groupe          char(1)  not null,
epreuve         char(1)  not null,
option          char(1)  not null,
partiel         char(1)  not null,
c_mat           char(4),
t_epreuve       char(1),
d_epreuve       date,
h_appel         decimal(4,2),
hd_epreuve      decimal(4,2),
hf_epreuve      decimal(4,2),
c_et            char(8)  not null,
lieu            char(38),
salle           char(5),
l_option        char(38),
duree_mini      decimal(4,2),
duree_maxi      decimal(4,2),
coefficient     smallfloat,
coefficient_1   smallfloat,
coefficient_2   smallfloat,
coefficient_3   smallfloat,
note_mini       decimal(4,2),
h_epreuve_2     char(26),
h_epreuve_21    char(26),
h_epreuve_22    char(26),
h_epreuve_23    char(26),
h_epreuve_4     char(38),
h_epreuve_5     char(38),
h_epreuve_6     char(38),
l_epreuve_1     char(38),
l_epreuve_2     char(38),
l_epreuve_3     char(38),
l_epreuve_4     char(38),
l_epreuve_5     char(38),
l_epreuve_6     char(38)
) ;

grant all    on ea to public;

{ ea_n  (épreuves d'admissibilité/admission) ----------------------------------}

create table ea_n
(
cts_geo         char(12) not null,
cts             char(9)  not null,
geo             char(3)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
groupe          char(1)  not null,
epreuve         char(1)  not null,
option          char(1)  not null,
partiel         char(1)  not null,
c_mat           char(4),
t_epreuve       char(1),
d_epreuve       date,
h_appel         decimal(4,2),
hd_epreuve      decimal(4,2),
hf_epreuve      decimal(4,2),
c_et            char(8)  not null,
lieu            char(38),
salle           char(5),
l_option        char(38),
duree_mini      decimal(4,2),
duree_maxi      decimal(4,2),
coefficient     smallfloat,
coefficient_1   smallfloat,
coefficient_2   smallfloat,
coefficient_3   smallfloat,
note_mini       decimal(4,2),
h_epreuve_2     char(26),
h_epreuve_21    char(26),
h_epreuve_22    char(26),
h_epreuve_23    char(26),
h_epreuve_4     char(38),
h_epreuve_5     char(38),
h_epreuve_6     char(38),
l_epreuve_1     char(38),
l_epreuve_2     char(38),
l_epreuve_3     char(38),
l_epreuve_4     char(38),
l_epreuve_5     char(38),
l_epreuve_6     char(38)
) ;

grant all    on ea_n to public;

{ eaq   (examen pour acquis OCEAN = diplômes) ---------------------------------}

create table eaq
(
cod_eaq         char(3)               not null,
lbl_eaq         char(35)              not null,
lbc_eaq         char(15)              not null,
t_diplome       char(1)
) ;

grant all    on eaq to public;

{ ec    (examens-concours) ----------------------------------------------------}

create table ec
(
cts             char(9)               not null,
c_ec            char(5)               not null,
t_ec            char(2)               not null,
s_ec            char(2)               not null,
n_session       char(1),
l_session       datetime year to year not null,
exercice        datetime year to year not null,
c_ec_kheops     char(8),
c_ec_minitel    char(7)               not null,
c_ocean         char(8),
l_ec            char(100)             not null,
l_ec_1          char(50)              not null,
l_ec_2          char(50),
logname         char(8),
service         char(8),
suivi_nom       char(32),
suivi_tel       char(32),
n_mj            integer,
d_ouverture     date,
d_cloture       date,
d_dossiers      date,
d_convoc_1      date,
d_groupe_1      date,
d_admis_1       date,
d_convoc_2      date,
d_groupe_2      date,
d_admis_2       date,
option_11       char(1),
option_12       char(1),
option_13       char(1),
option_14       char(1),
option_15       char(1),
option_16       char(1),
option_1a       char(1),
option_1b       char(1),
option_21       char(1),
option_22       char(1),
option_23       char(1),
option_24       char(1),
option_25       char(1),
option_26       char(1),
option_2a       char(1),
option_2b       char(1),
coef_11         decimal(2,1),
coef_11_1       decimal(2,1),
coef_11_2       decimal(2,1),
coef_11_3       decimal(2,1),
coef_12         decimal(2,1),
coef_12_1       decimal(2,1),
coef_12_2       decimal(2,1),
coef_12_3       decimal(2,1),
coef_13         decimal(2,1),
coef_13_1       decimal(2,1),
coef_13_2       decimal(2,1),
coef_13_3       decimal(2,1),
coef_14         decimal(2,1),
coef_14_1       decimal(2,1),
coef_14_2       decimal(2,1),
coef_14_3       decimal(2,1),
coef_15         decimal(2,1),
coef_15_1       decimal(2,1),
coef_15_2       decimal(2,1),
coef_15_3       decimal(2,1),
coef_16         decimal(2,1),
coef_16_1       decimal(2,1),
coef_16_2       decimal(2,1),
coef_16_3       decimal(2,1),
coef_1a         decimal(2,1),
coef_1b         decimal(2,1),
coef_21         decimal(2,1),
coef_21_1       decimal(2,1),
coef_21_2       decimal(2,1),
coef_21_3       decimal(2,1),
coef_22         decimal(2,1),
coef_22_1       decimal(2,1),
coef_22_2       decimal(2,1),
coef_22_3       decimal(2,1),
coef_23         decimal(2,1),
coef_23_1       decimal(2,1),
coef_23_2       decimal(2,1),
coef_23_3       decimal(2,1),
coef_24         decimal(2,1),
coef_24_1       decimal(2,1),
coef_24_2       decimal(2,1),
coef_24_3       decimal(2,1),
coef_25         decimal(2,1),
coef_25_1       decimal(2,1),
coef_25_2       decimal(2,1),
coef_25_3       decimal(2,1),
coef_26         decimal(2,1),
coef_26_1       decimal(2,1),
coef_26_2       decimal(2,1),
coef_26_3       decimal(2,1),
coef_2a         decimal(2,1),
coef_2b         decimal(2,1),
mini_11         decimal(4,2),
mini_12         decimal(4,2),
mini_13         decimal(4,2),
mini_14         decimal(4,2),
mini_15         decimal(4,2),
mini_16         decimal(4,2),
mini_21         decimal(4,2),
mini_22         decimal(4,2),
mini_23         decimal(4,2),
mini_24         decimal(4,2),
mini_25         decimal(4,2),
mini_26         decimal(4,2),
mini_1          decimal(5,2),
mini_2          decimal(5,2),
mini_total      decimal(5,2),
mini_lp         decimal(5,2),
mini_lc         decimal(5,2),
l_rc_10         char(34),
l_rc_11         char(78),
l_rc_12         char(78),
l_rc_20         char(34),
l_rc_21         char(78),
l_rc_22         char(78),
l_rc_30         char(34),
l_rc_31         char(78),
l_rc_32         char(78),
l_rc_40         char(34),
l_rc_41         char(78),
l_rc_42         char(78),
l_rc_50         char(34),
l_rc_51         char(78),
l_rc_52         char(78),
nbtj_1          char(77),
nbtj_2          char(77),
nbtj_3          char(77),
nbtj_4          char(77),
nbtj_5          char(77),
nbconvoc_10     char(77),
nbconvoc_11     char(77),
nbconvoc_12     char(77),
nbconvoc_13     char(77),
nbconvoc_14     char(77),
nbconvoc_15     char(77),
nbconvoc_16     char(77),
nbconvoc_17     char(77),
nbconvoc_18     char(77),
nbconvoc_19     char(77),
nbconvoc_20     char(77),
nbconvoc_21     char(77),
nbconvoc_22     char(77),
nbconvoc_23     char(77),
nbconvoc_24     char(77),
nbconvoc_25     char(77),
nbconvoc_26     char(77),
nbconvoc_27     char(77),
nbconvoc_28     char(77),
nbconvoc_29     char(77),
nbliste_1       char(77),
nbnotif_11      char(77),
nbnotif_12      char(77),
nbnotif_13      char(77),
nbnotif_21      char(77),
nbnotif_22      char(77),
nbnotif_23      char(77),
nbnotif_21p     char(77),
nbnotif_22p     char(77),
nbnotif_23p     char(77),
nbnotif_21c     char(77),
nbnotif_22c     char(77),
nbnotif_23c     char(77),
pre_inscrits    smallint,
pre_inscrits_h  smallint,
pre_inscrits_f  smallint,
inscrits        smallint,
inscrits_h      smallint,
inscrits_f      smallint,
presents        smallint,
presents_h      smallint,
presents_f      smallint,
admissibles     smallint,
admissibles_h   smallint,
admissibles_f   smallint,
liste_p         smallint,
liste_p_h       smallint,
liste_p_f       smallint,
liste_c         smallint,
liste_c_h       smallint,
liste_c_f       smallint,
os_l1_h_a       smallint,
os_l1_f_a       smallint,
os_l1_h_b       smallint,
os_l1_f_b       smallint,
os_l1_h_c       smallint,
os_l1_f_c       smallint,
os_l1_h_d       smallint,
os_l1_f_d       smallint,
os_l1_h_e       smallint,
os_l1_f_e       smallint,
os_l1_h_f       smallint,
os_l1_f_f       smallint,
os_l1_h_g       smallint,
os_l1_f_g       smallint,
os_l1_h_h       smallint,
os_l1_f_h       smallint,
os_l1_h_i       smallint,
os_l1_f_i       smallint,
os_l1_h_j       smallint,
os_l1_f_j       smallint,
os_l1_h_k       smallint,
os_l1_f_k       smallint,
os_l1_h_l       smallint,
os_l1_f_l       smallint,
os_l1_h_m       smallint,
os_l1_f_m       smallint,
os_l1_h_n       smallint,
os_l1_f_n       smallint,
os_l1_h_o       smallint,
os_l1_f_o       smallint,
os_lp_h_a       smallint,
os_lc_h_a       smallint,
os_lp_f_a       smallint,
os_lc_f_a       smallint,
os_lp_h_b       smallint,
os_lc_h_b       smallint,
os_lp_f_b       smallint,
os_lc_f_b       smallint,
os_lp_h_c       smallint,
os_lc_h_c       smallint,
os_lp_f_c       smallint,
os_lc_f_c       smallint,
os_lp_h_d       smallint,
os_lc_h_d       smallint,
os_lp_f_d       smallint,
os_lc_f_d       smallint,
os_lp_h_e       smallint,
os_lc_h_e       smallint,
os_lp_f_e       smallint,
os_lc_f_e       smallint,
os_lp_h_f       smallint,
os_lc_h_f       smallint,
os_lp_f_f       smallint,
os_lc_f_f       smallint,
os_lp_h_g       smallint,
os_lc_h_g       smallint,
os_lp_f_g       smallint,
os_lc_f_g       smallint,
os_lp_h_h       smallint,
os_lc_h_h       smallint,
os_lp_f_h       smallint,
os_lc_f_h       smallint,
os_lp_h_i       smallint,
os_lc_h_i       smallint,
os_lp_f_i       smallint,
os_lc_f_i       smallint,
os_lp_h_j       smallint,
os_lc_h_j       smallint,
os_lp_f_j       smallint,
os_lc_f_j       smallint,
os_lp_h_k       smallint,
os_lc_h_k       smallint,
os_lp_f_k       smallint,
os_lc_f_k       smallint,
os_lp_h_l       smallint,
os_lc_h_l       smallint,
os_lp_f_l       smallint,
os_lc_f_l       smallint,
os_lp_h_m       smallint,
os_lc_h_m       smallint,
os_lp_f_m       smallint,
os_lc_f_m       smallint,
os_lp_h_n       smallint,
os_lc_h_n       smallint,
os_lp_f_n       smallint,
os_lc_f_n       smallint,
os_lp_h_o       smallint,
os_lc_h_o       smallint,
os_lp_f_o       smallint,
os_lc_f_o       smallint,
nd_l1_h_0       smallint,
nd_l1_f_0       smallint,
nd_l1_h_1       smallint,
nd_l1_f_1       smallint,
nd_l1_h_2       smallint,
nd_l1_f_2       smallint,
nd_l1_h_3       smallint,
nd_l1_f_3       smallint,
nd_l1_h_4       smallint,
nd_l1_f_4       smallint,
nd_l1_h_5       smallint,
nd_l1_f_5       smallint,
nd_l1_h_6       smallint,
nd_l1_f_6       smallint,
nd_l1_h_7       smallint,
nd_l1_f_7       smallint,
nd_lp_h_0       smallint,
nd_lc_h_0       smallint,
nd_lp_f_0       smallint,
nd_lc_f_0       smallint,
nd_lp_h_1       smallint,
nd_lc_h_1       smallint,
nd_lp_f_1       smallint,
nd_lc_f_1       smallint,
nd_lp_h_2       smallint,
nd_lc_h_2       smallint,
nd_lp_f_2       smallint,
nd_lc_f_2       smallint,
nd_lp_h_3       smallint,
nd_lc_h_3       smallint,
nd_lp_f_3       smallint,
nd_lc_f_3       smallint,
nd_lp_h_4       smallint,
nd_lc_h_4       smallint,
nd_lp_f_4       smallint,
nd_lc_f_4       smallint,
nd_lp_h_5       smallint,
nd_lc_h_5       smallint,
nd_lp_f_5       smallint,
nd_lc_f_5       smallint,
nd_lp_h_6       smallint,
nd_lc_h_6       smallint,
nd_lp_f_6       smallint,
nd_lc_f_6       smallint,
nd_lp_h_7       smallint,
nd_lc_h_7       smallint,
nd_lp_f_7       smallint,
nd_lc_f_7       smallint,
ta_l1_h_1       smallint,
ta_l1_f_1       smallint,
ta_l1_h_2       smallint,
ta_l1_f_2       smallint,
ta_l1_h_3       smallint,
ta_l1_f_3       smallint,
ta_l1_h_4       smallint,
ta_l1_f_4       smallint,
ta_l1_h_5       smallint,
ta_l1_f_5       smallint,
ta_l1_h_6       smallint,
ta_l1_f_6       smallint,
ta_l1_h_7       smallint,
ta_l1_f_7       smallint,
ta_lp_h_1       smallint,
ta_lc_h_1       smallint,
ta_lp_f_1       smallint,
ta_lc_f_1       smallint,
ta_lp_h_2       smallint,
ta_lc_h_2       smallint,
ta_lp_f_2       smallint,
ta_lc_f_2       smallint,
ta_lp_h_3       smallint,
ta_lc_h_3       smallint,
ta_lp_f_3       smallint,
ta_lc_f_3       smallint,
ta_lp_h_4       smallint,
ta_lc_h_4       smallint,
ta_lp_f_4       smallint,
ta_lc_f_4       smallint,
ta_lp_h_5       smallint,
ta_lc_h_5       smallint,
ta_lp_f_5       smallint,
ta_lc_f_5       smallint,
ta_lp_h_6       smallint,
ta_lc_h_6       smallint,
ta_lp_f_6       smallint,
ta_lc_f_6       smallint,
ta_lp_h_7       smallint,
ta_lc_h_7       smallint,
ta_lp_f_7       smallint,
ta_lc_f_7       smallint,
nh_ma_h_1       smallint,
nh_ma_f_1       smallint,
nh_pa_h_1       smallint,
nh_pa_f_1       smallint,
nh_ma_h_2       smallint,
nh_ma_f_2       smallint,
nh_pa_h_2       smallint,
nh_pa_f_2       smallint,
nh_ma_h_3       smallint,
nh_ma_f_3       smallint,
nh_pa_h_3       smallint,
nh_pa_f_3       smallint,
nh_mb_h_4       smallint,
nh_mb_f_4       smallint,
nh_pb_h_4       smallint,
nh_pb_f_4       smallint,
nh_mc_h_5       smallint,
nh_mc_f_5       smallint,
nh_pc_h_5       smallint,
nh_pc_f_5       smallint,
nh_md_h_6       smallint,
nh_md_f_6       smallint,
nh_pd_h_6       smallint,
nh_pd_f_6       smallint,
admis_1         smallint,
admis_2         smallint,
admis_p         smallint,
admis_c         smallint,
place           smallint,
postes          smallint,
reserves_acvg   smallint,
reserves_th     smallint,
flag            char(1)
) ;

grant all    on ec to public;

{ ec_n  (examens-concours) ----------------------------------------------------}

create table ec_n
(
cts             char(9)               not null,
c_ec            char(5)               not null,
t_ec            char(2)               not null,
s_ec            char(2)               not null,
n_session       char(1),
l_session       datetime year to year not null,
exercice        datetime year to year not null,
c_ec_kheops     char(8),
c_ec_minitel    char(7)               not null,
c_ocean         char(8),
l_ec            char(100)             not null,
l_ec_1          char(50)              not null,
l_ec_2          char(50),
logname         char(8),
service         char(8),
suivi_nom       char(32),
suivi_tel       char(32),
n_mj            integer,
d_ouverture     date,
d_cloture       date,
d_dossiers      date,
d_convoc_1      date,
d_groupe_1      date,
d_admis_1       date,
d_convoc_2      date,
d_groupe_2      date,
d_admis_2       date,
option_11       char(1),
option_12       char(1),
option_13       char(1),
option_14       char(1),
option_15       char(1),
option_16       char(1),
option_1a       char(1),
option_1b       char(1),
option_21       char(1),
option_22       char(1),
option_23       char(1),
option_24       char(1),
option_25       char(1),
option_26       char(1),
option_2a       char(1),
option_2b       char(1),
coef_11         decimal(2,1),
coef_11_1       decimal(2,1),
coef_11_2       decimal(2,1),
coef_11_3       decimal(2,1),
coef_12         decimal(2,1),
coef_12_1       decimal(2,1),
coef_12_2       decimal(2,1),
coef_12_3       decimal(2,1),
coef_13         decimal(2,1),
coef_13_1       decimal(2,1),
coef_13_2       decimal(2,1),
coef_13_3       decimal(2,1),
coef_14         decimal(2,1),
coef_14_1       decimal(2,1),
coef_14_2       decimal(2,1),
coef_14_3       decimal(2,1),
coef_15         decimal(2,1),
coef_15_1       decimal(2,1),
coef_15_2       decimal(2,1),
coef_15_3       decimal(2,1),
coef_16         decimal(2,1),
coef_16_1       decimal(2,1),
coef_16_2       decimal(2,1),
coef_16_3       decimal(2,1),
coef_1a         decimal(2,1),
coef_1b         decimal(2,1),
coef_21         decimal(2,1),
coef_21_1       decimal(2,1),
coef_21_2       decimal(2,1),
coef_21_3       decimal(2,1),
coef_22         decimal(2,1),
coef_22_1       decimal(2,1),
coef_22_2       decimal(2,1),
coef_22_3       decimal(2,1),
coef_23         decimal(2,1),
coef_23_1       decimal(2,1),
coef_23_2       decimal(2,1),
coef_23_3       decimal(2,1),
coef_24         decimal(2,1),
coef_24_1       decimal(2,1),
coef_24_2       decimal(2,1),
coef_24_3       decimal(2,1),
coef_25         decimal(2,1),
coef_25_1       decimal(2,1),
coef_25_2       decimal(2,1),
coef_25_3       decimal(2,1),
coef_26         decimal(2,1),
coef_26_1       decimal(2,1),
coef_26_2       decimal(2,1),
coef_26_3       decimal(2,1),
coef_2a         decimal(2,1),
coef_2b         decimal(2,1),
mini_11         decimal(4,2),
mini_12         decimal(4,2),
mini_13         decimal(4,2),
mini_14         decimal(4,2),
mini_15         decimal(4,2),
mini_16         decimal(4,2),
mini_21         decimal(4,2),
mini_22         decimal(4,2),
mini_23         decimal(4,2),
mini_24         decimal(4,2),
mini_25         decimal(4,2),
mini_26         decimal(4,2),
mini_1          decimal(5,2),
mini_2          decimal(5,2),
mini_total      decimal(5,2),
mini_lp         decimal(5,2),
mini_lc         decimal(5,2),
l_rc_10         char(34),
l_rc_11         char(78),
l_rc_12         char(78),
l_rc_20         char(34),
l_rc_21         char(78),
l_rc_22         char(78),
l_rc_30         char(34),
l_rc_31         char(78),
l_rc_32         char(78),
l_rc_40         char(34),
l_rc_41         char(78),
l_rc_42         char(78),
l_rc_50         char(34),
l_rc_51         char(78),
l_rc_52         char(78),
nbtj_1          char(77),
nbtj_2          char(77),
nbtj_3          char(77),
nbtj_4          char(77),
nbtj_5          char(77),
nbconvoc_10     char(77),
nbconvoc_11     char(77),
nbconvoc_12     char(77),
nbconvoc_13     char(77),
nbconvoc_14     char(77),
nbconvoc_15     char(77),
nbconvoc_16     char(77),
nbconvoc_17     char(77),
nbconvoc_18     char(77),
nbconvoc_19     char(77),
nbconvoc_20     char(77),
nbconvoc_21     char(77),
nbconvoc_22     char(77),
nbconvoc_23     char(77),
nbconvoc_24     char(77),
nbconvoc_25     char(77),
nbconvoc_26     char(77),
nbconvoc_27     char(77),
nbconvoc_28     char(77),
nbconvoc_29     char(77),
nbliste_1       char(77),
nbnotif_11      char(77),
nbnotif_12      char(77),
nbnotif_13      char(77),
nbnotif_21      char(77),
nbnotif_22      char(77),
nbnotif_23      char(77),
nbnotif_21p     char(77),
nbnotif_22p     char(77),
nbnotif_23p     char(77),
nbnotif_21c     char(77),
nbnotif_22c     char(77),
nbnotif_23c     char(77),
pre_inscrits    smallint,
pre_inscrits_h  smallint,
pre_inscrits_f  smallint,
inscrits        smallint,
inscrits_h      smallint,
inscrits_f      smallint,
presents        smallint,
presents_h      smallint,
presents_f      smallint,
admissibles     smallint,
admissibles_h   smallint,
admissibles_f   smallint,
liste_p         smallint,
liste_p_h       smallint,
liste_p_f       smallint,
liste_c         smallint,
liste_c_h       smallint,
liste_c_f       smallint,
os_l1_h_a       smallint,
os_l1_f_a       smallint,
os_l1_h_b       smallint,
os_l1_f_b       smallint,
os_l1_h_c       smallint,
os_l1_f_c       smallint,
os_l1_h_d       smallint,
os_l1_f_d       smallint,
os_l1_h_e       smallint,
os_l1_f_e       smallint,
os_l1_h_f       smallint,
os_l1_f_f       smallint,
os_l1_h_g       smallint,
os_l1_f_g       smallint,
os_l1_h_h       smallint,
os_l1_f_h       smallint,
os_l1_h_i       smallint,
os_l1_f_i       smallint,
os_l1_h_j       smallint,
os_l1_f_j       smallint,
os_l1_h_k       smallint,
os_l1_f_k       smallint,
os_l1_h_l       smallint,
os_l1_f_l       smallint,
os_l1_h_m       smallint,
os_l1_f_m       smallint,
os_l1_h_n       smallint,
os_l1_f_n       smallint,
os_l1_h_o       smallint,
os_l1_f_o       smallint,
os_lp_h_a       smallint,
os_lc_h_a       smallint,
os_lp_f_a       smallint,
os_lc_f_a       smallint,
os_lp_h_b       smallint,
os_lc_h_b       smallint,
os_lp_f_b       smallint,
os_lc_f_b       smallint,
os_lp_h_c       smallint,
os_lc_h_c       smallint,
os_lp_f_c       smallint,
os_lc_f_c       smallint,
os_lp_h_d       smallint,
os_lc_h_d       smallint,
os_lp_f_d       smallint,
os_lc_f_d       smallint,
os_lp_h_e       smallint,
os_lc_h_e       smallint,
os_lp_f_e       smallint,
os_lc_f_e       smallint,
os_lp_h_f       smallint,
os_lc_h_f       smallint,
os_lp_f_f       smallint,
os_lc_f_f       smallint,
os_lp_h_g       smallint,
os_lc_h_g       smallint,
os_lp_f_g       smallint,
os_lc_f_g       smallint,
os_lp_h_h       smallint,
os_lc_h_h       smallint,
os_lp_f_h       smallint,
os_lc_f_h       smallint,
os_lp_h_i       smallint,
os_lc_h_i       smallint,
os_lp_f_i       smallint,
os_lc_f_i       smallint,
os_lp_h_j       smallint,
os_lc_h_j       smallint,
os_lp_f_j       smallint,
os_lc_f_j       smallint,
os_lp_h_k       smallint,
os_lc_h_k       smallint,
os_lp_f_k       smallint,
os_lc_f_k       smallint,
os_lp_h_l       smallint,
os_lc_h_l       smallint,
os_lp_f_l       smallint,
os_lc_f_l       smallint,
os_lp_h_m       smallint,
os_lc_h_m       smallint,
os_lp_f_m       smallint,
os_lc_f_m       smallint,
os_lp_h_n       smallint,
os_lc_h_n       smallint,
os_lp_f_n       smallint,
os_lc_f_n       smallint,
os_lp_h_o       smallint,
os_lc_h_o       smallint,
os_lp_f_o       smallint,
os_lc_f_o       smallint,
nd_l1_h_0       smallint,
nd_l1_f_0       smallint,
nd_l1_h_1       smallint,
nd_l1_f_1       smallint,
nd_l1_h_2       smallint,
nd_l1_f_2       smallint,
nd_l1_h_3       smallint,
nd_l1_f_3       smallint,
nd_l1_h_4       smallint,
nd_l1_f_4       smallint,
nd_l1_h_5       smallint,
nd_l1_f_5       smallint,
nd_l1_h_6       smallint,
nd_l1_f_6       smallint,
nd_l1_h_7       smallint,
nd_l1_f_7       smallint,
nd_lp_h_0       smallint,
nd_lc_h_0       smallint,
nd_lp_f_0       smallint,
nd_lc_f_0       smallint,
nd_lp_h_1       smallint,
nd_lc_h_1       smallint,
nd_lp_f_1       smallint,
nd_lc_f_1       smallint,
nd_lp_h_2       smallint,
nd_lc_h_2       smallint,
nd_lp_f_2       smallint,
nd_lc_f_2       smallint,
nd_lp_h_3       smallint,
nd_lc_h_3       smallint,
nd_lp_f_3       smallint,
nd_lc_f_3       smallint,
nd_lp_h_4       smallint,
nd_lc_h_4       smallint,
nd_lp_f_4       smallint,
nd_lc_f_4       smallint,
nd_lp_h_5       smallint,
nd_lc_h_5       smallint,
nd_lp_f_5       smallint,
nd_lc_f_5       smallint,
nd_lp_h_6       smallint,
nd_lc_h_6       smallint,
nd_lp_f_6       smallint,
nd_lc_f_6       smallint,
nd_lp_h_7       smallint,
nd_lc_h_7       smallint,
nd_lp_f_7       smallint,
nd_lc_f_7       smallint,
ta_l1_h_1       smallint,
ta_l1_f_1       smallint,
ta_l1_h_2       smallint,
ta_l1_f_2       smallint,
ta_l1_h_3       smallint,
ta_l1_f_3       smallint,
ta_l1_h_4       smallint,
ta_l1_f_4       smallint,
ta_l1_h_5       smallint,
ta_l1_f_5       smallint,
ta_l1_h_6       smallint,
ta_l1_f_6       smallint,
ta_l1_h_7       smallint,
ta_l1_f_7       smallint,
ta_lp_h_1       smallint,
ta_lc_h_1       smallint,
ta_lp_f_1       smallint,
ta_lc_f_1       smallint,
ta_lp_h_2       smallint,
ta_lc_h_2       smallint,
ta_lp_f_2       smallint,
ta_lc_f_2       smallint,
ta_lp_h_3       smallint,
ta_lc_h_3       smallint,
ta_lp_f_3       smallint,
ta_lc_f_3       smallint,
ta_lp_h_4       smallint,
ta_lc_h_4       smallint,
ta_lp_f_4       smallint,
ta_lc_f_4       smallint,
ta_lp_h_5       smallint,
ta_lc_h_5       smallint,
ta_lp_f_5       smallint,
ta_lc_f_5       smallint,
ta_lp_h_6       smallint,
ta_lc_h_6       smallint,
ta_lp_f_6       smallint,
ta_lc_f_6       smallint,
ta_lp_h_7       smallint,
ta_lc_h_7       smallint,
ta_lp_f_7       smallint,
ta_lc_f_7       smallint,
nh_ma_h_1       smallint,
nh_ma_f_1       smallint,
nh_pa_h_1       smallint,
nh_pa_f_1       smallint,
nh_ma_h_2       smallint,
nh_ma_f_2       smallint,
nh_pa_h_2       smallint,
nh_pa_f_2       smallint,
nh_ma_h_3       smallint,
nh_ma_f_3       smallint,
nh_pa_h_3       smallint,
nh_pa_f_3       smallint,
nh_mb_h_4       smallint,
nh_mb_f_4       smallint,
nh_pb_h_4       smallint,
nh_pb_f_4       smallint,
nh_mc_h_5       smallint,
nh_mc_f_5       smallint,
nh_pc_h_5       smallint,
nh_pc_f_5       smallint,
nh_md_h_6       smallint,
nh_md_f_6       smallint,
nh_pd_h_6       smallint,
nh_pd_f_6       smallint,
admis_1         smallint,
admis_2         smallint,
admis_p         smallint,
admis_c         smallint,
place           smallint,
postes          smallint,
reserves_acvg   smallint,
reserves_th     smallint,
flag            char(1)
) ;

grant all    on ec_n to public;

{ epr   (épreuves OCEAN) ------------------------------------------------------}

create table epr
(
cts             char(9),
geo             char(3),
partiel         char(1),
n_pec           integer,
num_can         char(10),
cod_exa         char(3),
cod_spe         char(5),
cod_epr         char(4),
cod_mat         char(4),
not_epr         char(5),
eta_cde         char(8),
cod_sal         char(3),
dat_deb         char(10),
dat_app         datetime hour to minute,
dat_heu         datetime hour to minute,
dat_fin         datetime hour to minute,
h_appel         decimal(4,2),
hd_epreuve      decimal(4,2),
hf_epreuve      decimal(4,2)
) ;

grant all    on epr to public;

{ et    (établissements) ------------------------------------------------------}

create table et
(
c_ac            char(2)      not null,
c_et            char(8)      not null,
c_dp            char(2)      not null,
c_dt            char(1),
c_ne            char(3)      not null,
t_et            char(2),
zone            char(3),
sigle           char(10),
l_et            char(38)     not null,
adresse         char(38),
lieu_dit        char(38),
c_cp            char(5)      not null,
c_cm            char(5),
l_ld            char(30)     not null,
n_siret         char(14),
pep_1           char(1),
pep_4           char(1),
mode_paiement   char(2),
l_et_compte     char(38),
c_et_compte     integer,
c_guichet       integer,
n_compte        char(11),
cle             char(2),
taux_is         decimal(4,2),
km_fd           smallint,
plan            char(1),
telephone       char(14),
fax             char(14),
e_mail_ok       char(2),
e_mail          char(30),
chef            char(38),
adjoint         char(38),
intendant       char(38),
comptable       char(38),
gestionnaire    char(38),
flag            char(1)
) ;

grant all    on et to concours;

{ exa   (examens OCEAN) -------------------------------------------------------}

create table exa
(
cod_exa         char(3),
cod_exr         char(3),
lbc_exa         char(30),
lbl_exa         char(50),
nat_cnc         char(1)
) ;

grant all    on exa to public;

{ gr    (grades) --------------------------------------------------------------}

create table gr
(
c_gr            char(8)  not null,
m_gr            char(10) not null,
l_gr            char(30) not null,
l_gr_maj        char(38) not null,
l_gr_min        char(50) not null,
c_bdd           char(1),
ordre_paiement  char(1),
sous_couvert    char(1),
c_sa            char(2),
categorie       char(1),
niveau          char(1),
c_gf_a          char(2),
c_gf_e          char(2),
flag            char(1)
) ;

grant all    on gr to public;

{ itrf  (ITRF) ----------------------------------------------------------------}

create table itrf
(
c_ec            char(5)   not null,
t_ec            char(2)   not null,
s_ec            char(2)   not null,
n_itrf          char(5)   not null,
civilite        char(1),
nom_naiss       char(20),
nom_usage       char(20),
prenom          char(20),
prenom_2eme     char(20),
adresse         char(38),
lieu_dit        char(38),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(10),
fax             char(10),
tel_bur         char(10),
note_11c        decimal(5,2)
) ;

grant all    on itrf to public;

{ ln    (logname) -------------------------------------------------------------}

create table ln
(
service         char(8)  not null,
bureau          char(3),
logname         char(8)  not null,
suivi           char(45) not null,
suivi_fax       char(45),
suivi_mel       char(45),
suivi_nom       char(32),
suivi_tel       char(32),
initiales       char(4)  not null,
n_pf            integer,
pre_imprime     char(4)  not null,
papier_blanc    char(4)  not null,
bac_bm          char(4)  not null,
bac_a3          char(4),
destination     char(4)  not null,
recto_verso     char(4)
) ;

grant all    on ln to public;

{ lv    (langues vivantes) ----------------------------------------------------}

create table lv
(
c_lv            char(1)  not null,
m_lv            char(10) not null,
l_lv            char(20) not null
) ;

grant all    on lv to public;

{ mat   (matières) ------------------------------------------------------------}

create table mat
(
c_mat           char(4)  not null,
l_mat           char(30) not null
) ;

grant all    on mat to public;

{ mj    (membres du jury) -----------------------------------------------------}

create table mj
(
n_mj            serial   not null,
numen           char(13),
civilite        char(3)  not null,
nom             char(20) not null,
prenom          char(20),
adresse         char(38),
lieu_dit        char(38),
c_cp            char(5),
l_ld            char(30),
c_gr            char(8),
indice          char(3),
fonction        char(30),
memo            char(30),
mode_paiement   char(2),
se              char(2),
pb              char(2),
c_et            char(8)  not null,
envoi           char(1)  not null,
d_tj            date,
division        char(30),
tel_dom         char(20),
tel_bur         char(20),
e_mail          char(38)
) ;

grant all    on mj to public;

{ mra   (motifs recul d'âge) --------------------------------------------------}

create table mra
(
c_recul_age     char(1)  not null,
l_recul_age     char(30) not null
) ;

grant all    on mra to public;

{ nat   (nationalités) --------------------------------------------------------}

create table nat
(
c_nationalite   char(1)  not null,
l_nationalite   char(30) not null
) ;

grant all    on nat to public;

{ ne    (natures établissements) ----------------------------------------------}

create table ne
(
c_ne            char(3)  not null,
t_ne_a          char(1),
t_ne_e          char(1),
sous_fichier    char(1),
groupe          char(1),
m_ne            char(10),
l_ne_1          char(38),
l_ne_2          char(38),
titre_1         char(38) not null,
titre_2         char(38),
courrier        char(1),
e_mail          char(1),
lettre          char(1)
) ;

grant all    on ne to public;

{ net   (candidatures internet issues d'INSCRINET OCEAN) ----------------------}

create table net
(
c_etat          char(1),
l_etat          char(30),
n_net           char(10),
n_anonymat      decimal(10),
civilite        char(3),
nom_naiss       char(25),
nom_usage       char(25),
prenom          char(25),
c_examen        char(3),
l_examen        char(50),
c_specialite    char(5),
l_specialite    char(33),
d_naissance     date,
adresse         char(32),
lieu_dit        char(32),
filler          char(32),
l_ld            char(30),
c_cp            char(5),
telephone       char(13)
) ;

grant all    on net to public;

{ oc    (origine des candidats) -----------------------------------------------}

create table oc
(
c_oc            char(3)  not null,
l_oc            char(30) not null
) ;

grant all    on oc to public;

{ opt   (options) -------------------------------------------------------------}

create table opt
(
c_option        char(4)  not null,
l_option        char(30) not null
) ;

grant all    on opt to public;

{ oral  (ordre oral) ----------------------------------------------------------}

create table oral
(
jury            smallint,
ordre_oral      smallint,
nom_naiss       char(20),
nom_usage       char(20),
prenom          char(20),
note_11         decimal(5,2),
note_21         decimal(5,2),
note_total      decimal(5,2),
moyenne         decimal(5,2)
) ;

grant all    on oral to public;

{ os    (origines statutaires) ------------------------------------------------}

create table os
(
c_os            char(3)  not null,
l_os            char(30) not null
) ;

grant  all    on os to public;

{ pec   (personnes examens-concours) ------------------------------------------}

create table pec
(
n_pec           serial                not null,
n_pim           integer,
num_can         char(10),
num_mtr         char(10),
exercice        datetime year to year not null,
numen           char(13),
civilite        char(3)               not null,
nom_cec         char(5)               not null,
nom_naiss       char(20)              not null,
nom_usage       char(20)              not null,
prenom          char(20)              not null,
prenom_2eme     char(20),
d_naissance     date,
lieu_naissance  char(30),
adresse         char(38),
adresse_2       char(38),
lieu_dit        char(38),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(20),
tel_bur         char(20),
coordonnees_1   char(38),
coordonnees_2   char(38),
fonction        char(30),
sit_fam         char(1),
sit_mil         char(1),
sit_adm         char(1),
d_titulaire     date,
enfants         char(2),
cotorep         char(1),
c_os            char(3),
c_nationalite   char(1),
t_diplome       char(1),
l_diplome       char(30),
c_et            char(8),
t_et            char(1),
flag            char(1)
) ;

grant all    on pec to public;

{ pec_n (personnes examens-concours) ------------------------------------------}

create table pec_n
(
n_pec           integer               not null,
n_pim           integer,
num_can         char(10),
num_mtr         char(10),
exercice        datetime year to year not null,
numen           char(13),
civilite        char(3)               not null,
nom_cec         char(5)               not null,
nom_naiss       char(20)              not null,
nom_usage       char(20)              not null,
prenom          char(20)              not null,
prenom_2eme     char(20),
d_naissance     date,
lieu_naissance  char(30),
adresse         char(38),
adresse_2       char(38),
lieu_dit        char(38),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(20),
tel_bur         char(20),
coordonnees_1   char(38),
coordonnees_2   char(38),
fonction        char(30),
sit_fam         char(1),
sit_mil         char(1),
sit_adm         char(1),
d_titulaire     date,
enfants         char(2),
cotorep         char(1),
c_os            char(3),
c_nationalite   char(1),
t_diplome       char(1),
l_diplome       char(30),
c_et            char(8),
t_et            char(1),
flag            char(1)
) ;

grant all    on pec_n to public;

{ pic   (pré-inscription CONCOURS) --------------------------------------------}

create table pic
(
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
c_ec_pim        char(5)  not null,
t_ec_pim        char(2)  not null,
n_pim           integer  not null,
n_pec           integer,
n_cec           integer,
c_decision      char(1),
civilite        char(3)  not null,
nom_naiss       char(20) not null,
nom_usage       char(20),
prenom          char(20) not null,
prenom_2eme     char(20),
d_naissance     date     not null,
lieu_naissance  char(30),
adresse         char(38),
lieu_dit        char(30),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(15),
tel_bur         char(15),
coordonnees_1   char(38),
coordonnees_2   char(38),
fonction        char(30),
sit_fam         char(1),
sit_mil         char(1),
sit_adm         char(1),
d_titulaire     date,
enfants         char(2),
cotorep         char(1),
c_os            char(3),
c_nationalite   char(1),
t_diplome       char(1),
l_diplome       char(30),
c_dp            char(2),
c_et            char(8),
t_et            char(1),
option          char(1),
option_11       char(1),
option_12       char(1),
option_13       char(1),
option_14       char(1),
option_1A       char(1),
option_1B       char(1),
option_21       char(1),
option_22       char(1),
option_23       char(1),
option_24       char(1),
option_2A       char(1),
option_2B       char(1),
d_saisie        date,
d_demande       date,
d_relance       date,
c_pm_1          char(2),
c_pm_2          char(2),
c_pm_3          char(2),
c_pm_4          char(2),
c_pm_5          char(2),
divers_1        char(78),
divers_2        char(78),
d_refus         date,
c_rc_1          char(2),
c_rc_2          char(2),
c_rc_3          char(2),
c_rc_4          char(2),
c_rc_5          char(2),
refus_1         char(78),
refus_2         char(78),
d_load          date
) ;

grant all    on pic to public;

{ pic_n (pré-inscription CONCOURS) --------------------------------------------}

create table pic_n
(
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
c_ec_pim        char(5)  not null,
t_ec_pim        char(2)  not null,
n_pim           integer  not null,
n_pec           integer,
n_cec           integer,
c_decision      char(1),
civilite        char(3)  not null,
nom_naiss       char(20) not null,
nom_usage       char(20),
prenom          char(20) not null,
prenom_2eme     char(20),
d_naissance     date     not null,
lieu_naissance  char(30),
adresse         char(38),
lieu_dit        char(30),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(15),
tel_bur         char(15),
coordonnees_1   char(38),
coordonnees_2   char(38),
fonction        char(30),
sit_fam         char(1),
sit_mil         char(1),
sit_adm         char(1),
d_titulaire     date,
enfants         char(2),
cotorep         char(1),
c_os            char(3),
c_nationalite   char(1),
t_diplome       char(1),
l_diplome       char(30),
c_dp            char(2),
c_et            char(8),
t_et            char(1),
option          char(1),
option_11       char(1),
option_12       char(1),
option_13       char(1),
option_14       char(1),
option_1A       char(1),
option_1B       char(1),
option_21       char(1),
option_22       char(1),
option_23       char(1),
option_24       char(1),
option_2A       char(1),
option_2B       char(1),
d_saisie        date,
d_demande       date,
d_relance       date,
c_pm_1          char(2),
c_pm_2          char(2),
c_pm_3          char(2),
c_pm_4          char(2),
c_pm_5          char(2),
divers_1        char(78),
divers_2        char(78),
d_refus         date,
c_rc_1          char(2),
c_rc_2          char(2),
c_rc_3          char(2),
c_rc_4          char(2),
c_rc_5          char(2),
refus_1         char(78),
refus_2         char(78),
d_load          date
) ;

grant all    on pic_n to public;

{ pim   (pré-inscription MINITEL Créteil) -------------------------------------}

create table pim
(
n_pim           integer not null,
civilite        char(2),
nom_naiss       char(20),
nom_usage       char(20),
prenom          char(20),
prenom_2eme     char(20),
d_naissance     date,
lieu_naissance  char(30),
c_nationalite   char(1),
adresse         char(38),
lieu_dit        char(38),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(20),
sit_fam         char(1),
enfants         char(2),
sit_mil         char(1),
c_os            char(3),
coordonnees_1   char(38),
cotorep         char(1),
t_et            char(1),
t_diplome       char(1),
l_diplome       char(30),
sit_adm         char(2),
d_serial        date,
t_ec            char(2),
c_ec            char(5),
option          char(2),
n_pim_bis       integer,
d_saisie        date,
d_unload        date,
d_load          date,
d_titulaire     date,
c_et            char(8),
tel_bur         char(20),
coordonnees_2   char(38),
c_fp            char(3),
fonction        char(30)
) ;

grant select on pim to public;

{ pim   (pré-inscription MINITEL Versailles) ----------------------------------}
{
create table pim
(
n_pim           integer not null,
civilite        char(2),
nom_naiss       char(30),
nom_usage       char(30),
prenom          char(30),
d_naissance     date,
lieu_naissance  char(30),
c_nationalite   char(1),
adresse         char(40),
lieu_dit        char(38),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(15),
sit_fam         char(1),
enfants         char(2),
sit_mil         char(1),
l_profession    char(30),
coordonnees_1   char(40),
coordonnees_2   char(40),
tel_bur         char(15),
c_et            char(8),
c_fp            char(3)
c_os            char(3),
cotorep         char(1),
t_diplome       char(1),
t_ec            char(2),
c_ec            char(5),
option          char(2),
prenom_2eme     char(20),
l_diplome       char(30),
t_et            char(1),
fonction        char(30),
d_titulaire     date,
d_serial        date,
d_saisie        date,
d_unload        date,
d_load          date
) ;

grant select on pim to public;
}
{ pim_n (pré-inscription MINITEL) ---------------------------------------------}

create table pim_n
(
n_pim           integer not null,
civilite        char(2),
nom_naiss       char(20),
nom_usage       char(20),
prenom          char(20),
prenom_2eme     char(20),
d_naissance     date,
lieu_naissance  char(30),
c_nationalite   char(1),
adresse         char(38),
lieu_dit        char(38),
c_cp            char(5),
l_ld            char(30),
tel_dom         char(20),
sit_fam         char(1),
enfants         char(2),
sit_mil         char(1),
c_os            char(3),
coordonnees_1   char(38),
cotorep         char(1),
t_et            char(1),
t_diplome       char(1),
l_diplome       char(30),
sit_adm         char(2),
d_serial        date,
t_ec            char(2),
c_ec            char(5),
option          char(2),
n_pim_bis       integer,
d_saisie        date,
d_unload        date,
d_titulaire     date,
c_et            char(8),
tel_bur         char(20),
coordonnees_2   char(38),
fonction        char(30)
) ;

grant select on pim_n to public;

{ pj    (planning jury) -------------------------------------------------------}

create table pj
(
cts_geo         char(12) not null,
cts             char(9)  not null,
geo             char(3)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
groupe          char(1)  not null,
epreuve         char(1)  not null,
option          char(1)  not null,
partiel         char(1)  not null,
c_dp            char(2),
sexe            char(1),
n_pj            smallint,
c_et            char(8),
lieu            char(38),
hall            char(38),
salle           char(5),
jury            smallint,
passage         smallint,
d_epreuve       date,
hm_appel        datetime hour to minute,
hmd_epreuve     datetime hour to minute,
hmf_epreuve     datetime hour to minute,
h_appel         decimal(4,2),
hd_epreuve      decimal(4,2),
hf_epreuve      decimal(4,2)
) ;

grant all    on pj to public;

{ pm    (pièces manquantes) ---------------------------------------------------}

create table pm
(
c_pm            char(2)  not null,
l_pm            char(38) not null,
l_pm_1          char(78) not null,
l_pm_2          char(78),
l_pm_3          char(78),
l_pm_4          char(78),
l_pm_5          char(78),
l_pm_6          char(78)
) ;

grant all    on pm to public;

{ prf   (professions OCEAN) ---------------------------------------------------}

create table prf
(
c_prf           char(4)  not null,
l_prf           char(30) not null
) ;

grant all    on prf to public;

{ qcm   (questionnaires à choix multiples) ------------------------------------}

create table qcm
(
place           smallint,
note            decimal(5,3)
) ;

grant all    on qcm to public;

{ qjo   (questionnaire jury d'oral      : importation) ------------------------}

create table qjo
(
ordre_oral      smallint,
note            decimal(4,2)
) ;

grant all    on qjo to public;

{ rc    (refus d'autorisation de concourir) -----------------------------------}

create table rc
(
c_rc            char(2)  not null,
l_rc            char(38) not null,
l_rc_1          char(78) not null,
l_rc_2          char(78),
l_rc_3          char(78),
l_rc_4          char(78),
l_rc_5          char(78),
l_rc_6          char(78)
) ;

grant all    on rc to public;

{ sa    (situations administratives -------------------------------------------}

create table sa
(
c_sa             char(2)       not null,
l_sa             char(30)      not null
) ;

grant all    on sa to public;

{ sg    (services gestionnaires) ----------------------------------------------}

create table sg
(
service         char(8)  not null,
c_ac            char(2)  not null,
c_et_0          char(8)  not null,
c_et_1          char(8),
timbre_0        char(20),
timbre_1        char(50),
timbre_2        char(50),
timbre_3        char(50),
timbre_4        char(50),
en_tete_0       char(34),
en_tete_1       char(34),
en_tete_2       char(34),
en_tete_3       char(34),
en_tete_4       char(34),
en_tete_5       char(34),
en_tete_6       char(34),
en_tete_7       char(34),
en_tete_8       char(34),
en_tete_9       char(34),
cachet_10       char(38),
cachet_11       char(38),
cachet_12       char(38),
cachet_13       char(38),
cachet_14       char(38),
cachet_15       char(38),
cachet_16       char(38),
cachet_17       char(38),
cachet_18       char(38),
cachet_19       char(38),
cachet_20       char(38),
cachet_21       char(38),
cachet_22       char(38),
cachet_23       char(38),
cachet_24       char(38),
cachet_25       char(38),
cachet_26       char(38),
cachet_27       char(38),
cachet_28       char(38),
cachet_29       char(38),
n_mj            integer,
ds_1            char(38),
ds_2            char(38),
ds_3            char(38),
ds_4            char(38),
ds_5            char(38),
ds_6            char(38),
ds_7            char(38),
envoi_1         char(38),
envoi_2         char(38),
envoi_3         char(38),
depot_1         char(38),
depot_2         char(38),
depot_3         char(38),
t_fichier       char(3)
) ;

grant all    on sg to public;

{ sh    (suivi historique) ----------------------------------------------------}

create table sh
(
cts             char(9)                 not null,
c_ec            char(5)                 not null,
t_ec            char(2)                 not null,
s_ec            char(2)                 not null,
d_valide        date,
d_mailing       date                    not null,
t_mailing       datetime hour to second not null,
prevues         smallint                not null,
traitees        smallint                not null,
envoyees        smallint                not null,
abortees        smallint                not null,
n_mj            integer                 not null,
c_et            char(8),
pj              char(1),
logname         char(8)                 not null
) ;

grant all    on sh   to concours;

{ sh_n  (suivi historique) ----------------------------------------------------}

create table sh_n
(
cts             char(9)                 not null,
c_ec            char(5)                 not null,
t_ec            char(2)                 not null,
s_ec            char(2)                 not null,
d_valide        date,
d_mailing       date                    not null,
t_mailing       datetime hour to second not null,
prevues         smallint                not null,
traitees        smallint                not null,
envoyees        smallint                not null,
abortees        smallint                not null,
n_mj            integer                 not null,
c_et            char(8),
pj              char(1),
logname         char(8)                 not null
) ;

grant all    on sh_n to concours;

{ sp    (salles-places) -------------------------------------------------------}

create table sp
(
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
premier         smallint not null,
dernier         smallint not null,
c_et            char(8)  not null,
hall            char(38),
salle           char(5)  not null,
capacite        smallint not null
) ;

grant all    on sp to public;

{ spe   (spécialités OCEAN) ---------------------------------------------------}

create table spe
(
c_ocean         char(8)  not null,
c_examen        char(3)  not null,
c_specialite    char(5)  not null,
l_specialite    char(50) not null,
l_ocean         char(38) not null,
c_ec            char(5),
t_ec            char(2)
) ;

grant all    on spe to public;

{ sys_c (colonnes) ------------------------------------------------------------}

create table sys_c
(
colname         char(18),
tabid           integer,
colno           smallint,
coltype         smallint,
collength       smallint,
type_length     char(30),
attention       char(1),
collib_0        char(38),
collib_1        char(76),
collib_2        char(76),
collib_3        char(76),
collib_4        char(76),
collib_5        char(76)
) ;

grant all    on sys_c to public;

{ sys_t (tables) --------------------------------------------------------------}

create table sys_t
(
tabid           integer,
tabname         char(18),
tabname_2       char(18),
tablibe         char(60)
) ;

grant all    on sys_t to public;

{ sysmenus) -------------------------------------------------------------------}
{
create table sysmenus
(
menuname        char(18),
title           char(60)
) ;

grant all    on sysmenus to public;
}
{ sysmenuitems) ---------------------------------------------------------------}
{
create table sysmenuitems
(
imenuname       char(18),
itemnum         integer,
mtext           char(60),
mtype           char(1),
progname        char(60)
) ;

grant all    on sysmenuitems to public;
}
{ t_cm  (typologie communes) --------------------------------------------------}

create table t_cm
(
t_cm            char(5)  not null,
t_cm_l          char(30) not null
) ;

grant all    on t_cm to public;

{ tec   (typologie examens-concours) ------------------------------------------}

create table tec
(
t_ec            char(2)  not null,
t_ec_l_maj      char(30) not null,
t_ec_l_min      char(30) not null,
t_liste_maj     char(10) not null,
t_liste_min     char(10) not null,
objet_1         char(70) not null,
reserve_1       char(80) not null,
objet_2_p       char(70) not null,
objet_2_c       char(70) not null,
reserve_2       char(80) not null
) ;

grant all    on tec to public;

{ tj    (travaux jury) --------------------------------------------------------}

create table tj
(
n_mj            integer  not null,
cts_geo         char(12) not null,
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
geo             char(3)  not null,
groupe          char(1)  not null,
epreuve         char(1)  not null,
option          char(1)  not null,
partiel         char(1)  not null,
c_tj            char(2)  not null,
ok              char(1),
edition         char(1),
d_debut         date,
h_debut         decimal(4,2),
d_fin           date,
date_1          char(38),
date_2          char(38),
date_3          char(38),
date_4          char(38),
date_5          char(38),
date_6          char(38),
journee         char(1),
c_et            char(8),
jury            smallint,
salle           char(5),
suppleance      char(1),
lieu            char(38),
d_convoc        date,
d_indemnites    date,
d_deplacement   date,
n_note          smallint,
d_maling        date,
t_mailing       datetime hour to second
) ;

grant all    on tj to public;

{ tj_n  (travaux jury) --------------------------------------------------------}

create table tj_n
(
n_mj            integer  not null,
cts_geo         char(12) not null,
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
geo             char(3)  not null,
groupe          char(1)  not null,
epreuve         char(1)  not null,
option          char(1)  not null,
partiel         char(1)  not null,
c_tj            char(2)  not null,
ok              char(1),
edition         char(1),
d_debut         date,
h_debut         decimal(4,2),
d_fin           date,
date_1          char(38),
date_2          char(38),
date_3          char(38),
date_4          char(38),
date_5          char(38),
date_6          char(38),
journee         char(1),
c_et            char(8),
jury            smallint,
salle           char(5),
suppleance      char(1),
lieu            char(38),
d_convoc        date,
d_indemnites    date,
d_deplacement   date,
n_note          smallint,
d_maling        date,
t_mailing       datetime hour to second
) ;

grant all    on tj_n to public;

{ tmp   (temporaire) ----------------------------------------------------------}

create table tmp
(
n_cec           integer  not null,
n_pec           integer,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
groupe          char(1),
epreuve         char(1),
option          char(1),
partiel         char(1),
c_et            char(8),
salle           char(5),
place           smallint,
lettre_cle      char(1),
post_it         smallint,
jury            smallint,
passage         smallint,
admis_1         char(1),
admis_2         char(1),
liste           char(1),
rang            smallint,
exaequo         char(1),
flag            char(1)
) ;

grant all    on tmp to public;

{ tmp_hf(temporaire hommes-femmes) --------------------------------------------}

create table tmp_hf
(
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
postes          smallint,
reserves_acvg   smallint,
reserves_th     smallint,
d_ouverture     date,
d_cloture       date,
d_admis_1       date,
d_admis_2       date,
inscrits_h      smallint,
inscrits_f      smallint,
inscrits        smallint,
presents_h      smallint,
presents_f      smallint,
presents        smallint,
admissibles_h   smallint,
admissibles_f   smallint,
admissibles     smallint,
liste_p_h       smallint,
liste_p_f       smallint,
liste_p         smallint,
liste_c_h       smallint,
liste_c_f       smallint,
liste_c         smallint,
jury            smallint,
sujets          smallint
) ;

grant all    on tmp_hf to public;

{ tmp_nd(temporaire niveaux de diplôme) ---------------------------------------}

create table tmp_nd
(
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
nd_l1_h_0       smallint,
nd_l1_f_0       smallint,
nd_l1_h_1       smallint,
nd_l1_f_1       smallint,
nd_l1_h_2       smallint,
nd_l1_f_2       smallint,
nd_l1_h_3       smallint,
nd_l1_f_3       smallint,
nd_l1_h_4       smallint,
nd_l1_f_4       smallint,
nd_l1_h_5       smallint,
nd_l1_f_5       smallint,
nd_l1_h_6       smallint,
nd_l1_f_6       smallint,
nd_l1_h_7       smallint,
nd_l1_f_7       smallint,
nd_lp_h_0       smallint,
nd_lc_h_0       smallint,
nd_lp_f_0       smallint,
nd_lc_f_0       smallint,
nd_lp_h_1       smallint,
nd_lc_h_1       smallint,
nd_lp_f_1       smallint,
nd_lc_f_1       smallint,
nd_lp_h_2       smallint,
nd_lc_h_2       smallint,
nd_lp_f_2       smallint,
nd_lc_f_2       smallint,
nd_lp_h_3       smallint,
nd_lc_h_3       smallint,
nd_lp_f_3       smallint,
nd_lc_f_3       smallint,
nd_lp_h_4       smallint,
nd_lc_h_4       smallint,
nd_lp_f_4       smallint,
nd_lc_f_4       smallint,
nd_lp_h_5       smallint,
nd_lc_h_5       smallint,
nd_lp_f_5       smallint,
nd_lc_f_5       smallint,
nd_lp_h_6       smallint,
nd_lc_h_6       smallint,
nd_lp_f_6       smallint,
nd_lc_f_6       smallint,
nd_lp_h_7       smallint,
nd_lc_h_7       smallint,
nd_lp_f_7       smallint,
nd_lc_f_7       smallint
) ;

grant all    on tmp_nd to public;

{ tmp_nh(temporaire niveaux hiérarchiques) ------------------------------------}

create table tmp_nh
(
cts             char(9)  not null,
c_ec            har(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
nh_ma_h_1       smallint,
nh_ma_f_1       smallint,
nh_pa_h_1       smallint,
nh_pa_f_1       smallint,
nh_ma_h_2       smallint,
nh_ma_f_2       smallint,
nh_pa_h_2       smallint,
nh_pa_f_2       smallint,
nh_ma_h_3       smallint,
nh_ma_f_3       smallint,
nh_pa_h_3       smallint,
nh_pa_f_3       smallint,
nh_mb_h_4       smallint,
nh_mb_f_4       smallint,
nh_pb_h_4       smallint,
nh_pb_f_4       smallint,
nh_mc_h_5       smallint,
nh_mc_f_5       smallint,
nh_pc_h_5       smallint,
nh_pc_f_5       smallint,
nh_md_h_6       smallint,
nh_md_f_6       smallint,
nh_pd_h_6       smallint,
nh_pd_f_6       smallint
) ;

grant all    on tmp_nh to public;


{ tmp_os(temporaire origines statutaires) -------------------------------------}

create table tmp_os
(
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
os_l1_h_a       smallint,
os_l1_f_a       smallint,
os_l1_h_b       smallint,
os_l1_f_b       smallint,
os_l1_h_c       smallint,
os_l1_f_c       smallint,
os_l1_h_d       smallint,
os_l1_f_d       smallint,
os_l1_h_e       smallint,
os_l1_f_e       smallint,
os_l1_h_f       smallint,
os_l1_f_f       smallint,
os_l1_h_g       smallint,
os_l1_f_g       smallint,
os_l1_h_h       smallint,
os_l1_f_h       smallint,
os_l1_h_i       smallint,
os_l1_f_i       smallint,
os_l1_h_j       smallint,
os_l1_f_j       smallint,
os_l1_h_k       smallint,
os_l1_f_k       smallint,
os_l1_h_l       smallint,
os_l1_f_l       smallint,
os_l1_h_m       smallint,
os_l1_f_m       smallint,
os_l1_h_n       smallint,
os_l1_f_n       smallint,
os_l1_h_o       smallint,
os_l1_f_o       smallint,
os_lp_h_a       smallint,
os_lc_h_a       smallint,
os_lp_f_a       smallint,
os_lc_f_a       smallint,
os_lp_h_b       smallint,
os_lc_h_b       smallint,
os_lp_f_b       smallint,
os_lc_f_b       smallint,
os_lp_h_c       smallint,
os_lc_h_c       smallint,
os_lp_f_c       smallint,
os_lc_f_c       smallint,
os_lp_h_d       smallint,
os_lc_h_d       smallint,
os_lp_f_d       smallint,
os_lc_f_d       smallint,
os_lp_h_e       smallint,
os_lc_h_e       smallint,
os_lp_f_e       smallint,
os_lc_f_e       smallint,
os_lp_h_f       smallint,
os_lc_h_f       smallint,
os_lp_f_f       smallint,
os_lc_f_f       smallint,
os_lp_h_g       smallint,
os_lc_h_g       smallint,
os_lp_f_g       smallint,
os_lc_f_g       smallint,
os_lp_h_h       smallint,
os_lc_h_h       smallint,
os_lp_f_h       smallint,
os_lc_f_h       smallint,
os_lp_h_i       smallint,
os_lc_h_i       smallint,
os_lp_f_i       smallint,
os_lc_f_i       smallint,
os_lp_h_j       smallint,
os_lc_h_j       smallint,
os_lp_f_j       smallint,
os_lc_f_j       smallint,
os_lp_h_k       smallint,
os_lc_h_k       smallint,
os_lp_f_k       smallint,
os_lc_f_k       smallint,
os_lp_h_l       smallint,
os_lc_h_l       smallint,
os_lp_f_l       smallint,
os_lc_f_l       smallint,
os_lp_h_m       smallint,
os_lc_h_m       smallint,
os_lp_f_m       smallint,
os_lc_f_m       smallint,
os_lp_h_n       smallint,
os_lc_h_n       smallint,
os_lp_f_n       smallint,
os_lc_f_n       smallint,
os_lp_h_o       smallint,
os_lc_h_o       smallint,
os_lp_f_o       smallint,
os_lc_f_o       smallint
) ;

grant all    on tmp_os to public;

{ tmp_ta(temporaire tranches d'âge) -------------------------------------------}

create table tmp_ta
(
cts             char(9)  not null,
c_ec            char(5)  not null,
t_ec            char(2)  not null,
s_ec            char(2)  not null,
ta_l1_h_1       smallint,
ta_l1_f_1       smallint,
ta_l1_h_2       smallint,
ta_l1_f_2       smallint,
ta_l1_h_3       smallint,
ta_l1_f_3       smallint,
ta_l1_h_4       smallint,
ta_l1_f_4       smallint,
ta_l1_h_5       smallint,
ta_l1_f_5       smallint,
ta_l1_h_6       smallint,
ta_l1_f_6       smallint,
ta_l1_h_7       smallint,
ta_l1_f_7       smallint,
ta_lp_h_1       smallint,
ta_lc_h_1       smallint,
ta_lp_f_1       smallint,
ta_lc_f_1       smallint,
ta_lp_h_2       smallint,
ta_lc_h_2       smallint,
ta_lp_f_2       smallint,
ta_lc_f_2       smallint,
ta_lp_h_3       smallint,
ta_lc_h_3       smallint,
ta_lp_f_3       smallint,
ta_lc_f_3       smallint,
ta_lp_h_4       smallint,
ta_lc_h_4       smallint,
ta_lp_f_4       smallint,
ta_lc_f_4       smallint,
ta_lp_h_5       smallint,
ta_lc_h_5       smallint,
ta_lp_f_5       smallint,
ta_lc_f_5       smallint,
ta_lp_h_6       smallint,
ta_lc_h_6       smallint,
ta_lp_f_6       smallint,
ta_lc_f_6       smallint,
ta_lp_h_7       smallint,
ta_lc_h_7       smallint,
ta_lp_f_7       smallint,
ta_lc_f_7       smallint
) ;

grant all    on tmp_ta to public;

{ uad   (unité administrative) ------------------------------------------------}

create table uad
(
c_uad           char(3)  not null,
l_uad           char(30) not null
) ;

grant all    on uad to public;

{ ut    (unités de traitement) ------------------------------------------------}

create table ut
(
processus       char(10),
c_ut            char(20),
objet           char(76),
objet_1         char(76),
objet_2         char(76),
objet_3         char(76),
objet_4         char(76),
objet_5         char(76)
) ;

grant all    on ut to concours;

{------------------------------------- FIN ------------------------------------}

I-3. Annexes

▲ I-3.1.5. Ex&Co Shells
► I-3.1.6. Ex&Co Sql CREATE_BDD
▼ I-3.1.7. Ex&Co Sql CREATE_IDX

Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog Viadeo Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog Twitter Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog Google Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog Facebook Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog Digg Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog Delicious Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog MySpace Envoyer le billet « I-3.1.6. Ex&Co SQL CREATE_BDD » dans le blog Yahoo

Mis à jour 25/02/2024 à 19h50 par APL-AML

Catégories
■ APL-AML , I- L’ART , I-3. Annexes , I-3.1. BDD Examens-Concours