SQL Server 2008 stored procedure calling MATLAB
Is it possible to call a MATLAB command within a stored Procedure?, something like
EXEC(M开发者_高级运维ATLAB_COMMAND(Argument1,argument2))
Without any working experience concerning SQL Sever 2008, I would say no. Referring to the mysql documentation, a stored procedure is described as:
A stored routine is a set of SQL statements that can be stored in the server.
The idea is to store SQL queries on your SQL server.
You should proceed to other way round. Access your SQL Server from MATLAB, eventually calling stored procedures. All you need is a jdbc driver, leveraging MATLAB's Java scripting capabilities.
精彩评论