See \\Data\Projects\Tukwila\544\Execution for QUERY.EXE.
The Tukwila execution engine runs on Windows NT machines only. From the control window, you can open query plan files from disk and change the configuration settings. It is highly recommended that you restart the execution engine after making configuration changes.
See \\Data\Projects\Tukwila\544\Wrappers for the .class files.
java
ConsoleQuery
plus (optionally) the following parameters
<N ID=id OP=wrapper TIMEOUT=timeInms CARD=expectedCard>
<HOST>your machine hostname: your wrapper's port</HOST>
<SERVICE>DSN name.database name</SERVICE>
<QUERY>some SQL query</QUERY>
See \\Data\Projects\Tukwila\544\DataGen for the program and source.
The data source generator is not particularly sophisticated, but will take an SQL query or a comma-delimited text file and randomly sample some percentage of the file; it also allows the creation of disjoint peer-level data sources.
Instructions:
java DataGen
dsn_name delimiter_string
(you will need JDK 1.1). By default, delimiter_string is a comma.outFile: ratio ( infile|"query" [- previousDefn [- previousDefn ... ]])
myout: 0.3 ( "select * from tpc.order" )
--
myout = 30% coverage of query
otherout: 0.2 ( myout )
-- otherout = 20% coverage of myout
mysecondout:
0.3 ("select * from tpc.order" - myout)
mythirdout: 0.3 ("select * from tpc.order" - myout - mysecondout)
but not
myfourthout: 0.2 ("select * from tpc.order" - otherout)