Expand Minimize
This topic has not yet been rated - Rate this topic

5.140 ObjExists

procedure ObjExists(dsName: DSName): boolean

The ObjExists procedure returns true if dsName identifies an object in some NC replica hosted by the server.

rt: DSName
rt:= select one v from all where v = dsName
if (rt = null) then
  return false
else
  return true
endif
 
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.