Hi all,
I'm using the onpladm tool to unload some million rows of a table and load them back to a new one. From the original table I need to get a selection of rows, that's why I'm defining a select query
Code:
onpladm create object -F query_file
that's being created successfully (I'm listing the queries and I can see it)
I've also created a device
Code:
onpladm create object -F device_file
which was also successful
When I'm trying to create the job I get an error
Syntax error in interface file line :5
Create object FASTUNLOADJOB failed!
I use the following spec file
Code:
BEGIN OBJECT FASTUNLOADJOB jobunload
# Compulsory Attributes
PROJECT rech_proj
DEVICE dev_file
DATABASE dblive
QUERY query_file
# Optional attributes
SERVER db_srvr
END OBJECT
the database is the one the table I'm trying to unload belongs to and the server the same as $INFORMIXSERVER. The device and query are the same as listed when using onpladm list command. Does anyone have a clue what may I be missing?
Thanks!