Produced by Araxis Merge on 1/15/2018 12:47:37 AM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | AHOBPRe_v5.0_build3.zip\DatabaseScripts\AHOBPR\HRE_Build1\SQA\Registry.AHOBPR.Database.Version.4.0.2.zip | Rollback_Registry.AHOBPR.Database.Version.4.0.2.sql | Tue Jun 27 16:57:10 2017 UTC |
| 2 | AHOBPRe_v5.0_build3.zip\DatabaseScripts\AHOBPR\HRE_Build1\SQA\Registry.AHOBPR.Database.Version.4.0.2.zip | Rollback_Registry.AHOBPR.Database.Version.4.0.2.sql | Tue Jun 27 16:57:10 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 220 |
| Changed | 2 | 26 |
| Inserted | 0 | 0 |
| Removed | 1 | 3 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | :setvar Da tabaseName "Registry QA " | ||
| 2 | :setvar Ma jorRelease Number "4" | ||
| 3 | :setvar Mi norRelease Number "0" | ||
| 4 | :setvar Po intRelease Number "2" | ||
| 5 | :setvar Sc riptName " Rollback_A HOBPR_Rele ase_4.0.2_ workitem_5 13951.sql" | ||
| 6 | |||
| 7 | PRINT ' | ||
| 8 | ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ------ | ||
| 9 | $(ScriptNa me) | ||
| 10 | |||
| 11 | Script in support of AHOBPR Re lease $(Ma jorRelease Number).$( MinorRelea seNumber). $(PointRel easeNumber ) | ||
| 12 | |||
| 13 | ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ------ | ||
| 14 | '; | ||
| 15 | PRINT 'Scr ipt starti ng ' + CAS T(GETDATE( ) as varch ar(20)) + '.'; | ||
| 16 | PRINT ' | ||
| 17 | ********** ********** ********** ********** ********** ******* | ||
| 18 | NOTE: This script mu st be run with SQLCM D Mode tur ned on. | ||
| 19 | ********** ********** ********** ********** ********** ******* | ||
| 20 | |||
| 21 | '; | ||
| 22 | GO | ||
| 23 | |||
| 24 | :on error exit | ||
| 25 | GO | ||
| 26 | |||
| 27 | :setvar __ IsSqlCmdEn abled "Tru e" | ||
| 28 | /* | ||
| 29 | Detect SQL CMD mode a nd disable script ex ecution if SQLCMD mo de is not supported. | ||
| 30 | To re-enab le the scr ipt after enabling S QLCMD mode , execute the follow ing: | ||
| 31 | */ | ||
| 32 | SET NOEXEC OFF; | ||
| 33 | GO | ||
| 34 | IF N'$(__I sSqlCmdEna bled)' NOT LIKE N'Tr ue' | ||
| 35 | BEGIN | ||
| 36 | PR INT N'SQLC MD mode mu st be enab led to suc cessfully execute th is script. '; | ||
| 37 | SE T NOEXEC O N; --When SET NOEXEC is ON, SQ L Server c ompiles ea ch batch o f Transact -SQL state ments but does not e xecute the m. | ||
| 38 | END | ||
| 39 | |||
| 40 | GO | ||
| 41 | |||
| 42 | USE [$(Dat abaseName) ] | ||
| 43 | GO | ||
| 44 | |||
| 45 | PRINT 'DEL ETING TABL e USER_STA TES_FILTER '; | ||
| 46 | GO | ||
| 47 | |||
| 48 | IF EXISTS (SELECT * FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[A HOBPR].[US ER_STATES_ FILTER]') AND type i n (N'U')) | ||
| 49 | DROP TABLE [AHOBPR]. [USER_STAT ES_FILTER] | ||
| 50 | GO | ||
| 51 | |||
| 52 | PRINT 'Don e.'; | ||
| 53 | GO | ||
| 54 | |||
| 55 | PRINT 'Rem oving AHOB PR_CHANGE_ STATUS_REG ISTRANT_SE ARCH from STD_GUI_CO NTROLS'; | ||
| 56 | GO | ||
| 57 | |||
| 58 | DELETE FRO M [dbo].[S TD_GUI_CON TROLS] | ||
| 59 | WHERE [STD_REGIS TRY_ID] IN | ||
| 60 | (S ELECT ID F ROM [dbo]. [STD_REGIS TRY] where [CODE] = 'AHOBPR') | ||
| 61 | AND | ||
| 62 | [C ATEGORY] = N'AHOBPR_ CHANGE_STA TUS_REGIST RANT_SEARC H' | ||
| 63 | AND | ||
| 64 | [U SER_CONTRO L_ID] = 'B aseControl TextStates Filter'; | ||
| 65 | GO | ||
| 66 | |||
| 67 | PRINT 'Don e.'; | ||
| 68 | GO | ||
| 69 | |||
| 70 | PRINT 'Rem oving AHOB PR_MYACCOU NT_ACCOUNT INFORMATIO N from STD _GUI_CONTR OLS'; | ||
| 71 | GO | ||
| 72 | |||
| 73 | DELETE FRO M [dbo].[S TD_GUI_CON TROLS] | ||
| 74 | WHERE [STD_REGIS TRY_ID] IN | ||
| 75 | (S ELECT ID F ROM [dbo]. [STD_REGIS TRY] where [CODE] = 'AHOBPR') | ||
| 76 | AND | ||
| 77 | [C ATEGORY] = N'AHOBPR_ MYACCOUNT_ ACCOUNTINF ORMATION' | ||
| 78 | AND | ||
| 79 | [U SER_CONTRO L_ID] = 'U serControl ListBoxSta te'; | ||
| 80 | GO | ||
| 81 | |||
| 82 | PRINT 'Don e.'; | ||
| 83 | |||
| 84 | PRINT 'Scr ipt comple ted ' + CA ST(GETDATE () as varc har(20)) + '.'; | ||
| 85 | GO | ||
| 86 | |||
| 87 | PRINT 'Wri te to Data baseChange Log...'; | ||
| 88 | GO | ||
| 89 | |||
| 90 | INSERT INT O [dbo].[D atabaseCha ngeLog] | ||
| 91 | ([MajorRe leaseNumbe r] | ||
| 92 | ,[MinorRe leaseNumbe r] | ||
| 93 | ,[PointRe leaseNumbe r] | ||
| 94 | ,[Hotfix] | ||
| 95 | ,[ScriptN ame] | ||
| 96 | ,[ScriptD escription ] | ||
| 97 | ,[TargetR egistry] | ||
| 98 | ,[DateApp lied]) | ||
| 99 | VALUE S | ||
| 100 | ('$(Major ReleaseNum ber)' | ||
| 101 | ,'$(Minor ReleaseNum ber)' | ||
| 102 | ,'$(Point ReleaseNum ber)' | ||
| 103 | ,0 | ||
| 104 | ,'AHOBPR_ Release_4. 0.2_workit em_513951. sql' | ||
| 105 | , 'Rollback_ AHOBPR_Rel ease_4.0.2 _workitem_ 513951.sql installat ion script .' | ||
| 106 | ,'AHOBPR' | ||
| 107 | ,GETDATE( )); | ||
| 108 | GO | ||
| 109 | |||
| 110 | PRINT ''; | ||
| 111 | PRINT 'Com pleted ' + CAST(GETD ATE() AS v archar(20) ) + '.'; | ||
| 112 | GO |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.