Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Increase search indexer description field sizeIncrease search indexer description field size
Previous
 
Next
New Post
9/16/2009 1:33 PM
 

All,

I am trying to increase the size of the Description field of search indexer, limited to 2000 char as shown in the stored proc below. I changed it to max but to no avail. Where is the call to this provider in source? Thanks.

/****** Object: StoredProcedure [dbo].[AddSearchItem] Script Date: 09/16/2009 12:20:13 ******/

SET

ANSI_NULLS ON

GO

SET

QUOTED_IDENTIFIER ON

GO

 

ALTER

@Title

PROCEDURE [dbo].[AddSearchItem]NVARCHAR(200),

@Description

NVARCHAR(2000), ----------------------> offending line

@Author

INT,

@PubDate

DATETIME,

@ModuleId

INT,

@SearchKey

NVARCHAR(100),

@Guid

NVARCHAR(200),

@ImageFileId

AS

INT

 

DECLARE @ID INT

 

 

 

 

 

SELECT @ID = SearchItemIdFROM dbo.SearchItemWHERE ModuleId = @ModuleIDAND SearchKey = @SearchKeyIF @ID IS NULL

 

BEGIN

 

 

INSERT INTO dbo.SearchItem([Title],

[Description]

,

[Author]

,

[PubDate]

,

[ModuleId]

,

[SearchKey]

,

[guId]

,

[HitCount]

,

[ImageFileId]

)

 

VALUES (@Title,

@Description

,

@Author

,

@PubDate

,

@ModuleId

,

@SearchKey

,

@Guid

,

0

,

@ImageFileId

)

 

SELECT Scope_identity()

 

END

 

ELSE

 

BEGIN

 

 

UPDATE dbo.SearchItemSET [Title] = @Title,

[Description]

= @Description,

[Author]

= @Author,

[PubDate]

= @PubDate,

[ModuleId]

= @ModuleId,

[SearchKey]

= @SearchKey,

[guId]

= @Guid,

[HitCount]

= [HitCount] + 1,

[ImageFileId]

 

 

 

= @ImageFileIdWHERE SearchItemId = @IDSELECT @IDEND

 

 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Increase search indexer description field sizeIncrease search indexer description field size


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out