SunQuest
           MS SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesMS SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
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  
Old May 18th, 2004, 11:45 AM
riga riga is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Location: Toronto
Posts: 35 riga User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 m 47 sec
Reputation Power: 0
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?

Reply With Quote
  #2  
Old May 18th, 2004, 12:06 PM
swampBoogie swampBoogie is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Jan 2003
Location: Paris Uppland
Posts: 1,766 swampBoogie User rank is Sergeant Major (2000 - 5000 Reputation Level)swampBoogie User rank is Sergeant Major (2000 - 5000 Reputation Level)swampBoogie User rank is Sergeant Major (2000 - 5000 Reputation Level)swampBoogie User rank is Sergeant Major (2000 - 5000 Reputation Level)swampBoogie User rank is Sergeant Major (2000 - 5000 Reputation Level)swampBoogie User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 2 Weeks 4 Days 6 h 24 m 8 sec
Reputation Power: 37
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.

Reply With Quote
  #3  
Old May 18th, 2004, 12:08 PM
riga riga is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Location: Toronto
Posts: 35 riga User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 m 47 sec
Reputation Power: 0
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

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMS SQL Development > There is already an object named 'PK_Survey_Category'


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway