Template:SQWareProduction sqwgen IndicatorsVar.cfg content: Difference between revisions
Jump to navigation
Jump to search
m Updated by BatchUser |
m Updated by BatchUser |
||
| Line 4: | Line 4: | ||
#!/bin/ksh | #!/bin/ksh | ||
################################################################### | ################################################################### | ||
# SQWareProduction Generic module of dbSQWare | # SQWareProduction Generic module of dbSQWare | ||
# | # | ||
# dbSQWare is distributed in the hope that it will be useful, | # dbSQWare is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# | # CGU/CGA for more details. | ||
# | # | ||
# You should have received a copy of the | # You should have received a copy of the CGU/CGA | ||
# along with this program. If not, see <http://www. | # along with this program. If not, see <http://www.dbsqware.com/licenses/>. | ||
# | # | ||
# For information : contact@dbsqware.com or www.dbsqware.com | # For information : contact@dbsqware.com or www.dbsqware.com | ||
################################################################### | ################################################################### | ||
## @Synopsis Generic global var for indicators scripts | ## @Synopsis Generic global var for indicators scripts | ||
## @Copyright Copyright 2010- | ## @Copyright Copyright 2010-2018, dbSQWare (www.dbsqware.com) | ||
if [ "$gvsqw_Debug" != "" ] | if [ "$gvsqw_Debug" != "" ] | ||
Revision as of 18:36, 22 December 2017
File content:
#!/bin/ksh
###################################################################
# SQWareProduction Generic module of dbSQWare
#
# dbSQWare is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# CGU/CGA for more details.
#
# You should have received a copy of the CGU/CGA
# along with this program. If not, see <http://www.dbsqware.com/licenses/>.
#
# For information : contact@dbsqware.com or www.dbsqware.com
###################################################################
## @Synopsis Generic global var for indicators scripts
## @Copyright Copyright 2010-2018, dbSQWare (www.dbsqware.com)
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $gvsqw_GenPath/../../generic/etc/sqwgen_IndicatorsVar.cfg"
fi
#for Check backups
if [ "$(date +'%a')" = "Mon" ]
then
export gvsqw_NbDaysFull=3
else
export gvsqw_NbDaysFull=2
fi
#for purge indicators tables (in number of month)
export gvsqw_PurgeLongTerm=24
export gvsqw_PurgeMediumTerm=4
export gvsqw_PurgeShortTerm=2
###################################################################################################
###################################################################################################
# Source generic custom
eval lvsqw_Tmp="\$gvsqw_${gvsqw_RdbmsTrigram}Bin"
if [ -r $gvsqw_GenPath/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $gvsqw_GenPath/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg"
fi
. $gvsqw_GenPath/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg
elif [ -r $lvsqw_Tmp/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $lvsqw_Tmp/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg"
fi
. $lvsqw_Tmp/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg
elif [ -r $(dirname $0)/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $(dirname $0)/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg"
fi
. $(dirname $0)/../../generic/etc_cust/sqwgen_IndicatorsVar.cfg
fi
# For not normed environnement
if [ -r $HOME/sqwConfig/sqwgen_IndicatorsVar.cfg ]
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $HOME/sqwConfig/sqwgen_IndicatorsVar.cfg"
fi
. $HOME/sqwConfig/sqwgen_IndicatorsVar.cfg
fi
if [ "$gvsqw_RdbmsType" != "generic" ]
then
# Source rdbms global
if [ -r $gvsqw_GenPath/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $gvsqw_GenPath/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg"
fi
. $gvsqw_GenPath/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg
elif [ -r $lvsqw_Tmp/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $lvsqw_Tmp/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg"
fi
. $lvsqw_Tmp/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg
elif [ -r $(dirname $0)/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $(dirname $0)/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg"
fi
. $(dirname $0)/../../$gvsqw_RdbmsType/etc/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg
fi
# Source rdbms custom
if [ -r $gvsqw_GenPath/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $gvsqw_GenPath/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg"
fi
. $gvsqw_GenPath/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg
elif [ -r $lvsqw_Tmp/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $lvsqw_Tmp/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg"
fi
. $lvsqw_Tmp/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg
elif [ -r $(dirname $0)/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg ]
then
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $(dirname $0)/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg"
fi
. $(dirname $0)/../../$gvsqw_RdbmsType/etc_cust/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg
fi
# For not normed environnement
if [ -r $HOME/sqwConfig/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg ]
if [ "$gvsqw_Debug" != "" ]
then
echo "sourcing cfg file : $HOME/sqwConfig/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg"
fi
. $HOME/sqwConfig/sqw${gvsqw_RdbmsRoot}_IndicatorsVar.cfg
fi
fi