Viewing 5 posts - 1 through 6 (of 6 total)
Thanks, I'll do that.
November 1, 2010 at 12:49 pm
I appreciate that you guys are willing to go so far as to replicate the tables, data, etc. but that's way more than I could ask.
I was really looking for...
November 1, 2010 at 12:39 pm
In the sample data I've left out some of the extraneous data.
Zones:
CREATE TABLE [cc].[Zones](
[ID] [bigint] IDENTITY(1,1) NOT NULL,
[Zone] [nvarchar](50) NULL,
[zDescription] [nvarchar](255) NULL,
[Inactive] [bit] NULL,
[TS] [timestamp] NULL,
[DateCreated] [datetime] NULL CONSTRAINT [DF_Zones_DateCreated]...
November 1, 2010 at 12:15 pm
I was just thinking, I could insert all of the items into the table first since I already know how many times each should appear in the list.
Then either I...
November 1, 2010 at 11:51 am
Resolved.
The problem wasn't with the customer number field itself, but rather with a computed field in the same table that used the customer number field. It was casting it...
October 28, 2010 at 9:24 am
Viewing 5 posts - 1 through 6 (of 6 total)