Subject Re: [firebird-support] FB 1.5 Bug?
Author Helen Borrie
At 09:28 AM 27/05/2004 +0800, you wrote:
>Hi guys
>
>I have a view where I want to drop it, but an error message appears
>saying it can't perform this action cause there is 1 dependencies.
>Using the IBExpert, I don't see any object that depends on that view? Is
>there something wrong?

Why not just query the dependencies yourself?
Select * from rdb$dependencies
where rdb$depended_upon_name = 'MyView';

/heLen