#!/bin/sh # example4-0.sh # generate a table with 1000 rows for table called keys with 2 columns and let # oragen autoname the columns # first column of number which is unique of max length 100 # second column of varchar2 of length 30 echo "redirecting output to keys.sql" oragen --gen-table --rows 1000 --table-name keys \ --number --unique --length 100 -c \ --varchar2 --unique --length 30 -c \ > keys.sql