R Rachael Registered User. Local time Today, 21:48 Joined Nov 2, 2000 Messages 205 Sep 16, 2002 #1 Hi All, How are table properties modified in code in a table that exists in a backend database. I want to change a field property from not indexed to indexed (no duplicates) Thankyou to all repliers Rachael
Hi All, How are table properties modified in code in a table that exists in a backend database. I want to change a field property from not indexed to indexed (no duplicates) Thankyou to all repliers Rachael
S smed Registered User. Local time Today, 21:48 Joined Apr 18, 2002 Messages 50 Sep 16, 2002 #2 Rachael, To perform table changes use an SQL Query : Create Index (Duplicates OK) CREATE INDEX index_name ON table_name (column_name) Create Unique Index (No Duplicates) CREATE UNIQUE INDEX index_name ON table_name (column_name) Hope this helps Smed
Rachael, To perform table changes use an SQL Query : Create Index (Duplicates OK) CREATE INDEX index_name ON table_name (column_name) Create Unique Index (No Duplicates) CREATE UNIQUE INDEX index_name ON table_name (column_name) Hope this helps Smed