Subject [firebird-support] Re: Database Server Error:unsuccessful metadata update cannot delete DOMAIN RDB$1749
Author Svein Erling Tysvær
> > karolbieniaszewski wrote:
> > > how can i check what dependicies exists on field listed in
> > > RDB$FIELDS?
> > >
> > > SELECT *
> > > FROM RDB$FIELDS a
> > > WHERE
> > > a.RDB$FIELD_NAME like 'RDB$1749%'
> > >
> > > result me 1 record
> > > but
> > >
> > > SELECT *
> > > FROM RDB$RELATION_FIELDS a
> > > where
> > > a.RDB$FIELD_SOURCE like 'RDB$1749%'
> > >
> > > return 0 records
> >
> > Maybe it's a stored procedure parameter?
> >
> > --
> > Milan Babuskov
>
> I check this and this is output parameter for my stored procedure
> but this procedure is not used in any object in database - only is
> executed by client application
>
>then how can i have dependencies on this parameter??

Did you drop or alter the stored procedure? I would expect the stored procedure to depend on the domain of its output parameter to be defined.

HTH,
Set