Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-12-19 09:21 AM
Hello,
Is there standard functionality to import excel or csv files into a SQL Datatable? I can see the SQL objects that can be used for execution of queries and extraction of tables into collections, but I do not seem to find any functionality towards actually importing data into SQL.
Is anyone familiar with this?
Best,
Nanne
------------------------------
Nanne van der Wal
Advisor
EY
Europe/Amsterdam
------------------------------
Answered! Go to Answer.
1 BEST ANSWER
Helpful Answers
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-12-19 03:39 AM
There is no standard utility around direct inserts . However with little tweeking you can create it.
1- Check if table is created already?
2- if yes, go to next step, If no, then check if any key constraints are provided?, If yes, create the table with constraints (Create table query), and if no, then create a table without constraints.
3- If table is created already , verify santiy of data and use string manipulation to create the insert queries for each row,
4- run the insert queries and commit.
------------------------------
Vivek Goel
RPA Architect
Asia/Singapore
https://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------
1- Check if table is created already?
2- if yes, go to next step, If no, then check if any key constraints are provided?, If yes, create the table with constraints (Create table query), and if no, then create a table without constraints.
3- If table is created already , verify santiy of data and use string manipulation to create the insert queries for each row,
4- run the insert queries and commit.
------------------------------
Vivek Goel
RPA Architect
Asia/Singapore
https://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-12-19 03:39 AM
There is no standard utility around direct inserts . However with little tweeking you can create it.
1- Check if table is created already?
2- if yes, go to next step, If no, then check if any key constraints are provided?, If yes, create the table with constraints (Create table query), and if no, then create a table without constraints.
3- If table is created already , verify santiy of data and use string manipulation to create the insert queries for each row,
4- run the insert queries and commit.
------------------------------
Vivek Goel
RPA Architect
Asia/Singapore
https://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------
1- Check if table is created already?
2- if yes, go to next step, If no, then check if any key constraints are provided?, If yes, create the table with constraints (Create table query), and if no, then create a table without constraints.
3- If table is created already , verify santiy of data and use string manipulation to create the insert queries for each row,
4- run the insert queries and commit.
------------------------------
Vivek Goel
RPA Architect
Asia/Singapore
https://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-09-20 07:49 PM
Were you able to find an efficient method to achieve this?
------------------------------
Aysha M
------------------------------
------------------------------
Aysha M
------------------------------
