View Issue Details

IDProjectCategoryView StatusLast Update
0001304Database Workbench v6Meta Data Compare & Migrationpublic2022-01-12 11:52
ReporterArno Brinkman Assigned ToMartijn Tonies  
PrioritynormalSeverityminorReproducibilityalways
Status acknowledgedResolutionopen 
Product Version5.1.6 
Summary0001304: Stored procedure dependency not taken into account while migrating from IB to IB/FB
DescriptionWhen creating a migrate script from InterBase (dialect 1) to InterBase/Firebird the stored procedures are not added in the right order so the script will run successfully.
 
Steps To Reproduce- Create Firebird or InterBase database

- Run next DDL:


SET TERM ^^ ;

CREATE PROCEDURE SP_B (
  I_ID Integer)
 returns (
  ID Integer) AS
BEGIN
  ID = I_ID * I_ID;
  SUSPEND;
END ^^

CREATE PROCEDURE SP_A (
  I_ID Integer)
 returns (
  ID Integer) AS
BEGIN
  FOR
    SELECT sp.ID FROM SP_B(:I_ID) sp
  INTO
    ID
  DO
    SUSPEND;
END ^^

SET TERM ; ^^


- Call migrator wizards and output script will use alphabetic order
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2015-10-21 20:46 Arno Brinkman New Issue
2015-10-22 10:48 Martijn Tonies Assigned To => Martijn Tonies
2015-10-22 10:48 Martijn Tonies Status new => acknowledged
2022-01-12 11:52 Martijn Tonies Project Database Workbench v5 => Database Workbench v6