Insert data from excel to a SQl database table

4 views (last 30 days)
Hi,
I have many rows of data in an excel and I can read the excel data into a Matlab table. The table mirror a table in a SQl database table. How to import the entire Matlab table into the SQL table. I don't have database toolbox; but I have the connection conn.
Thanks in advance for all help.
Jennifer
  1 Comment
JFz
JFz on 20 Oct 2016
I will append the excel data into an existing table and will have repeat every day.

Sign in to comment.

Accepted Answer

Keerthana Chivukula
Keerthana Chivukula on 31 Oct 2016
I would like to know if there is any reason why you want to use MATLAB to read data and write into database?
If there is any processing involved in MATLAB, you can use "readtable" function to read the data into MATLAB from EXCEL, process it in MATLAB and then use "writetable" function to write the data into any file format (CSV/ TXT/XLS etc). Once you have the processed data in a file, you can use Import Wizard in SQL Server Management Studio or any application such as JAVA which can read data from that file and insert into SQL database.
Refer to the link below to 'readtable' function: https://www.mathworks.com/help/matlab/ref/readtable.html
Refer to the link below to 'writetable' function: http://www.mathworks.com/help/matlab/ref/writetable.html
However, if you would like to you use MATLAB to communicate with Database directly, you will need to install Database Toolbox.
For more information about the Database Toolbox, refer to the link below: https://www.mathworks.com/help/database/index.html
  1 Comment
JFz
JFz on 1 Nov 2016
Thank you. The reason I want to use Matlab to insert into SQL database is because I try to skip the import wizard.

Sign in to comment.

More Answers (0)

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!