#!/bin/sh

# path to the cego executable
CEGO=cego
POOLNUMSEG=1
POOLSEGSIZE=3000

if [ $# -ne 2 ]
then
    echo "Usage : $0 <dbxml> <tableset>"
    exit 1
fi

$CEGO --mode=daemon --dbxml=$1 --poolnumseg=$POOLNUMSEG --poolsegsize=$POOLSEGSIZE --tableset=$2

