Re: index already exists
- From: "Bjorn Abelli" <bjorn_abelli@xxxxxxxxxxxxxxxxxxxxx>
- Date: Fri, 22 Jul 2005 11:55:46 +0200
"Dave Brown" wrote...
> I've got a number of table in a hsqldb, i.e DIVES, LOCATIONS
>
> My Locations table as a column called Location_ID which is its primary
> key. The DIVES table also has a column called Location_ID, so I know at
> which location the Dives was at.
>
> I want to create an index of the Location_ID in the dives table but when I
> do a "CREATE INDEX Location_ID on DIVES(Location_ID)"
>
> I get back an "index already exists" error, it definately is NOT an index
> in the DIVES table. This is confusing me completely. I'm using
> DBVIsualizer as a GUI to maintain my HSQLDB tables.
>
> Can anyone shed any light on why I'm getting this message back ?
So what is the name of the index of Location_ID on LOCATIONS?
Probably Location_ID, isn't it?
I suggest you simply try:
"CREATE INDEX Dives_Location_ID on DIVES(Location_ID)"
i.e. give the index a different name than the existing one...
// Bjorn A
.
- Follow-Ups:
- Re: index already exists
- From: Dave Brown
- Re: index already exists
- References:
- index already exists
- From: Dave Brown
- index already exists
- Prev by Date: index already exists
- Next by Date: Re: index already exists
- Previous by thread: index already exists
- Next by thread: Re: index already exists
- Index(es):
Relevant Pages
|
|