Viewing 2 posts - 1 through 3 (of 3 total)
Yes ...this code will only work with 2005/8 I think...
January 2, 2009 at 8:17 am
#920296
Thats great Kiran...
For interest I have modified this to just show Unique cols plus PK for the param table:
create PROCEDURE [dbo].[GetUniqueCols]
@table_name nvarchar(50)
AS
select
c.name as [Column_Name],
...
January 2, 2009 at 2:30 am
#920141