Dear Steve,
First export the catalog objects (File->Export->Expand SAP HANA Studio ->Catalog Objects)
Choose schema _SYS_BIC, _SYS_BI where output tables or column views are created along with your schema which contains tables to a default location in client server, for example '/usr/sap/HAN/HDBxx/work' .
Now you can check all the objects by using SQL
IMPORT SCAN '/usr/sap/HAN/HDBxx/work';
and then use SQL
SELECT * FROM #IMPORT_SCAN_RESULT;
which display all your objects in above temporary table #IMPORT_SCAN_RESULT.
If this lists contains all of your required objects then you can import to the location you require.
Regards
Raj