Search

Clear filter
Article
Renan Lourenco · Mar 9, 2020

InterSystems IRIS for Health ENSDEMO (supports arm64

this part of the documentation as a module too. Could be a nice extension to the app. I like your idea @Evgeny.Shvarov !! How do you envision that, a simple index with easy access like
Question
Theo Stolker · Dec 22, 2022

%DynamicObject: How to insert json property at a specific location

", "meta", "extension" ] #dim newObject as %DynamicObject = {} for index = 0:1:order.%Size() - 1 { set element = order.%Get(index) set done(element) = 1
Article
Irene Mykhailova · Apr 21

Considerations when Migrating from Oracle, MSSQL etc to IRIS

you to write methods (that can be called as stored procedures) and use the full power of the object-oriented paradigm. Triggers, Indexes, and Views are all supported by IRIS
Article
Muhammad Waseem · Apr 5, 2022

Using Globals as a graph database to store and retrieve graph structure data

vis.Network(container, data, options); return network; } drawGraph(); </script> Step5: Calling above codes from app.py main file #Mian route. (index
Question
Erum Ahsan · Jun 6, 2023

JavaScript is not working as expected

to understand what I am doing wrong? XData Style { <style type="text/css"> #loading {width: 100%;height: 100%;top: 0px;left: 0px;position: fixed;display: block; z-index: 99
Article
Developer Community Admin · Mar 18

InterSystems IRIS data platform: Architecture

performance, the core of InterSystems technology is a highly efficient mechanism for data storage, indexing, and access. Unlike other database providers, we do not provide
Article
Sergey Kamenev · May 23, 2019

PHP module for working with hierarchical data in InterSystems IRIS

parameters of this function are strings or numbers. The first one is the name of the global, then there are the indexes, and the last parameter is the value. iris_set('^time',1
Article
Timur Safin · Aug 26, 2016

Caché MapReduce - Basic interfaces for MapReduce implementation (part II

) Method GetNext() As %String { #dim value As %String #dim index As %String = $order(@i%GlobalName@(""),1,value) if index'="" { kill @i%GlobalName@(index
Article
Sergey Kamenev · Jul 7, 2017

Globals - Magic swords for storing data. Sparse arrays. Part 3

of our universe not just because of its flexibility, but also thanks to its ability to quickly save a data thread while concurrently creating index globals for quick search. If we go
Article
Theo Stolker · Feb 2, 2024

DB.Changelog: Keeping track of database changes using SQL Triggers and CodeMode = objectgenerator

ChangeLog.DB.NameValues Extends %Persistent { /// Name Property name As %String; Index nameIndex On name [ Unique ]; /// Value Property value As %String(MAXLEN
Question
Keith Davis · May 31, 2019

How do I drop a table created by a Objectscript class

, for that matter). That's the thing, I don't want views, I want tables, and I need indexing (which was how this all got started, the indexing is not working). I was not aware
Question
Jonathan Stanger-Moore · Sep 25, 2017

Getting SQL Gateway Connection Details - ODBC

","ODBCCONNECTION","DATA",1)=$lb("","ENS171 Samples","YJM","_system","HnBuSSuEERERntcVPGsUMQ==",0,0,"","","","",0,"",0,0,1,0,1,0,"",0) ^%SYS("sql","ODBCCONNECTION","INDEX","NameIndex
Question
Mike Henderson · Apr 15, 2016

SQL Parsing error

go - this will compile in USER namespace Class User.SQLForSome Extends %Persistent { Property Name As %String; Property Domains As list Of %String; Index Domains
Question
Marek Bernád · Jul 3, 2017

How to delete Caché global by its value in Caché ObjectScript

will probably need to maintain a cross-reference (a.k.a. index) such as ^myglobalX("index1",Y)=X and check for the existence of a record here before saving a new record.
Question
Russell Knight · Jul 17, 2017

How to Discover What's Inside the Global

) you are in the global.You can use $qsubscript along with an index to fetch it's name.There's a sample within the $query documentation.Also, $order uses the lastest subscript you