Event Service configuration cannot find primary key in database table
Hello,
When creating an Event Service trigger of type Database Insert, I select a table in which I'm absolutely certain there's a non-nullable primary key. The Primary Key drop-down menu doesn't offer any column, not even the Primary Key column. This prevents me from creating the event service.
How can I specify my primary key to AgilePoint?
Thank you,
G. Perreault
-
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
Please sign in to leave a comment.
Comments
2 comments