Nov 16, 2004 #1 Bell1991 Programmer Joined Aug 20, 2003 Messages 386 Location US Is it possible to insert a record into a different database using a stored procedure?
Nov 16, 2004 #2 hmckillop Programmer Joined Oct 30, 2001 Messages 1,540 Location GB use syntax as shown below and it will allow inserts into other databases from a stored proc. Code: insert into myotherdatabase..mytable (field1) values('a') obviously you need the correct fields etc. "I'm living so far beyond my income that we may almost be said to be living apart Upvote 0 Downvote
use syntax as shown below and it will allow inserts into other databases from a stored proc. Code: insert into myotherdatabase..mytable (field1) values('a') obviously you need the correct fields etc. "I'm living so far beyond my income that we may almost be said to be living apart