IOMOPERATE Procedure

Example 14: DISCONNECT Example

DISCONNECT Example

The follow example shows how using DISCONNECT enables you to embed several commands to multiple servers in one PROC IOMOPERATE statement:
proc iomoperate;

	connect uri=”iom://myserver01.example.com:5555;Bridge”;
	list defined servers;

	disconnect;

	connect uri=”iom://myserver02.example.com:1111;Bridge”;
	list attrs; 

quit;