Changeset 9047


Ignore:
Timestamp:
07/28/08 14:08:53 (16 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/datacenter/scripts
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/scripts/buildsequenceentries

    r8482 r9047  
    7676   setstatus "start" >> $scriptlog 2>&1
    7777
    78    check1=`root -q -b $macrospath/buildsequenceentries.C+\("\"$date\""\,"\"$datapath\""\,"\"$sequpath\""\,kFALSE\) | tee $buildsequentrieslog | intgrep`
     78   check1=`root -q -b $macrospath/buildsequenceentries.C+\("\"$date\""\,"\"$datapath\""\,"\"$sequpath\""\,1\,kFALSE\) | tee $buildsequentrieslog | intgrep`
    7979
    8080   case $check1 in
  • trunk/MagicSoft/Mars/datacenter/scripts/dbchk

    r8858 r9047  
    9292   then
    9393      echo "No sequence file: $file" >> $scriptlog 2>&1
     94      printprocesslog "ERROR No sequence file: $file"
    9495      continue
    9596   fi
     
    99100   then
    100101      echo "Sequence-File $sequence exist but it is not in Sequences." >> $scriptlog 2>&1
     102      printprocesslog "ERROR Sequence-File $sequence exists, but it is not in Sequences (DB)."
    101103      continue
    102104   fi
     
    112114   then
    113115      echo "Invalid directory: $dir" >> $scriptlog 2>&1
     116      printprocesslog "ERROR Invalid directory: $dir"
    114117      continue
    115118   fi
     
    119122   then
    120123      echo "$dir exists but no corresponding sequence in Sequences." >> $scriptlog 2>&1
     124      printprocesslog "ERROR $dir exists, but no corresponding sequence in Sequences (DB)."
    121125      continue
    122126   fi
     
    132136   then
    133137      echo "Invalid directory: $dir" >> $scriptlog 2>&1
     138      printprocesslog "ERROR Invalid directory: $dir"
    134139      continue
    135140   fi
     
    139144   then
    140145      echo "$dir exists but no corresponding sequence in Sequences." >> $scriptlog 2>&1
     146      printprocesslog "ERROR $dir exists, but no corresponding sequence in Sequences (DB)."
    141147      continue
    142148   fi
     
    152158   then
    153159      echo "Sequence-File for $sequence not found but in db." >> $scriptlog 2>&1
     160      printprocesslog "ERROR Sequence-File for $sequence not found but in DB."
    154161   fi
    155162done
     
    164171   then
    165172      echo "Sequence $sequence exists in Sequences but not in RunData." >> $scriptlog 2>&1
     173      printprocesslog "Sequence $sequence exists in Sequences but not in RunData (DB)."
    166174      continue
    167175   fi
     
    177185   then
    178186      echo "Sequence $sequence exists in RunData but not in Sequences." >> $scriptlog 2>&1
     187      printprocesslog "Sequence $sequence exists in RunData but not in Sequences (DB)."
    179188      continue
    180189   fi
  • trunk/MagicSoft/Mars/datacenter/scripts/doexclusions

    r8482 r9047  
    7676   setstatus "start" >> $scriptlog 2>&1
    7777
    78    check1=`root -q -b $macrospath/doexclusions.C+\("\"$date\""\) | tee $doexclusionslog | intgrep`
     78   check1=`root -q -b $macrospath/doexclusions.C+\("\"$date\""\,1\,kFALSE\) | tee $doexclusionslog | intgrep`
    7979
    8080   case $check1 in
  • trunk/MagicSoft/Mars/datacenter/scripts/sourcefile

    r8778 r9047  
    283283   query=$query" isnull($column) "
    284284   query=$query" and isnull(fStartTime) and isnull(fFailedTime) and isnull(fFailedCode) and isnull(fFailedCodeAdd) and isnull(fReturnCode) "
    285    query=$query" order by $primary desc "
     285   query=$query" order by fPriority desc "
    286286#   echo " QUERY: "$query
    287287   if ! process=`mysql -s -u $us --password=$pw --host=vela $db -e " $query "`
     
    328328   query=$query" isnull($column) "
    329329   query=$query" and isnull(fStartTime) and isnull(fFailedTime) and isnull(fFailedCode) and isnull(fFailedCodeAdd) and isnull(fReturnCode) "
    330    query=$query" order by $primary desc "
     330   query=$query" order by fPriority desc "
    331331   query=$query" limit 0, 1 "
    332332#   echo " QUERY: "$query
  • trunk/MagicSoft/Mars/datacenter/scripts/writesequencefiles

    r8482 r9047  
    8181   setstatus "start" >> $scriptlog 2>&1
    8282
    83    check2=`root -q -b $macrospath/writesequencefile.C+\($sequence\,"\"$sequpath\""\) | tee $writesequencefilelog | intgrep`
     83   check2=`root -q -b $macrospath/writesequencefile.C\($sequence\,1\,"\"$sequpath\""\) | tee $writesequencefilelog | intgrep`
    8484   case $check2 in
    8585      1)   echo " check2=$check2 -> everything ok " >> $scriptlog 2>&1
Note: See TracChangeset for help on using the changeset viewer.