I have a request to integrate Maximo with another system which use SQL Server DB, let's call it System 1 System 1, add or update person in database, i want to watch this change and create or update person record in Maximo accordingly, Any suggestions of how to implement this scenario? Also, i have heard about Integration Composer, can it help?
Thanks in advance,
You can create a CLR (trigger) appication in Visual Studios that listens to SQL Server database insert, update and delete
In VS Click start -> New Project -->Database --> SQL Server --> Visual c# CLR Database Project.
You can read some online tuturials to get started
link: http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/