views:

44

answers:

1

creating large database 10gb for informix

+1  A: 

As long as you ensure you have enough disk space allocated in the chunks for the dbspaces associated with the instance, there is no particular problem with creating a medium size database such as a 10 GB one. These days, a 'large database' really doesn't start until you reach 100 GB; arguably, not until you reach 1 TB. 10 GB is not small, but it isn't all that large.

Where will your data come from? There are a large number of possible loading strategies, depending on data sources and version of IDS. Note that the very latest versions of IDS (11.50.xC6 or later) include 'external tables' as an extra (and extremely fast) loading mechanism, and the MERGE statement combined with external tables provides an 'UPSERT' - update or insert (or delete) - mechanism too.

Jonathan Leffler