Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dead links

Status
Not open for further replies.

amiw

Programmer
Apr 1, 2003
113
GB
How can i get rid of all the dead links in my table

Here's the table structure

CREATE TABLE [dbo].[tblScience] (
[nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[Name] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[Keywords] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[About] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[Url] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[id] [int] IDENTITY (1, 1) NOT NULL ,
[dateadded] [smalldatetime] NOT NULL
) ON [PRIMARY]
GO



thanks Mic.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top