Event Service configuration cannot find primary key in database table

コメント

2件のコメント

  • Avatar
    GP000

    This is how my table is made:

    CREATE TABLE [XXXXXXXXXX].[SeparateShipmentWorkflow](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [CreationDate] [date] NOT NULL,
    [MachineId] [int] NOT NULL,
    PRIMARY KEY CLUSTERED
    (
    [Id] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO

    0
    コメントアクション パーマリンク
  • Avatar
    sysberry GmbH

    Hi,

    there is a bug in AgilePoint for event listeners, that Agilepoint at this place doesn't recognize any other shema besides of dbo. Could you please move the table to dbo schema and try again?

    Regards,

    Alexey

    0
    コメントアクション パーマリンク

サインインしてコメントを残してください。