QUESTION: Why are all the fields on my SQL Server table used for identifying a record even though I have UpdateMode set to upWhereKeyOnly? ANSWER: The problem is that the BDE is not identifying a primary key for your table. There may be two things required to solve this problem. The first is to verify that the table has been created with a primary key declared. You can verify that a primary key exists using SQL Explorer and viewing the text of the table, or by looking at the constraints placed on that table. select * from SYSADMIN.Foo; |
Last Modified: 15-MAY-01