How to drop primary key constraint from a column of table ?
Actually I got so many example for this, but in that we require the primary key name also.
But I dont have the primary key name.So if I execute the query like
its giving error as 'sysobject not found'
So I think access have sysobject with different name.
So please any body can help me in this scenario.
Actually I got so many example for this, but in that we require the primary key name also.
But I dont have the primary key name.So if I execute the query like
Code:
select object_name (parent_obj) ObjectName, name from sysobjects where xtype = ‘PK’ and parent_obj = (object_id(‘Admin.Technologies’))
So I think access have sysobject with different name.
So please any body can help me in this scenario.
Comment