#!/bin/sh

# path to the cego executable
CEGO=cego
POOLSIZE=3000

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

$CEGO --mode=daemon --dbxml=$1 --poolsize=$POOLSIZE --tableset=$2

