Forum Replies Created

Viewing 3 posts - 1 through 4 (of 4 total)

  • RE: Can I use Output Into for this idea?

    Sorry for the lag in response and thanks for the replies and ideas!

    I will be playing with this again this week, so I'll post some progress soon 🙂

    Thanks

    Jamie

  • RE: Can I use Output Into for this idea?

    The order table is :

    CREATE TABLE [dbo].[Order](

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

    [OrderDate] [datetime] NOT NULL,

    [AgentBatchID] [int] NOT NULL,

    [FulfillmentCenterBatchID] [int] NULL,

    [CustomerName] [nvarchar](50) NULL,

    [AddressID] [int] NULL,

    [Phone] [nvarchar](50) NULL,

    [ProductID] [int] NULL,

    [UnitAgentRemit] [money] NULL,

    [UnitAgentBonus] [money]...

  • RE: Can I use Output Into for this idea?

    HI Sean - Thanks for the reply - the two tables are pretty simple:

    CREATE TABLE [dbo].[ValidationMessage](

    [ValidationMessageID] [bigint] IDENTITY(1,1) NOT NULL,

    [ValidationMessageTypeID] [int] NOT NULL,

    [Text] [nvarchar](max) NOT NULL,

    [ToBeDeleted] [bit] NOT NULL,

    CONSTRAINT...

Viewing 3 posts - 1 through 4 (of 4 total)