| 
	
 | 
 Posted by othellomy on 01/10/07 05:40 
When I execute the following query: 
select name 
from sysobjects 
where object_id('sysobjects') = 1 
Why do I get all the rows instead of only one? 
 
Erland Sommarskog wrote: 
> (danielbuus@gmail.com) writes: 
> > Thanks for the tip. There was a small typo, though (parentpbj instead 
> > of parent_obj), and the select would just get all constraints on 
> > authors and then rename the first one which wasn't necessarily the 
> > primary key constraint, so I narrowed it down with a LIKE 'PK%' 
> > statement. 
> 
> Oops. I should have added 
> 
>    AND xtype = 'PK' 
> 
> 
> 
> 
> -- 
> Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se 
> 
> Books Online for SQL Server 2005 at 
> http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx 
> Books Online for SQL Server 2000 at 
> http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
 
  
Navigation:
[Reply to this message] 
 |