#!/bin/sh
i=0
while [ $i -lt 60000 ]
do
	echo "insert into t1 values ( $i, 'XXXXXXX');"
        i=`expr $i + 1`
done
 
