H
homer
Hi, everybody!
I need your help on this one.
Even they are from the same table, these data seem divide up into two camps.
The newer records are not updatable while the older ones are updatable from
MS Access linked table. Out of total of 4200 rows, 104 are un-updatable, and
their Primary Keys tell me they are the newer ones.
The message said “Write Conflict: This record has been changed by another
user since you started editing it…†with options to either Copy to Clipboard
or Drop Changes.
I don’t think that message is accurate, because I have tried many times
during different hours.
I have no problem running an update from SQL Server Query Analyzer to get
the data in.
I have re-linked the table.
Thanks in advance!
By the way here is the Data definition script for the table. It was promoted
from excel by "Power user". I am sure there is room for improvement on data
type and field naming.
Oh, the fields they want to update are [Cnt UM] and [Conv Factr].
CREATE TABLE [dbo].[Sts_ConversionFactors] (
[ID] [int] IDENTITY (1, 1) NOT NULL ,
[Not Active] [bit] NULL ,
[ITEM] [nvarchar] (15) COLLATE Latin1_General_BIN NOT NULL ,
[ITEM_DESC] [nvarchar] (35) COLLATE Latin1_General_BIN NULL ,
[UM] [nvarchar] (2) COLLATE Latin1_General_BIN NULL ,
[Cnt UM] [nvarchar] (50) COLLATE Latin1_General_BIN NULL ,
[Conv Fctr] [float] NULL ,
[AREA] [nvarchar] (50) COLLATE Latin1_General_BIN NULL ,
[StandardSize] [bit] NULL ,
[Category] [nvarchar] (50) COLLATE Latin1_General_BIN NULL ,
[Catalog] [bit] NULL ,
[Cost Ref Item] [bit] NULL ,
[MSI/EACH Conv] [float] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Sts_ConversionFactors] ADD
CONSTRAINT [DF_Sts_ConversionFactors_Conv Fctr] DEFAULT (0) FOR [Conv Fctr],
CONSTRAINT [PK_Sts_ConversionFactors] PRIMARY KEY CLUSTERED
(
[ID]
) ON [PRIMARY]
GO
I need your help on this one.
Even they are from the same table, these data seem divide up into two camps.
The newer records are not updatable while the older ones are updatable from
MS Access linked table. Out of total of 4200 rows, 104 are un-updatable, and
their Primary Keys tell me they are the newer ones.
The message said “Write Conflict: This record has been changed by another
user since you started editing it…†with options to either Copy to Clipboard
or Drop Changes.
I don’t think that message is accurate, because I have tried many times
during different hours.
I have no problem running an update from SQL Server Query Analyzer to get
the data in.
I have re-linked the table.
Thanks in advance!
By the way here is the Data definition script for the table. It was promoted
from excel by "Power user". I am sure there is room for improvement on data
type and field naming.
Oh, the fields they want to update are [Cnt UM] and [Conv Factr].
CREATE TABLE [dbo].[Sts_ConversionFactors] (
[ID] [int] IDENTITY (1, 1) NOT NULL ,
[Not Active] [bit] NULL ,
[ITEM] [nvarchar] (15) COLLATE Latin1_General_BIN NOT NULL ,
[ITEM_DESC] [nvarchar] (35) COLLATE Latin1_General_BIN NULL ,
[UM] [nvarchar] (2) COLLATE Latin1_General_BIN NULL ,
[Cnt UM] [nvarchar] (50) COLLATE Latin1_General_BIN NULL ,
[Conv Fctr] [float] NULL ,
[AREA] [nvarchar] (50) COLLATE Latin1_General_BIN NULL ,
[StandardSize] [bit] NULL ,
[Category] [nvarchar] (50) COLLATE Latin1_General_BIN NULL ,
[Catalog] [bit] NULL ,
[Cost Ref Item] [bit] NULL ,
[MSI/EACH Conv] [float] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Sts_ConversionFactors] ADD
CONSTRAINT [DF_Sts_ConversionFactors_Conv Fctr] DEFAULT (0) FOR [Conv Fctr],
CONSTRAINT [PK_Sts_ConversionFactors] PRIMARY KEY CLUSTERED
(
[ID]
) ON [PRIMARY]
GO