DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: How to call procedure through a link

  1. #1
    Join Date
    Jan 2001
    Posts
    515
    How do you call a procedure through a database link?

  2. #2
    Join Date
    Jun 2000
    Posts
    417
    procedure@linkname(arg1, arg2)

    Say you have a simple addition procedure that returns the sum, and it's on another database with a link name db1.domain

    in pl/sql you could have

    result := additon@db1.domain(2, 2);

    you might need the schema too name depending on how the link is set up.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width