Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Remote Call insert local table from exec of a remote SP

Status
Not open for further replies.

JayKusch

MIS
Oct 30, 2001
3,199
US
OK .. brain dead for a Friday - lol

So I have a server where I am "trying" to call a remote stored proc to load a local table.

Somthing like ...

Code:
INSERT INTO Admin.dbo.MyTable (
  Col1, 
  Col2	)

	EXEC MyRemoteDB.dbo.MySP

Now Admin.dbo.MyTable is the local table and MyRemoteDB.dbo.MySP is the remote SP I want to execute to insert into MyTable.

I want to do this without the use of a dedicated linked server since I have 100+ servers I need to run this against.

Need something like what a OPENROWSET would provide.

Thanks!

Thanks

J. Kusch
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top