Viewing 3 posts - 1 through 4 (of 4 total)
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
June 3, 2014 at 7:27 am
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]...
May 28, 2014 at 1:51 pm
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...
May 28, 2014 at 1:34 pm
Viewing 3 posts - 1 through 4 (of 4 total)