Returns the version of the DataFlux Data Management Server.
| Valid in: | DATA step, PROC SQL, and SCL |
identifies the host of the DataFlux Data Management Server. The host name can be a variable or a literal string. The literal string or the value of the variable is the URL of the server in single quotation marks.
https instead
of http (for example, https://myhost.unx.com).
| Interaction | If a zero-length string is entered for the host argument, then the value localhost is used. |
| Example | /* Localhost is used for the host */ dmsrvVer('', 21036); |
identifies the port through which the host communicates with the DataFlux Data Management Server.
| Interaction | If the value specified is less than or equal to 0, then port number 21036 is used with SOAP, or port number 21037 is used when using Wireline. |
| Example | /* Port 21036 or 21037 is used */ dmsrvVer('http://myhost.unx.com', 0); |
version=dmsrvVer ('http://myhost.unx.com', 19525);