Can I update a non-sql server database from within a sql server stored procedure? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:00:55Z http://stackoverflow.com/feeds/question/841783 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/841783/can-i-update-a-non-sql-server-database-from-within-a-sql-server-stored-procedure 1 Can I update a non-sql server database from within a sql server stored procedure? johnny 2009-05-08T21:03:53Z 2009-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#841858 2 Answer by hunterjrj for Can I update a non-sql server database from within a sql server stored procedure? hunterjrj 2009-05-08T21:21:53Z 2009-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>