DBA Data[Home] [Help]

PACKAGE: SYS.DBMS_DNFS

Source


1 package dbms_dnfs AUTHID CURRENT_USER AS
2 
3 -- DE-HEAD  <- tell SED where to cut when generating fixed package
4 
5 
6   -- Renames files in the dNFS test database to the new name. The new file
7   -- points to the original file for reads.
8   --
9   -- srcfile - source data file name in the control file
10   -- destfile - destination file
11   --
12   PROCEDURE clonedb_renamefile (srcfile  IN varchar2,
13                                 destfile  IN varchar2
14                                 );
15 
16 -------------------------------------------------------------------------------
17 
18 pragma TIMESTAMP('2010-07-08:12:00:00');
19 
20 -------------------------------------------------------------------------------
21 
22 
23 end;
24 
25 -- CUT_HERE    <- tell sed where to chop off the rest