Maxmix
Member³
Hi,
I assigned the comment to my view, using "comment" statement, and now want to propagate it to other db.
I selected my view in Compare User Objects window, and clicked Compare. ExamDiff sees the difference, but cannot apply it correctly to destination db, the error is ORA-00911: Invalid character.
This is what is displayed on 'Differences' tab:
It looks like PlsqlDev sends these two statements as single statement. On top of that, 'create or replace view' is redundant, because view's definitions are identical on both db's.
Ups, all Ciryllic characters have turned into some ... "entities"
I assigned the comment to my view, using "comment" statement, and now want to propagate it to other db.
I selected my view in Compare User Objects window, and clicked Compare. ExamDiff sees the difference, but cannot apply it correctly to destination db, the error is ORA-00911: Invalid character.
This is what is displayed on 'Differences' tab:
--------------------------------------------------
-- Changed view paycal_items_avail_by_co_view --
--------------------------------------------------
create or replace view paycal_items_avail_by_co_view as
select
гсб_дата_нач as period,
стб_ств_код as item_code,
translate(прих_расх,'+-','CD') as oper_type,
гсб_слж_код as gsb_co_code
from b_BUDGET_REPORT_PURE_VIEW t
where t.стб_сбд_код=3 and бюд_область='CO_SCOPE'
and (стб_пкззс_сумма+стб_пкзнд_сумма+стб_тпзс_сумма+стб_тпнд_сумма)!=0;
comment on table PAYCAL_ITEMS_AVAIL_BY_CO_VIEW is 'Статьи-ЦО, которые можно использовать при формировании ТПК (которые имеют сумму в бюджете), по периодам.';
It looks like PlsqlDev sends these two statements as single statement. On top of that, 'create or replace view' is redundant, because view's definitions are identical on both db's.
Ups, all Ciryllic characters have turned into some ... "entities"
Last edited: