dnet-hadoop/dhp-workflows/dhp-indicators/src/main/resources/eu/dnetlib/dhp/oa/graph/indicators/oozie_app/scripts/Step1.sql

14 lines
265 B
MySQL
Raw Normal View History

2023-01-05 09:37:33 +01:00
select * from SOURCE.datasource_oids
2022-11-03 14:55:27 +01:00
limit 10;
2023-01-05 09:37:33 +01:00
--CREATE database TARGET;
2022-11-03 14:55:27 +01:00
2023-01-05 09:37:33 +01:00
create table TARGET.tmp_result stored as parquet as
select * from SOURCE.result
2022-11-03 14:55:27 +01:00
limit 10;
2023-01-05 09:37:33 +01:00
create table TARGET.tmp_datasource stored as parquet as
select * from SOURCE.datasource
2022-11-03 14:55:27 +01:00
limit 10;