vote up 1 vote down star

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.

Is there a better way to replicate between different database systems?

Thank you for any help.

flag

20% accept rate

1 Answer

vote up 2 vote down

Adding a Linked Server should solve your problem. You have a choice of providers, including ODBC.

http://msdn.microsoft.com/en-us/library/ms188279.aspx

link|flag
Thank you. Also, can't you use .net languages in SP's now? Can they use ODBC? – johnny May 11 at 14:01
You can. I've been using it successfully with the software I write in my day job. If you're interested, check out the SQLCLR: msdn.microsoft.com/en-us/library/… – hunterjrj May 12 at 17:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.