Jeff,
It will work fine, as long as you are careful to use only one UNLOAD
command for each OUTPUT command.
Very Bad:
OUTPUT JeffForm.DAT
UNLOAD DATA FOR Sys_Forms2 where #1 = 'form1'
UNLOAD DATA FOR Sys_Forms2 WHERE #1 = 'form2'
OUTPUT SCREEN
-- jeffform.LOB will contain only the blob data for form2
Good way:
OUTPUT JeffForm.DAT
UNLOAD DATA FOR Sys_Forms2 where #1 IN ('form1','form2')
OUTPUT SCREEN
Bill
On Sat, 21 Apr 2001 16:11:38 -0500, Jeff Ward wrote:
>This is kind of a dumb question, but can you replace the entire
sys_forms2
>table in windows by unloading data from a newer sys_forms2, deleting
the
>data at a client site and loading in another file. When you unload the
>entire sys_forms2 table the .LOB file is created, but I ask this
because I
>am not sure if deleting rows from sys_forms2 actually effects where
the
>windows reports data is stored?
>