Viewing 6 posts - 31 through 36 (of 36 total)
USE [MaybeNowStructure]
GO
/****** Object: Table [dbo].[Question] Script Date: 03/26/2009 16:49:16 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Question](
[ID] [bigint] IDENTITY(1,1) NOT NULL,
[UserID] [bigint] NULL,
[VisitorID] [bigint] NULL,
[Text]...
March 26, 2009 at 5:54 am
Thankyou very much for your valuable replies.
SQL Server Full Text Search is a keyword based search and I need to find the exact duplicate string which should then be removed...
March 26, 2009 at 5:41 am
I used the below mentioned query to find the DISTINCT records
SELECT DISTINCT Column1+cast(Column2 as varchar)
FROM TableName
it tooklong time
now I need to delete the duplicates and when...
March 26, 2009 at 5:19 am
basically the database is of a question/answer website so i have to do some maintenance on that DB and it has long text data so I need to find some...
March 26, 2009 at 3:31 am
Yes !
You can delete the DB files if you have stopped the main DB service.
Just delete the files or place it over some other server for analysis purpose...
December 1, 2008 at 3:15 am
Viewing 6 posts - 31 through 36 (of 36 total)