|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
There is already an object named 'PK_Survey_Category'
History:
1. drop table Survey_Category 2. create table Survey_Category: CREATE TABLE [dbo].[Survey_Category] ( [Survey_Category_ID] [int] NOT NULL , [Survey_ID] [int] NOT NULL , [Survey_Category_Type_ID] [int] NOT NULL , [Title] [varchar] (128) NOT NULL , [Intro] [varchar] (255) , [Sequence] [int] NOT NULL , [F_Title] [varchar] (128) , [F_Intro] [varchar] (255) ) ON [PRIMARY] 3. Run: alter table Survey_Category add constraint PK_Survey_Category primary key(Survey_Category_ID) with fillfactor=90 ERROR: There is already an object named 'PK_Survey_Category' in the database 4. alter table Survey_Category drop constraint PK_Survey_Category 5. ERROR:Constraint 'PK_Survey_Category' does not belong to table 'Survey_Category' ----------------- QUESTION: When I dropped a table didn't it drop all the constraints automatically? And if PK_Survey_Category still exists why it doesn't allow me to drop it? |
|
#2
|
|||
|
|||
|
The error indicates that there is some other table with a constraint using that name.
Code:
select * from information_schema.table_constraints where constraint_name = 'PK_Survey_Category' Constraint names must be unique within a schema. |
|
#3
|
|||
|
|||
|
information_schema.table_constraints
Thank you very much, swampBoogie!
I just found it out myself that i have to use information_schema.table_constraints 2 minutes ago. Anyway, thank you for trying to help. RobO |
![]() |
| Viewing: Dev Shed Forums > Databases > MS SQL Development > There is already an object named 'PK_Survey_Category' |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|