Description
A persistent, database-wide, unique identifier for this McDBNode.
-
Property type
-
A String value.
-
Syntax
-
object.ID([IncludeDBName])
The ID Property syntax has these parts: |
| object | An expression evaluating to an object of type McDBNode. | | IncludeDBName | Optional. A Boolean value. A Boolean indicating whether the Id should include the McDBDatabase.Name identifier for this McDBNode. When included, this information makes the McDBNode.Id globally unique among all McDBDatabases.
| Remarks
The Id of an McDBNode is persistent, not reused, and guaranteed unique within a database (if IncludeDBName is False) or globally (if IncludeDBName is True). McDBNodes may be retieved by Id using either the McDBNodes.Item() method, McDBDatabase.RetrieveNode method, or the McDBDatabases.RetrieveNode method.
Notes
Ids are of the form ([<DatabaseServer>:<DatabaseLogicalName>|]Id).
|