Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (5.8k points)

In my Azure ML experiment, I am using a writer to write data into a table in Azure SQL Database. However, I would like to truncate the data in that table before each insert. Is there any way that I can achieve this through the experiment itself? Any inbuilt module through which I can achieve this?

I know from SQL using triggers I can achieve this.

1 Answer

0 votes
by (9.6k points)

Try the Truncate command of SQL. 

Truncate table table_name;

Browse Categories

...