Subject | RE: [ib-support] View or Stored Procedure |
---|---|
Author | Gerhardus Geldenhuis |
Post date | 2001-10-12T07:04:44Z |
Yes that is so. IB does however allow triggers to be created but
they dont fire. I created all 6 posible triggers. It would be
nice if FB told you on creation that you cant create a trigger
on a read-only table.
Thanks for the answers I learned something new.
Groete
Gerhardus
(
CODE,
QTYAVAILABLE,
BRANCHNAME
) AS
Select CODE, SUM(AMOUNT), BRANCH
FROM ITEMS
GROUP BY CODE, Branch
they dont fire. I created all 6 posible triggers. It would be
nice if FB told you on creation that you cant create a trigger
on a read-only table.
Thanks for the answers I learned something new.
Groete
Gerhardus
>CREATE VIEW ITEMVIEW3
> I don't think you can have an updateable view that is based on an
> aggregation.
>
> regards,
> Helen
>
(
CODE,
QTYAVAILABLE,
BRANCHNAME
) AS
Select CODE, SUM(AMOUNT), BRANCH
FROM ITEMS
GROUP BY CODE, Branch