Existing SearchGroups or LinkedDataSearchGroups CTFPs will be removed

Release 1.3 - ...

iXperion 1.3 build 2

When running the Faceted Search database setup scripts, a warning may be shown if SearchGroups or LinkedDataSearchGroups CTFPs are detected in the iXperion database. As a default, these CTFPs will be deleted in order to set the default CTFPs.

The warning in graphical setup mode looks like this:

Caution: xxx SearchGroups and LinkedDataSearchGroups CTFPs detected. These will be reset. Consider running Faceted Search script manually.

If the iXperion database already contains properly configured SearchGroups and LinkedDataSearchGroups CTFPs, deletion can be skipped when running the database setup scripts in CLI (Command Line Interface) mode, using ExecuteScript.cmd. In this case, edit the Add-On Modules/Faceted Search/1_FS_Prerequisites.sql file:

SQL CopyCode image Copy Code
/* SQL Server */
DECLARE @delete_CTFPs int; SET @delete_CTFPs = 1; /* Set to 0 if existing SearchGroups CTFPs should NOT be deleted */
--
/* Oracle */
v_delete_CTFPs PLS_INTEGER := 1;

to:

SQL CopyCode image Copy Code
/* SQL Server */
DECLARE @delete_CTFPs int; SET @delete_CTFPs = 0;
--
/* Oracle */
v_delete_CTFPs PLS_INTEGER := 0;

iXperion 1.3 build 3 and later

As from iXperion 1.3 build 3 and later, only STANDARD SearchGroups CTFPs will be overwritten since STANDARD is the default used SearchGroup in the alpha version of Faceted Search. The current version introduces three default SearchGroups: PUB, CMS and XSLT. SearchGroup PUB is most likely the equivalent of the old STANDARD SearchGroup.