You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
11 lines
348 B
SQL
11 lines
348 B
SQL
use crashreport
|
|
SELECT *
|
|
from crashes
|
|
where [TimeOfCrash] > CAST(GETDATE() AS DATE)
|
|
order by [TimeOfCrash]
|
|
--where [EpicAccountId] is not null and buildversion != '4.5.0.0' and buildversion != '4.5.1.0
|
|
--where buildversion like '4.5.1%' and [ChangeListVersion] != '0' and [PlatformName] not like 'Mac%' and [Branch] like 'UE4-Re%'
|
|
|
|
|
|
|