Nov 16, 2004 #1 Bell1991 Programmer Aug 20, 2003 386 US Is it possible to insert a record into a different database using a stored procedure?
Nov 16, 2004 #2 hmckillop Programmer Oct 30, 2001 1,540 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