go to post Timo Lindenschmid · Jul 3, 2023 As per Jeffrey latest ISC studio should work fine. Also it might be the time to start the discussion for the move from Cache2017 to IRIS. With IRIS you will also get other IDE options like VSCode.
go to post Timo Lindenschmid · Jun 1, 2023 Is this backup planned to be done once daily? continuously? if it once daily, the easiest way would be find the storage global you class is saved in then e.g. ^MyClass.CurrentTableD and copy that into another backup global e.g m ^BackupGlob($H,"BackedUpData")= ^MyClass.CurrentTableD
go to post Timo Lindenschmid · May 23, 2023 Hi Pietro, i don't have a cloning tool yet. Usually i export the "template" task, then modify the xml a needed and reimport. Cheers Timo
go to post Timo Lindenschmid · Apr 5, 2023 So just looking at your SQL,. You got 2 parameters in your where clause. Select ID, Name from MSDS_Common.ComponentSub Where (? is null or %UPPER(Component)[%UPPER(?)) and Active=1 If the first dropdown is null this will always be true if Active is 1 Try changing the where clause to Where (? is null AND ( %UPPER(Component)[%UPPER(?)) and Active=1 This will check if first parameter is empty and if subcomponent contains the second parameter and if its active.
go to post Timo Lindenschmid · Mar 27, 2023 If the source class is in deployed mode, there is no way to modify the source code.
go to post Timo Lindenschmid · Mar 27, 2023 Ben is correct. Apply saves the current state and Update saves and continues the workflow/returns you to the previous screen.
go to post Timo Lindenschmid · Mar 20, 2023 as an alternative you could use to standard traceroute traceroute -n -T -m 5 -q 1 -p 80 hostname.local -p portnumber -T use TCP syn for connects -m max TTL to test If it succeeds it will return all IPs if the IP is not reachable it will only report *.If the port is blocked it will return somethink like 1 192.168.1.198 0.411 ms !X Where !X means admin prohibited.
go to post Timo Lindenschmid · Mar 20, 2023 Hi, without understanding what workload the job is doing its nearly impossible to suggest best approach. You could try to reduce the priory of the jobbed process. d %SYSTEM.Util.SetPrio("-1") //reduced prio of current process by one
go to post Timo Lindenschmid · Mar 8, 2023 Hi, if you make some assumptions 1. numbers are always enclosed in curved brackets 2. you want to always return string starting with REASON this could be as easy as just: set mystring="REASON->Blood(1.23)" w "REASON"_$extract(mystring,$find(mystring,"(")-1,*) or if you really want to use regex: IRISHEALTH:USER>set mystring="REASON->Blood(1.23)" IRISHEALTH:USER>set regex=##class(%Regex.Matcher).%New("^([A-Z]*)->.*(\([0-9]*.[0-9]*\))",mystring) IRISHEALTH:USER>zw regex.Locate() 1 IRISHEALTH:USER>zw regex.Group(1) "REASON" IRISHEALTH:USER>zw regex.Group(2) "(1.23)"
go to post Timo Lindenschmid · Mar 6, 2023 Hi Leon, You probably would need an init method that gets called if the file does not exist, That creates the file and writes the csv header line. Have a look at Using %Library.File | InterSystems IRIS Data Platform 2022.3, that should give some pointers on hoe to check, create file and writeLn to it.
go to post Timo Lindenschmid · Mar 3, 2023 Actually just thinking the IRIS contained ALPHAUP function converts to string by prefixing a " " (space) to force %String not suffixing
go to post Timo Lindenschmid · Mar 3, 2023 Hi Pietro, if you got access try doing a BaselineExport using %Studio.SourceControl.ISC:BaselineExport
go to post Timo Lindenschmid · Mar 3, 2023 The entrypoints of ZMIRROR are called during the mirror failover process. E.g. if the backup mirror has successfully taken over all roles and now has become primary the relevant entrypoint (not sure but something like HasBecomePrimary^ZMIRROR) is being called. So code added to that entrypoint will be executed at that time . ZMIRROR cannot be used for monitoring purposes only to execute actions during a failover process.
go to post Timo Lindenschmid · Mar 3, 2023 This is NOT correct a VIP is not needed for a failover mirror even with ASYNC DR. Any Async Mirror will know of all mirror nodes and try both failover mirror members if it cannot connect to the primary automatically. For this it uses the superserver IP configured on the mirror setup or the private mirror IP if it is able to access it. A VIP is only needed for application that are not mirror aware. Even the current web/csp gateway can be configured to be mirror aware.
go to post Timo Lindenschmid · Mar 3, 2023 Agreed contact WRC on this and get your messages log from Primary and backup (from during the outage) reviewed. This sounds like a full loss of connectivity or just a hunch are both mirror members backed up at the same time and does this coincide with the outage?
go to post Timo Lindenschmid · Mar 3, 2023 just asking is there a loadbalancer involved when you connect to your application? if so enable stickysession on it so it always reconnects via the same web server as a different webserver means a new session when connecting to iris/cache
go to post Timo Lindenschmid · Feb 23, 2023 Hi Philip, User and password management in TrakCare is difficult task via SQL and i would not suggest doing it that way. In newer versions of TrakCare the CodeTable upload manager can be used to batch upload user accounts. I would suggest you create an iService ticket for TrakCare support to help you with the best option here. You can always request support to contact me if they need more information on this.
go to post Timo Lindenschmid · Feb 23, 2023 Hi Kari, this really depends on the authentication options of the 3rd party api. If the 3rd party api only accept e.g. username/paswords then it will never be more secure even if you use a password vault, as the password needs to be cleartext to be provided to the 3rd party. Different story if the api accepts e.g OAUTH based keys/hashes.refer to : OAuth 2.0 Client | InterSystems IRIS Data Platform 2022.3 Best Regards Timo
go to post Timo Lindenschmid · Feb 20, 2023 Hi Mark, there is no issue doing this on a Primary mirror. I have done this multiple times for customers. The system impact with IRIS is negligible. Just remember to do this on all mirror members as DB activities are not replicated only data is. Just to be on the save side though always check a valid backup is available before you start.
go to post Timo Lindenschmid · Feb 20, 2023 Hi, to create a really password less mode enable delegated authentication and create your own zauthenticate.mac that checks for your rules e.g. originating from local ip addresses etc and then logs your user in. refer to: Delegated Authentication | Authentication Guide | InterSystems IRIS Data Platform 2022.3