Browse Source

Laden HZB-Daten aus schulischer Vorbildung (statt Bewerbung) Versionsspezifisch #19

basisressourcen
Daniel Quathamer 7 months ago
parent
commit
6c6e30c4c1
  1. 1
      src-modules/module/costage/conf/costage.xml
  2. 21
      src-modules/module/costage/rohdaten/costage_unload.xml

1
src-modules/module/costage/conf/costage.xml

@ -496,6 +496,7 @@ rightname="CS_BIA_STANDARDREPORTS_ADMIN[CO]" /> @@ -496,6 +496,7 @@ rightname="CS_BIA_STANDARDREPORTS_ADMIN[CO]" />
<column name="hzb_datum" type ="DATE" size ="7" default ="" notnull ="true" description="HZB Datum "/>
<column name="hzb_note" type ="VARCHAR" size ="40" default ="" notnull ="false" description="HZB-Note"/>
<column name="st_person_nr" type ="INTEGER" size ="4" default ="" notnull ="true" description="Studierenden-Laufnr."/>
<column name="hzb_note_original" type ="VARCHAR" size ="255" default ="" notnull ="false" description="HZB-Note (alphanumerisch)"/>
</columns>
<indexes></indexes>
<primaryKeys><rs>

21
src-modules/module/costage/rohdaten/costage_unload.xml

@ -365,7 +365,23 @@ FROM px_st_studierendenstammdaten_v @@ -365,7 +365,23 @@ FROM px_st_studierendenstammdaten_v
</unload-job>
<unload-job id="px_st_hzb_v" target-table="costage_st_hzb" extraction-script="" transfer-unload-file="unl/costage_st_hzb.unl" >
<comment> </comment>
<extraction-sql sourcesystem="co" database="" version="">
<extraction-sql sourcesystem="co" database="" version="233">
<![CDATA[ select
nr,
hzb_land_nr,
hzb_land_sub_r_nr,
hzb_art_nr,
hzb_jahr,
hzb_datum,
hzb_note_numerisch,
st_person_nr,
hzb_note
FROM px_st_hzb_v
;
]]>
</extraction-sql>
<extraction-sql sourcesystem="co" database="" version="234">
<![CDATA[ select
nr,
hzb_land_nr,
@ -374,7 +390,8 @@ nr, @@ -374,7 +390,8 @@ nr,
hzb_jahr,
hzb_datum,
hzb_note,
st_person_nr
st_person_nr,
hzb_note_original
FROM px_st_hzb_v
;

Loading…
Cancel
Save