With Mail & Deploy you can add rows to your SQL Table using the EXECUTE CODE action in a Task. In this example, we'll demonstrate how easy it is to do this.
Datasource definition
Task definition
EXECUTE CODE definition
and CODE
EvaluateSqlDatasourceExpression ("xxx.xxx.xxx.xxx\SQLEXPRESS", "insert into Status (id, status) values (4,1)", 0)
another example, this time, using dynamic expressions could be
EvaluateSqlDatasourceExpression ("xxx.xxx.xxx.xxx\SQLEXPRESS", "insert into Status (id, status) values (" & [TaskParameter].[id] & "," & [TaskParameter].[Status] &")", 0)
It is possible to run any queries as long as the user defined in the credentials' Datasource has permissions to run them.