• Just use this script and add the primary key through Enterprie manager...

                                CREATE TABLE [dbo].[Subscription_History](

                                [nDex] [int] IDENTITY(1,1) NOT NULL,

                                [SubscriptionID] [uniqueidentifier] NULL,

                                [ScheduleName] [nvarchar](260) COLLATE Latin1_General_CI_AS_KS_WS NULL,

                                [parameterSettings] [varchar](8000) COLLATE Latin1_General_CI_AS_KS_WS NULL,

                                [deliverySettings] [varchar](8000) COLLATE Latin1_General_CI_AS_KS_WS NULL,

                                [dateExecuted] [datetime] NULL,

                                [executeStatus] [nvarchar] (260) NULL,

                                [dateCompleted] [datetime] NULL,

                                [executionTime] AS (datediff(second,[datecompleted],[dateexecuted]))

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg