Yes.

To transfer all the DOS forms from one database to another.  CAUTION the destination 
database must have no forms with the same names as the source database forms.

CONNECT <database>
SET NULL -0-
OUTPUT <filename> -- I prefer something.FRM
UNLOAD DATA FOR SYS_FORMS
OUTPUT SCREEN

CONNECT <database2>
SET NULL -0-
INPUT <filename>

Transfer a single form (DOS) (for windows the table is SYS_FORMS2 and the system will 
create two files, the one you named and <formname.LOB.):
CONNECT <sourcedb>
SET NULL -0-
OUTPUT <filename>
UNLOAD DATA FOR SYS_FORMS WHERE SYS_FORM_NAME = 'whatever'
OUTPUT SCREEN

CONNECT <destinationdb>
SET NULL -0-
INPUT <filename>


[EMAIL PROTECTED] wrote:
>
> Using R:base 6.1a is it possible to merge forms from two different databases
> into one database? �Both databases contain the same tables that the forms
> are based on.
> 
__________________________________________________________________
Get your own FREE, personal Netscape Webmail account today at 
http://webmail.netscape.com/

Reply via email to