go to post Robert Cemper · Sep 10, 2021 As seen in my comment I can reproduce the error pattern and show some really dirty effects.Someone willing to debug this source control and expose his SYSLIB may be the winner.
go to post Robert Cemper · Sep 9, 2021 from class docs: • property Server as %String(MAXLEN=64,MINLEN=0); Name of the remote server where the DB resides.If empty, the database is local.Remote server must already be configured to be entered here. so this applies if you have some ECP connected DBs
go to post Robert Cemper · Sep 9, 2021 omit the server name and just use "" for your local server %SYS>set db=##class(Config.Databases).DatabasesByServer("",.dbList) %SYS>zw db=1 dbList="DEMO,IRISSYS,CACHE,ECODE,EDATA,ENSLIB,IRISAUDIT,IRISLIB,IRISLOCALDATA,IRISTEMP,USER" %SYS>
go to post Robert Cemper · Sep 8, 2021 https://docs.intersystems.com/iris20211/csp/docbook/DocBook.UI.Page.cls?KEY=RCOS_fzdate write $zd(+$h,4,,4)
go to post Robert Cemper · Sep 5, 2021 s max=0,glb="^MyGlobal" f s glb=$q(@glb) q:glb="" s:$ql(glb)>max max=$ql(glb) zw max
go to post Robert Cemper · Sep 5, 2021 Beginners see the query plan first and then create the index on items in WHERE clause.Experts mostly reverse the sequence.
go to post Robert Cemper · Sep 5, 2021 for questions 1.1You should use static IP addresses. hope this description helpshttps://pimylifeup.com/raspberry-pi-static-ip-address/
go to post Robert Cemper · Sep 5, 2021 #1 add an extent Index#2 try https://community.intersystems.com/post/repairing-your-index
go to post Robert Cemper · Sep 3, 2021 SSO account can be shared for WRC (if enabled), DC, OEX, Learnig, ..Global Masters is an external application that can make use of SSObut has its own independent accounts as well.
go to post Robert Cemper · Sep 3, 2021 SSO is part of Social Tab in Edit Profile in Global Masters.it allows sign in using WRC SSO https://globalmasters.intersystems.com/
go to post Robert Cemper · Sep 3, 2021 did you try ZN "%SYS" to return ? or switching to a different Namespace and back to %SYS ?
go to post Robert Cemper · Sep 1, 2021 @Kurro Lopez Show me yours and I show you mine private on discord.
go to post Robert Cemper · Aug 31, 2021 as posted on stackoverflow: for details see Class %ZEN.Component.dateText setting format:Property format As %ZEN.Datatype.string(MAXLEN = 3, VALUELIST = ",MDY,DMY,YMD", ZENEXPRESSION = 1)you have exactly 3 formats or "" Your guess on values is correct and documented: /// The value of this control is always in the canonical form: YYYY-MM-DD As this is one of the oldest components of ZEN your only chance to achieveyour way of operation is to create your own version inheriting fromClass %ZEN.Component.dateText and overloading the parts you want to change
go to post Robert Cemper · Aug 27, 2021 OK! you talk about a local variable arrayIf you don't pass the local array with the JOB command it is not defined in the new JOBbecause it is LOCAL except if you run the 2 SET commands of your example also in the JOBbed routine.also your WRITE command will fail if you don't specify some output device.since by definition a background JOB doesn't have foreground output.
go to post Robert Cemper · Aug 26, 2021 I just found Facebook link is operational again in GM.I just had to "associate" in personal settings and it worked with no other input.ping @Olga Zavrazhnova
go to post Robert Cemper · Aug 26, 2021 @Lewis Houlden If you stop a process from the Management portal you have the option to launch an <RESJOB> error in $ZEthis allows you to clean out the message that triggered your process.If not, the triggering message remains unprocessed in the queue.Which results in the retry you see.
go to post Robert Cemper · Aug 25, 2021 You might be able to achieve the first part of your description by some tricky JOIN constructs.Just access to a non-existing column will fail at generating the Query.Cascading might be easier (also for maintenance) by filling a TempTable over several cyclesand so assemble the final result. I would suggest to create a ClassMethod projected to SQL as Stored Procedure.then instead of the trick with the switch you just provide the parameters that you really have