very good, thanks
At 09:58 PM 2/13/2005, you wrote:
On Sun, 2005-02-13 at 21:40 -0800, Jim Dodgen wrote:
> attach database bar as ref;
> create table ref.table_field
>                (
>                   name varchar(255),
>                   nbr  varchar(255)
>                );
> create unique index ref.table_field_name on ref.table_field (name);

Make that last line:

  create unique index ref.table_field_name
    on table_field(name);

In other words, omit the "ref." from the able name
when creating the index.

You should have gotten an error.  That will be corrected.
--
D. Richard Hipp <[EMAIL PROTECTED]>



Reply via email to