CRT.SHK Flashcards

1
Q

How to perform Seahawk FeedCutoff?

A
  1. Stop env - fm.py DCRM_LIVE1 -s
  2. Run feed cutoff - EagleMaintenance.exe -PFC -D YYYYMMDD
  3. Adjust Feed Cutoff: adjustfeedcutoff DCRM_LIVE1
  4. Validate Feed Cutoff: SELECT * FROM Core..FeedSet
  5. Start env: fm.py DCRM_LIVE1 -S
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

2 tables to retrieve Cparty data

A

SELECT * FROM SDSCopy.Cparty WHERE Id = XXX

SELECT * FROM Core..ParcelCparty WHERE CpartyId = XXX

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

2 tables for trade investigation using CpartyID and FeedID

A

SELECT * from Core..TradeDetail where CpartyId = XX AND FeedSetID = YY

SELECT * FROM Core..TradeValuationDetail WHERE NettingCpartyId = XX AND FeedSetID = YY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Where to get the FeedID?

A

SELECT * FROM Core..FeedSet WHERE BusDate = XX

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

3 things to check for QARisk2Engine Valuation errors

A
  1. Disable PV Caching on grid
    SELECT * FROM dbo.PDSRiskCachePP WHERE CpartyId = XX
  2. Batch using lesser market state
    SELECT * FROM dbo.CpartyRiskMetricTaskBatching WHERE CpartyId = XX
  3. HPC Distribution
    SELECT * FROM Core..CpartyHPCQANumberOfBatchesConf WHERE CpartyId = XX
How well did you know this?
1
Not at all
2
3
4
5
Perfectly