Produced by Araxis Merge on 10/26/2017 10:43:16 PM Eastern Daylight 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 | OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\BMS_Build_C72898\BMS_Source-BuildC72898.zip\C72898\Source\Sources\Database\CreationScripts\BMS_DS\3.Functions | dbo.ufn_Split.UserDefinedFunction.sql | Wed Oct 23 12:51:14 2013 UTC |
| 2 | OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\BMS_Build_C72898\BMS_Source-BuildC72898.zip\C72898\Source\Sources\Database\CreationScripts\BMS_DS\3.Functions | dbo.ufn_Split.UserDefinedFunction.sql | Thu Oct 26 15:53:21 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 88 |
| Changed | 1 | 2 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| 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 | /****** Ob ject: Use rDefinedFu nction [db o].[ufn_Sp lit] Sc ript Date: 03/21/201 2 14:00:29 ******/ | |
| 2 | IF EXISTS (SELECT * FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[ufn_S plit]') AN D type in (N'FN', N' IF', N'TF' , N'FS', N 'FT')) | |
| 3 | DROP FUNCT ION [dbo]. [ufn_Split ] | |
| 4 | GO | |
| 5 | ||
| 6 | SET ANSI_N ULLS ON | |
| 7 | GO | |
| 8 | SET QUOTED _IDENTIFIE R ON | |
| 9 | GO | |
| 10 | -- ======= ========== ========== ========== ======== | |
| 11 | -- Author:
|
|
| 12 | -- Create date: 10/1 9/2011 | |
| 13 | -- Descrip tion: Spli t a string by delimi ter. Used in the bui ld process . | |
| 14 | -- ======= ========== ========== ========== ======== | |
| 15 | CREATE FUN CTION [dbo ].[ufn_Spl it](@text varchar(MA X), @delim iter varch ar(20) = ' ') | |
| 16 | RETURNS @S trings TAB LE | |
| 17 | ( | |
| 18 | ID int I DENTITY PR IMARY KEY, | |
| 19 | VALUE NV ARCHAR(50) | |
| 20 | ) | |
| 21 | AS | |
| 22 | BEGIN | |
| 23 | DECLARE @i ndex int | |
| 24 | SET @index = -1 | |
| 25 | WHILE (LEN (@text) > 0) | |
| 26 | BEGIN | |
| 27 | SET @i ndex = CHA RINDEX(@de limiter , @text) | |
| 28 | ||
| 29 | IF (@i ndex = 0) AND (LEN(@ text) > 0) | |
| 30 | BEGI N | |
| 31 | IN SERT INTO @Strings V ALUES (@te xt) | |
| 32 | BREAK | |
| 33 | END | |
| 34 | ||
| 35 | IF (@i ndex > 1) | |
| 36 | BEGI N | |
| 37 | IN SERT INTO @Strings V ALUES (LEF T(@text, @ index - 1) ) | |
| 38 | SE T @text = RIGHT(@tex t, (LEN(@t ext) - @in dex)) | |
| 39 | END | |
| 40 | ELSE | |
| 41 | SET @text = RI GHT(@text, (LEN(@tex t) - @inde x)) | |
| 42 | END | |
| 43 | RETURN | |
| 44 | END | |
| 45 | GO |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.