Today's Late Post plus a Post that's late
by in Feature Articles on 2004-08-31Don Benson sends in some T-SQL code he came across while hunting a bug:
If @Build = 1 and @Prop = 0
Begin
If @NonPropLev >= @BOMLevel
Begin
set @NonPropLev = @BOMLevel
set @NonPParentMode = 1
End
End
If @Build = 1 and @Prop = 0
Begin
If @NonPropLev >= @BOMLevel
Begin
set @NonPParentMode = 1
set @NonPropLev = @BOMLevel
End
End