upsizing access to sql server

hfs

Registered User.
Local time
Today, 06:31
Joined
Aug 7, 2013
Messages
47
I have moved my database to sql server, but a memo field which should be unique ,when goes into sql server does not have unique records..I tried using this code
Code:
CREATE UNIQUE INDEX UIX_YourIndexNamheHere
ON dbo.tblExcelLocation(ExcelPathLocation)
WITH (IGNORE_DUP_KEY = ON);
but its of no use ....
the field is not unique still,,
any ideas?
 
Last edited:

Users who are viewing this thread

Back
Top Bottom