create trigger trgInsert on dbo.Account
after insert
as
Insert into FlowDB.dbo.CustomerInfo(no,name)
select no,name from inserted
you need to create this trigger in flexDB database. since the question was only about inserts, the code will only capture inserts happening on the Account table.
Hope it Helps!!