|
Sybernet / Supplied Functions Reference
Release 3.00 Oct 14, 2002 |
|
This function returns the owner corresponding to a OBJECT_ID. Although this function does not exist in Sybase, it is still quite useful.
FUNCTION OBJECT_OWNER
(
OBJECTID NUMBER
)
RETURN VARCHAR2;
| Parameter | Description |
|---|---|
objectid |
The object_id of this object. |
The owner of this object or NULL if the object does not exist.
The following example illustrates how to retrieve the owner of an object:
select http.object_owner(http.object_id('HTTP.HTTP_REGISTER')) from dual;
-------------------------------------------
HTTP