Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Brain Freeze
Message
 
 
À
30/10/2015 09:47:41
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Versions des environnements
SQL Server:
SQL Server 2014
Application:
Web
Divers
Thread ID:
01626701
Message ID:
01626708
Vues:
49
>The smart safe transaction table has two possible eventcode values DECL and VER
>
>a VER transaction can relate to one or DECL transactions.
>
>The verifyid column in a DECL transaction points to the VER transaction for that row, if any.
>
>I was to select ALL DECL rows where the verifyid column is 0 or if it's not zero the postingdate in the related VER transaction is earlier than a given date
>
>I get this far and go blank
>
>
select * from view _expandedsmartsafetrans where eventcode = 'DECL' and verifyid = 0 
UNION ALL
select v.* from view _expandedsmartsafetrans v cross apply (select top(1) * from _expandedsmartsafetrans vVer  
where vVer.eventCode = 'VER' and v.Verifyid = vVer.Id and vVer.PostingDate < @SomeDate order by vVer.PostingDate DESC) Ver
where v.eventcode = 'DECL'
This would not exclude rows if you have verfied afer the @SomeDate.
If it's not broken, fix it until it is.


My Blog
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform