go to post Robert Cemper · May 25, 2020 Molte grazie @Stefano Cairoli ! È sempre lo stesso problema : è scritto da qualche parte.Ma dove ?Migliori saluti da Vienna! E state tutti sani! Robert
go to post Robert Cemper · May 24, 2020 @Eduard Lebedyuk , @Dmitry Maslennikov I tried it and it works: - v $(pwd):/mnt/share/ I set it for both containers and they read/write to it as any other user would do. My consequence: the "Install container" fills all required data the "production container" consumes it. It's similar as data transfer from 1 process to the other over IRISTEMP and I have no need for a merge as in my initial case.
go to post Robert Cemper · May 24, 2020 Thank you @Dmitry Maslennikov !That confirms that I didn't miss a "magic merge feature".My way wasn't that complete (I stripped the context example) Ending up with base to work with. So I "just" have to elaborate my Dockefile. My NodeJS has to start after IRIS anyhow, so iris-main could be great:But to visualize that it isn't just a fake it ist should run -it what iris runs -d detached.An additional manual start is no problem.@Eduard Lebedyuk you inspired me to try the shared volume I keep you posted
go to post Robert Cemper · May 24, 2020 OK! for access to the Native API it works fine. And I used that.my intention was to have just 1 container to run instead of 2. BTW: Would file access work from 1 container to the other over a commonly used external volume ? (haven't tried yet)
go to post Robert Cemper · May 24, 2020 ¡Hola Salva! ( @Jose-Tomas Salvador) A great contribution. Having this experienced myself I know how much work it was.A few remarks: enabling Hyper-V killed my well-grown VMware environment my attempts to install a pure Ubuntu Server distibution failed with various releases. so I had to accept the pre-selected kits with the graphic interface. the effort to get the network clean in a multi-machine environment was significant and I had just a week feeling what action were expected from me. finally mapping external volumes for durability wasn't easy and not successful. Thanks to your description I know that my expectations were just higher than reality. I finally dropped Docker desktop and returned to my VMware that I used alreadybefore it was supported platform for Caché, . Especially networking was much easier (to me). Maybe a future version might be more convincing.But as I developed a predecessor of VMware already in 1972.. I'm quite demanding on that subject. ¡ Saludos desde Viena !Robert
go to post Robert Cemper · May 21, 2020 Your organization seems to run the traditional centralized approach where a few developers workedin a rather close contact with each other being informed of any change immediately.Experiencing all cross-over dependencies on code and data directly. In a distributed / larger organization this information is poor or missing.So with more people stirring the same pot of code from remote is a risky exercise.You are well-advised to have local and separated installations for your developers. The extra effort is to maintain a common code base and data set for them.The advantage is that their changes don't interfere with each other.The next challenge is to keep test data for them consistent.This may even be harder to achieve than code consistency and requires precise maintenance and management.
go to post Robert Cemper · May 21, 2020 I like it as it is based on Eclipse.And as I used Eclipse since I wrote my first line of Java some decades backI know where to find my buttons and switches, what fits my needs, .... I'm not married to it. Just many years of positive experience. Why drop it for some younger tool ...
go to post Robert Cemper · May 21, 2020 A minor addition:For some time ( since last year ?) Studio is also available for stand-alone installation without any related Caché / IRIS Kit. The support & documentation situation is important for the field.So my vote: Studio for Win, Atelier for the rest
go to post Robert Cemper · May 20, 2020 As there is no default RANDOM() in Caché/IRIS SQL you have to write it yourself.Create this class: Class User.Henry{ ClassMethod Random(maxval As %Integer = 2) As %Integer [ SqlName = RANDOM, SqlProc ]{ quit $random(maxval)} } Assuming your table has defautl ID (%Integer, MINVAL=1) SELECT TOP 1 column FROM tableHAVING ID >= RANDOM(MAX(ID)) >= ensures that you just get an existing ID and don't drop on a deleted one Of course, if you know in advance the highest existing ID (e.g. maxid) then RANDOM(maxid) will do it.
go to post Robert Cemper · May 20, 2020 Extending the reply of @Vitaliy.Serdtsev Basically whatever your variable holds could be a %String (also including binary values)COS has a few check functions to interpret the content $ISOBJECT $ISVALIDDOUBLE $ISVALIDNUM $INUMBER $LISTVALID the whole block of $ZD,$ZDH,$ZDT,$ZDTH,$ZT,$ZTH $MATCH Further on the Pattern Match operator ? let you sort out pure text and binary, ..... All you have is just content. It is left up to you to decide what type it is.You can find out by those functions what is NOT. Only the data type classes decide to some limit what type it should be.
go to post Robert Cemper · May 20, 2020 NO it is not possible:In IRIS for Windows (x86-64) 2020.1 (Build 215U) it is compiled.But at run time you get an SQLCODE=1 and an error message for a bad SQL statement. Better compose an SQL string "SELECT name FROM "_table and process it with some ResultSet class, The embedded code in the class we know from Cache is gone.It all generates into a %scqlc.* class
go to post Robert Cemper · May 18, 2020 If you don't have a standard ID (%Integer,MINVAL=1)but something like ^<dataglobal>(BRANCH,ID) or similar than you might get your fast count by applyingThe adopted BitmapAdopted Bitmaps example now on Open Exchange ant iterate over the "BRANCHES"
go to post Robert Cemper · May 17, 2020 If you run Tune Table on a regular base it updated EXTENTSIZE.But this is then not exact but a close estimation depending on the frequency of run
go to post Robert Cemper · May 17, 2020 In principle I'd share te suggestion of @Stephen Canzano; with 2 minor additions: SELECT Count(ID) from <youtable> will you always lead to theexplicit or implicit Extent Index. (bitmap or standard) set cls=##class(%Dictionary.CompiledClass).%OpenId("classname")set table=clsSqlTableName This is important as there are a bunch of classes that have explicit defined table names. In addition, it works also for table linked over SQL gateway
go to post Robert Cemper · May 15, 2020 *.1.int shows us that this is generated from a class%Stream.Object.... is a class from SYSLIB.System Classes are typically only available in compiled format (.obj) You can't debug them.Either skip them by <F10> or leave them by <SHIFT F11>
go to post Robert Cemper · May 11, 2020 You might have a UNIQUE key on some of the other columns I think your data is crap. (in the screenshot)The ID you insert is totally different by structure than what you display from, table !!! This one looks like a 3 level subscript (Server | CustID | ActivityCode)I'd suggest not to try to insert ID at all. it is obviously generated
go to post Robert Cemper · May 11, 2020 I'd suggest to UNSWIZZLE ( ~~ remove from memory) all children once you a done with an object. it's described here: https://docs.intersystems.com/iris20192/csp/docbook/DocBook.UI.Page.cls?KEY=GOBJ_relationships
go to post Robert Cemper · May 11, 2020 [SQLCODE: <-131>:<After Insert trigger failed>] [%msg: <21003,Cannot INSERT "NIActivityCode" because number is already used.>] this simply means that you try to insert something that is unique and already present. so check against your table definition for uniqueness and next the data you want to insert. Start with ID first. It is definitely a data issue and not related to syntax
go to post Robert Cemper · May 11, 2020 INSERT INTO ccms.NIActivityCode (ID, CustID, ActivityCode, Name, ShortName, CreateDate, Type, Server)SELECT '1||1||102', '1', '102', 'Test1', 'test1', '2020-01-01 10:37:00', '4', '1'UNION ALLSELECT '1||1||103', '1', '103', 'Test2', 'test2', '2020-01-01 10:37:00', '4', '1'UNION ALLSELECT '1||1||104', '1', '104', 'Test3', 'test3', '2020-01-01 10:37:00', '4', '1'UNION ALL UNION ALL adds to the previous Select. ALL means all columns