go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 Pls. don't forget to mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept
go to post Robert Cemper · Aug 14, 2017 not a problem of version A subquery using ORDER requires a TOP clause Change the query to SELECT * FROM (SELECT TOP ALL sslog.userRowid, sslog.CreateDate, sslog.CreateTime, Sslog.SSUSR, sslog.Terminal, ssuser.Initials, ssuser.USName FROM SUser_Log sslog LEFT JOIN DHC_SSuser ssuser ON (Sslog.SSUSR = ssuser.userRowid OR sslog.ssusr = ssuser.Initials OR sslog.ssusr = ssuser.USName) WHERE ssuser.USName ['admin' ORDER BY sslog.CreateDate DESC) WHERE %VID> 5
go to post Robert Cemper · Aug 13, 2017 HI Dave,Great to meet you again on one of my favorite subjects.
go to post Robert Cemper · Aug 12, 2017 To mark your question as "answered" on Developer Community,please click the checkmark alongside the answer you (as author of the question) accept.
go to post Robert Cemper · Aug 12, 2017 You have 2 Options for LOCK1) LOCK lockargument either you succeed or you hang until you get success or forever2) LOCK lockargument:timeout timeout releases your attempt after the defined timeand signal by system variable $TEST if you were successful or notso your code may have this structureLOCK +(^a,^b,^c):0If $TEST { write "successful Locked",! } ELSE { write "attempt to Lock failed",! }more on LOCK: http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...if failing you may want to identify your competitor using ^$LOCKhttp://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Robert Cemper · Aug 11, 2017 given the property you want to sort is unique and suitable as key for your array you may get the expected result.set key=obj.sortpropertyset tSC=myArray.SetAt(obj, key)
go to post Robert Cemper · Aug 11, 2017 To mark your question as "answered" on Developer Community, please click the checkmark alongside the answer you (as author of the question) accept.
go to post Robert Cemper · Aug 10, 2017 You are welcome.When I loaded the class first I was surprised too just to see 4 methods.
go to post Robert Cemper · Aug 10, 2017 Amir,I don't agree with you on %Listhttp://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P...There's no annotation to be reserved or not to use it
go to post Robert Cemper · Aug 10, 2017 Mike,You are formally correct but data type %List just has no method LogicalToDisplay !but:- LogicalToOdbc- LogicalToXSDand reverseit seems the implementer expected us to use $ListToString(...) and $ListFromString()so far for consistency in object model support
go to post Robert Cemper · Aug 10, 2017 Alexey,- The final size after some design optimizations was175 GB DataGlobals + 216 GB IndexGlobals ; separated for backup considerations (on 1 single drive )- data analysis was all done with SQL + a bunch of "homemade" SQL Procedures / ClassMethods running specific subqueries.