Can I update a non-sql server database from within a sql server stored procedure? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:00:55Zhttp://stackoverflow.com/feeds/question/841783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/841783/can-i-update-a-non-sql-server-database-from-within-a-sql-server-stored-procedure1Can I update a non-sql server database from within a sql server stored procedure?johnny2009-05-08T21:03:53Z2009-05-08T21:21:53Z
<p>Is it possible to update a different ODBC database from withing a SQL Server Stored Procedure. For example, say I have Access, MySQL, etc. I update my SQL Server database and I want the stored procedure to update the other ODBC database. Kind of like a poor man's replication.</p>
<p>Is there a better way to replicate between different database systems?</p>
<p>Thank you for any help.</p>
http://stackoverflow.com/questions/841783/can-i-update-a-non-sql-server-database-from-within-a-sql-server-stored-procedure/841858#8418582Answer by hunterjrj for Can I update a non-sql server database from within a sql server stored procedure?hunterjrj2009-05-08T21:21:53Z2009-05-08T21:21:53Z<p>Adding a Linked Server should solve your problem. You have a choice of providers, including ODBC.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms188279.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms188279.aspx</a></p>