|
![]() |
#1 |
MCITP
|
![]()
Мне кажется что-то тут не о том речь идёт...
Цитата:
ORA-00955 name is already used by an existing object
Cause: An attempt was made to create a database object (such as a table, view, cluster, index, or synonym) that already exists. A user’s database objects must have distinct names. Action: Enter a unique name for the database object or modify or drop the existing object so it can be reused. А если бы проблема была в дублировании уникального значения в поле таблице, то при создании уникального индексы вы бы получили совсем другую ошибку: Цитата:
ORA-01452 cannot CREATE UNIQUE INDEX; duplicate keys found
Cause: A CREATE UNIQUE INDEX statement specified one or more columns that currently contain duplicate values. All values in the indexed columns must be unique by row to create a UNIQUE INDEX. Action: If the entries need not be unique, remove the keyword UNIQUE from the CREATE INDEX statement, then re-execute the statement. If the entries must be unique, as in a primary key, then remove duplicate values before creating the UNIQUE index.
__________________
Zhirenkov Vitaly |
|
![]() |
#2 |
MCITP
|
![]()
какая-то фантастика, похоже на баг какой-то со стороны аксапты...
а вы пробовали пересоздать эту таблицу? должно наверное помочь... а индекс этот на recid вы сами создаёте, или он создаётся автоматом потому что CreateRecIdIndex = Да или нет других индексов на таблице?можно ещё с этим попробовать поиграццо...
__________________
Zhirenkov Vitaly |
|