@ -11,7 +11,6 @@ delete from sx_mask_style where maskeninfo_id=21000 and stylesheet_id in (select
-- Mask Style füllen
-- Mask Style füllen
- - ####################################################################################################
- - ####################################################################################################
create temp table tmp_mask_style (
create temp table tmp_mask_style (
tid serial not null ,
maskeninfo_id INTEGER ,
maskeninfo_id INTEGER ,
stylesheet_id INTEGER ,
stylesheet_id INTEGER ,
ord SMALLINT ,
ord SMALLINT ,
@ -22,15 +21,15 @@ delete from tmp_hilf;
insert into tmp_hilf select max ( tid ) from sx_mask_style ;
insert into tmp_hilf select max ( tid ) from sx_mask_style ;
update tmp_hilf set tid = 1 where tid is null ;
update tmp_hilf set tid = 1 where tid is null ;
insert into tmp_mask_style ( tid , maskeninfo_id , ord , filename )
insert into tmp_mask_style ( maskeninfo_id , ord , filename )
select max ( tid ) + 1 , 21000 , 10 , ' tabelle_html_viz.xsl ' from tmp_hilf
select 21000 , 10 , ' tabelle_html_viz.xsl ' from tmp_hilf
where 0 < ( select count ( * ) from sx_stylesheets where filename = ' tabelle_html_viz.xsl ' ) ;
where 0 < ( select count ( * ) from sx_stylesheets where filename = ' tabelle_html_viz.xsl ' ) ;
update tmp_mask_style set stylesheet_id = ( select max ( tid ) from sx_stylesheets where filename = ' tabelle_html_viz.xsl ' )
update tmp_mask_style set stylesheet_id = ( select max ( tid ) from sx_stylesheets where filename = ' tabelle_html_viz.xsl ' )
where filename = ' tabelle_html_viz.xsl ' ;
where filename = ' tabelle_html_viz.xsl ' ;
insert into sx_mask_style ( tid , maskeninfo_id , stylesheet_id , ord )
insert into sx_mask_style ( maskeninfo_id , stylesheet_id , ord )
SELECT tid , maskeninfo_id , stylesheet_id , ord
SELECT maskeninfo_id , stylesheet_id , ord
FROM tmp_mask_style ;
FROM tmp_mask_style ;
drop table tmp_mask_style ;
drop table tmp_mask_style ;