Subject RE: [ib-support] Initializing arrays
Author Leyne, Sean
> I have a table with an array declared as:
>
> Create Table xxx(
> ...
> HoursArray Float [1:50,1:5],
> ...);

I've never used arrays, nor do I know of many people who have, but have
you tried using the DEFAULT syntax, as in:

Create Table xxx(
...
HoursArray Float [1:50,1:5] Default 0,
...);


Sean