Yes, there is.
Here is an example using CLI for exporting data:
db2 export to my_exprt.ixf of ixf select * from owner.table_name
To import the data into a table, use "import":
db2 "import from my_exprt.ixf of ixf insert into other.table_name"
The db2look command is useful...