Hi @ Gunwant Kapade! Looks like you've run out of licenses.
You may try to build the same with IRIS Community version with this example or download IRIS Community here.
- Log in to post comments
Hi @ Gunwant Kapade! Looks like you've run out of licenses.
You may try to build the same with IRIS Community version with this example or download IRIS Community here.
Hi Henrique!
Have a question: do you really need to install MSGViewer to a separate namespace?
I mean - do you really need two namespaces to work with your monitoring?
Agenda update for the meetup:
"InterSystems IRIS and the Cloud" session by @Anton Umnikov
“In this session we'll talk about how IRIS can interoperate with various components of the public cloud ecosystem, such as S3 storage, SageMaker machine learning framework, Elastic Map Reduce and others.”
Space is limited, RSVP today! ![]()
You are right, it is. Good enhancement request, thank you.
As a workaround, you could create a class with classmethod Merge on ObjectScript which does the merge and call it via API.
Hi George!
Yes, we plan to have a Livestream. Stay tuned with the topic - we'll publish the link. This will be on Developers Video channel.
Thanks, Mario!
docker-compose up -d
I think this goes as the 2nd command in my post?
# docker iris iris session iris
Right!
Even less if you have a Docker Extension in VSCode and right click on a container to open the shell in container. In this case you can run:
# iris session iris
Two(!) commands less ;)
Details could be found here
Wow! Missed it somehow! We have 3 extensions of VSCode for ObjectScript now )
@Rubens Silva, do you plan to publish it on VSCode Marketplace? And on Open Exchange of course? )
Hi Bernard! Pinging @Dmitry Maslennikov and @John Murray for the answer cause both develop VSCode plugins for ObjectScript.
Hi Kevin!
This is fixed. Check the new UX.
Hi folks!
If you happen to visit Global Summit 2019 this year - please join us on InterSystems Developers meetup on the last day of the summit, just after DevOps and AI symposium at the same building.
Come to Champions, Copley at 5-30pm to chat and discuss in a relaxed atmosphere your dev experience with InterSystems IRIS.
See you in Boston!
It turned out, that we don't need a special repository to add ZPM into your docker container.
You just need another dockerfile - like this one. And here is the related docker-compose to make a handy start.
See how it works:

The distribution method is obvious, of course ;) Thanks Ed.
Do not use repository - it is should not be used for anything besides development.
What do you recommend to use Python Gateway in docker container instead?
Thanks! That helped, again! It's not obvious though.
Hi Ed!
Thanks for the release!
Tried to build container got the following:
Step 16/20 : COPY --chown=irisowner ./isc/ $SRC_DIR/isc ---> e49473814d17 Step 17/20 : COPY --chown=irisowner ./rtn/ $SRC_DIR/rtn ---> 12750dfbd0fa Step 18/20 : COPY --chown=irisowner iscpython.so $ISC_PACKAGE_INSTALLDIR/bin/ ERROR: Service 'iris' failed to build: COPY failed: stat /var/l ib/docker/tmp/docker-builder811746695/iscpython.so: no such file or directory
Could you please check?
Hi Ed!
This is $Translate again )
Assume you need all the ASCII codes from 33 to 126 - letters, numbers, punctuation.
So:
classmethod onlygood(str) as %String
{
for i=0:1:255 set $E(all,i)=$C(i)
for i=33:1:126 set $E(good,i)=$C(i)
// adding spaces for "no good" symbols
set good=$J("",34)_good_$J("",129)
return $tr(str,all,good)
}The answer is:
To remove the Count measure put any other measure of the cube into the Measures section of the Pivot.
Hi Lawrence!
But if you remove Count what number do you want to calculate? Do you have any other measure?
The nature of pivots is that you need at least one measure in a pivot. If you don't supply any DeepSee takes Count by default - the amount of Facts in your Fact table.
Thanks, Anastasia!
The video is 20 min long, but it describes how to start coding, compiling, debugging ObjectScript on InterSystems IRIS in less than a minute!
All you need is Git, VSCode and Docker installed.

Hi Ed, thanks for sharing!
3. Add template to a server with InterSystems IRIS
Could you provide more details on it?
Hi, Rubens!
PS: Evgeny, what do you think of adding a Post type called Information? I think the one I used is not adequate, but I had no options since the other types seemed lesser adequate.
Thank you! It's a good idea. You always can submit a feature request for DC. I would say that this looks like a public discussion around product feature requests, right? To have DC as a sort of idea-portal.
Maybe we'll introduce something like this. But in order to have this more than conversation and to have some follow up on product development, we need to discuss it with Product management.
For now, I think this is more of type Question than Article.
Hi Chip!
It’s not an answer, but this could be done via Arduino devices. Here is the related article by @Eduard Lebedyuk and the app on Open Exchange
Wow. Thanks Dmitry, this is a real freedom of opportunities.
Also, if you use $I() or $seq() for id generation it's not comparable with count=count+1 cause $I is not reversible in trollbacks
Which implies that foreach iteration is not desired here.
Got you, this was the word "dictionaries". Removed it and added the comment about each element of array.
If you're sure that it would be less than $$$MaxStringLength then you can use $lb, otherwise use locals (which can be converted to ppg/globals easily).
Yes. Thanks.
Interesting that I can use $LB in a parameter declaration, but cannot call a method - e.g. if you need some logic to form a list. This is not compilable in this case.