Re: Loading multiple .df files

vijayakiran.m

New Member
Hi Team,

can we load multiple .df files into a database(version 9.1d)?
if yes,
Can u say me how to load the multiple .df files.

Regards,
vijaya
 

Stefan

Well-Known Member
... in the right order.

And if you get tired of loading them manually you could consider automating the task by calling the load routine repeatedly. See prodict/load_df.p. Be sure to set the dictdb alias to the database you want updated before calling it.

Code:
RUN prodict/load_df.p ( "one.df" ).
RUN prodict/load_df.p ( "two.df" ).
 
Top