In orientdb exporting the class from json to excel - orientdb

Can anyone please tell me how to export data in the class (table) to excel format?I want to export all data from the class to excel?

Related

Copy data CSV PostgresSQL

I have csv file
CLASS 1;;;;;;
1010;74;14;56;6;5;3
1011;58;0;689;5;6;7
CLASS 2;;;;;;
1030;74;14;6;3;4;5
1031;58;0;689;6;5;4
CLASS 3;;;;;;
1030;74;14;4;1;2;3
1031;58;0;689;7;6;5
how can i import data in such a way that class 1, class 2 etc are different tables and numbers written after them are their fields. I mean import data from same file to different tables.
I tried this but it is not correct
"COPY openingBalance FROM 'D:\\test\\OSV.csv' CSV DELIMITER ';'"

Import a CSV or JSON file into MySQL

i have csv file converted to json format and was trying to import it in MySQL Workbench.
, however while browsing the image even if it was "(.json)" format it was not available to browse.
You used the wrong area in MySQL Workbench. This part of the admin section is used to import MySQL dumps, text files that contain SQL statements.
What you need instead is the import wizard:
which allows you to select a CSV or JSON file to be imported.

How to create star schema from csv files of different schema using ETL talend

I need to apply ETL process on many csv files having different schema, to load them at the end into a single star schema.
How can I do that using talend ETL tool ?
Firstly import the csv file into talend. Create a job tom move csv data to database. In output component (if oracle tOracleOutput) you have an option to create table if it does not exists. Like wise you can import all the csv files and create schema in the database.
Thank you

Import a CSV file into MySQL workbench into a new table dynamically

I can import a CSV file data into a existing table in MySQL Workbench, using Load data infile , but what if I have a file with 25 columns, it becomes a pain to create a structure for such tables before importing.
Is there a way to import CSV files without creating the structure, like proc import in SAS?
Yes, there is. Try the new 6.3 release (currently in RC, soon to be GA) which comes with a new table data import/export feature that supports CSV and JSON data. It creates the table on the fly during import.

Importing data to SQL from Excel using Talend

I am trying to import data to SQL from Excel. I have created a successful connection with the database but while trying to retrieve the schema I am not getting my table, instead I am having the schema of the database (Type CATALOG).
How do I get the schema of the table to which I will export the Excel data?
I have refereed to this video to do the import.
http://www.youtube.com/watch?v=JDBYU9f1p-I
What you can use is tFileExcelSheetOutput, map what you need with tMap and send the to t[DB]Input.
http://www.talendbyexample.com/talend-tdbinput-reference.html