Report problems to ATLAS LXR Team (with time and IP address indicated)

The LXR Cross Referencer

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Architecture: linux ]
Version: head ] [ nightly ] [ GaudiDev ]
  Links to LXR source navigation pages for stable releases [ 12.*.* ]   [ 13.*.* ]   [ 14.*.* ]   [ 15.*.* ] 

001 SET echo OFF;
002 set linesize 132;
003 drop   table WCRO_data2tag cascade constraints;
004 drop   table WCRO_data cascade constraints;
005 create table WCRO_data (
006   WCRO_data_id   number(10),
007 VERS       number(10),
008 JSTA       number(10),
009 NUM       number(10),
010 HEIGHTNESS       float(63),
011 LARGENESS       float(63),
012 THICKNESS       float(63)
013 ) ;
014 
015 alter table WCRO_data add constraint WCRO_data_pk
016 primary key (WCRO_data_id);
017 
018 create table WCRO_data2tag (
019   WCRO_vers      varchar2(255),
020   WCRO_data_id   number(10)
021 ) ;
022 
023 alter table WCRO_data2tag add constraint WCRO_data2tag_pk
024 primary key (WCRO_vers, WCRO_data_id);
025 alter table WCRO_data2tag add constraint WCRO_data2tag_vers_fk
026 foreign key (WCRO_vers) references hvs_nodevers (vers_name);
027 alter table WCRO_data2tag add constraint WCRO_data2tag_data_fk
028 foreign key (WCRO_data_id) references WCRO_data (WCRO_data_id);
029 
030 delete from hvs_relation where CHILD_NODENAME = 'WCRO';
031 delete from hvs_nodevers where VERS_NAME = 'MuonSpectrometer-07';
032 delete from hvs_nodevers where NODE_NAME = 'WCRO';
033 delete from hvs_node     where NODE_NAME = 'WCRO';
034 
035 insert into hvs_node     values ('WCRO','MuonSpectrometer', '');
036 insert into hvs_nodevers values ('WCRO', 'WCRO-07', '');
037 insert into hvs_nodevers values ('MuonSpectrometer','MuonSpectrometer-07','');
038 insert into hvs_relation values ('MuonSpectrometer','MuonSpectrometer-07','WCRO','WCRO-07');
039 insert into WCRO_data (
040 WCRO_data_id,
041 VERS,
042 JSTA,
043 NUM,
044 HEIGHTNESS,
045 LARGENESS,
046 THICKNESS
047 ) values (    0,
048      7,     1,     1,    17.0000,     6.0000,     0.6000
049 );
050 insert into WCRO_data2tag values ('WCRO-07',    0);
051 insert into WCRO_data (
052 WCRO_data_id,
053 VERS,
054 JSTA,
055 NUM,
056 HEIGHTNESS,
057 LARGENESS,
058 THICKNESS
059 ) values (    1,
060      7,     2,     1,    31.7000,     6.0000,     0.6000
061 );
062 insert into WCRO_data2tag values ('WCRO-07',    1);
063 insert into WCRO_data (
064 WCRO_data_id,
065 VERS,
066 JSTA,
067 NUM,
068 HEIGHTNESS,
069 LARGENESS,
070 THICKNESS
071 ) values (    2,
072      7,     3,     1,     5.5000,     0.0000,     0.0000
073 );
074 insert into WCRO_data2tag values ('WCRO-07',    2);
075 insert into WCRO_data (
076 WCRO_data_id,
077 VERS,
078 JSTA,
079 NUM,
080 HEIGHTNESS,
081 LARGENESS,
082 THICKNESS
083 ) values (    3,
084      7,     4,     1,    12.1000,     6.0000,     0.6000
085 );
086 insert into WCRO_data2tag values ('WCRO-07',    3);
087 
088 comment on column WCRO_data.WCRO_data_id is 'Unique identifier';
089 comment on column WCRO_data.VERS       is 'VERSION                                         ';
090 comment on column WCRO_data.JSTA       is 'INDEX                                           ';
091 comment on column WCRO_data.NUM        is 'NUMBER OF OBJECTS                               ';
092 comment on column WCRO_data.HEIGHTNESS is 'HEIGHT                                          ';
093 comment on column WCRO_data.LARGENESS  is 'T-SHAPE LARGENESS                               ';
094 comment on column WCRO_data.THICKNESS  is 'T-SHAPE THICKNESS                               ';

source navigation ] diff markup ] identifier search ] general search ]

Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems
This page was automatically generated by the LXR engine. Valid HTML 4.01!