|
|
|
@ -3,7 +3,7 @@
@@ -3,7 +3,7 @@
|
|
|
|
|
<sqlvar name="sos_lab_pord_exists"> |
|
|
|
|
select sp_table_exists('sos_lab_pord') from xdummy; |
|
|
|
|
</sqlvar> |
|
|
|
|
<sqlvar name="fact_table_source" type="hash"> |
|
|
|
|
<sqlvar name="fact_table_source"> |
|
|
|
|
select name |
|
|
|
|
from sx_tables where name ='sos_lab_pord' |
|
|
|
|
|
|
|
|
@ -31,7 +31,7 @@ caption,
@@ -31,7 +31,7 @@ caption,
|
|
|
|
|
select tid, table_name, |
|
|
|
|
name, |
|
|
|
|
name as targetname |
|
|
|
|
from sx_fields where table_name ='${fact_table_source.name}' |
|
|
|
|
from sx_fields where table_name ='${fact_table_source}' |
|
|
|
|
--and currentlyused=1 |
|
|
|
|
and name in ('matrikel_nr', |
|
|
|
|
'sem_der_pruefung', |
|
|
|
@ -153,7 +153,7 @@ table_type,
@@ -153,7 +153,7 @@ table_type,
|
|
|
|
|
systeminfo_id, |
|
|
|
|
thema, |
|
|
|
|
sachgebiete_id |
|
|
|
|
from sx_tables where name='${fact_table_source.name}' |
|
|
|
|
from sx_tables where name='${fact_table_source}' |
|
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -193,7 +193,7 @@ select '${fact_table_target.name}' as table_name,
@@ -193,7 +193,7 @@ select '${fact_table_target.name}' as table_name,
|
|
|
|
|
check_integrity, |
|
|
|
|
is_sum, |
|
|
|
|
foreignkey_uniquename |
|
|
|
|
from sx_fields where table_name ='${fact_table_source.name}' |
|
|
|
|
from sx_fields where table_name ='${fact_table_source}' |
|
|
|
|
and currentlyused=1; |
|
|
|
|
<#foreach added_table in added_tables> |
|
|
|
|
insert into tmp_fields (table_name, |
|
|
|
@ -260,7 +260,7 @@ update tmp_rpta_resultset set fieldclause='
@@ -260,7 +260,7 @@ update tmp_rpta_resultset set fieldclause='
|
|
|
|
|
${field_target.table_name}.${field_target.name} as ${field_target.targetname}, |
|
|
|
|
</#foreach> |
|
|
|
|
null::varchar as dummy', |
|
|
|
|
joinclause='${fact_table_source.name} |
|
|
|
|
joinclause='${fact_table_source} |
|
|
|
|
<#foreach added_table in added_tables> |
|
|
|
|
left outer join ${added_table.name} on (${added_table.joinclause}) |
|
|
|
|
</#foreach>'; |
|
|
|
|