getRoFstBySize will return just the newest of that size

This commit is contained in:
John Jenko 2017-06-08 17:11:49 +00:00
parent 83d746edfd
commit 69c78b19aa

View File

@ -13211,7 +13211,7 @@ GO
/*****************************************************************************
Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
Copyright 2016 - Volian Enterprises, Inc. All rights reserved.
Copyright 2017 - Volian Enterprises, Inc. All rights reserved.
*****************************************************************************/
CREATE PROCEDURE [dbo].[vesp_GetSQLCodeRevision]
WITH EXECUTE AS OWNER
@ -13222,8 +13222,8 @@ BEGIN TRY -- Try Block
set nocount on
DECLARE @RevDate varchar(255)
DECLARE @RevDescription varchar(255)
set @RevDate = '5/23/2017 3:00 PM'
set @RevDescription = 'Added GetJustROImage. Reduces Memory Usage during Import'
set @RevDate = '6/8/2017 2:41 PM'
set @RevDescription = 'Added getRoFstBySize to get one the most recent rofst'
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
PRINT 'SQL Code Revision ' + @RevDate + ' - ' + @RevDescription
IF( @@TRANCOUNT > 0 ) COMMIT