This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public bool SubmitOrder(Order objOrder, ref int iID, ref OrderResponse objOrderResponse, ref string sRtnMsg) { | |
try { | |
var contJson = JsonConvert.SerializeObject(objOrder); | |
var jsFormatted = JToken.Parse(contJson).ToString(Formatting.Indented); | |
Log.Trace("Submitting Order: With {0}", jsFormatted); | |
var flagError = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- SQL CLEAN UP -- | |
/* Find jobs still owned by ppl */ | |
SELECT name,* | |
FROM msdb..sysjobs | |
WHERE owner_sid = SUSER_SID('{USERNAME}') | |
exec msdb..sp_update_job |
OlderNewer