B2022-047: Tables search – refresh data to allow search to find text in tables

This commit is contained in:
2022-06-02 13:12:58 +00:00
parent d6d29a868a
commit fa5d78f844
7 changed files with 569 additions and 239 deletions

View File

@@ -17397,8 +17397,26 @@ IF (@@Error = 0) PRINT 'Running vesp_UtilityCheckIndexes Succeeded'
ELSE PRINT 'Running vesp_UtilityCheckIndexes Failed to Execute'
GO
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[getGridIds]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1)
DROP PROCEDURE [getGridIds];
GO
/*****************************************************************************
Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
Copyright 2022 - Volian Enterprises, Inc. All rights reserved.
*****************************************************************************/
CREATE PROCEDURE [dbo].[getGridIds]
WITH EXECUTE AS OWNER
AS
begin
SELECT
[ContentID]
FROM [Grids]
RETURN
end
GO
IF (@@Error = 0) PRINT 'Procedure Creation: [getGridIds] Succeeded'
ELSE PRINT 'Procedure Creation: [getGridIds] Error on Creation'
GO
-----------------------------------------------------------------------------
@@ -17427,8 +17445,8 @@ BEGIN TRY -- Try Block
DECLARE @RevDate varchar(255)
DECLARE @RevDescription varchar(255)
set @RevDate = '01/17/2022 12:30 PM'
set @RevDescription = 'getAssociationsByVersionID fix'
set @RevDate = '06/02/2022 12:30 PM'
set @RevDescription = 'getGridIds fix for table searches'
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
PRINT 'SQL Code Revision ' + @RevDate + ' - ' + @RevDescription