On 2 January 2011 09:44, sujata patra <[email protected]> wrote: > Issue I am facing is an implementation issue..... > While refreshing the data or loading for the first time , Do I have to load > the whole tree data to all the tables ?
As you say, this is an implementation issue. That means you can handle it in whatever way works best for you. If you'd rather load the whole data in one go (and use a shared cache for all of the related tables), that's fine. It does mean that there is typically a slightly greater delay when loading the data, but has the advantage of ensuring consistent results from the constituent tables. Alternatively, you can implement each table independently, with its own cache, containing just the data that it needs. The thing to realise about (pseudo-)nested tables and other "complex" data structures, is that there's no need for an explicit link between the constituent tables. As long as the data that each table reports is coming from a shared source, then everything will work properly. Dave ------------------------------------------------------------------------------ Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise, upgrade to a full multi-node Oracle RAC database without downtime or disruption http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Net-snmp-coders mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
