Sybernet / Supplied Procedures Reference
Release 3.00
Oct 14, 2002
backwards forwards

HTTP.SP_DEFNCOPY

This procedure describes the data definition (DDL) of an object. This procedure is actually called from other routines and should be considered as for internal use only.

Syntax

Procedure SP_DEFNCOPY
(
    BUTTON                        VARCHAR2
,   OWNER                         VARCHAR2
,   NAME                          VARCHAR2
,   TYPE                          VARCHAR2
)   ;

Parameters

Parameter Description
button
 
Should be passed the string 'POPULATE'
owner
 
The owner of this object.
name
 
The name of this object.
type
 
The type of this object.

Example

The following example illustrates how to call sp_defncopy.

begin
    http.sp_defncopy
    (
        button	=> 'POPULATE'
    ,	owner	=> 'HTTP'
    ,	name	=> 'CRON'
    ,	type	=> 'TABLE'
    )   ;
end;



Sybernet is a trademark of SRI International.
Copyright © 1996-2009 SRI International. All Rights Reserved.
Denis D. Workman / http://Sybernet.sri.com/