Search

Clear filter
Question
Daniel Lee · Aug 1, 2023

How to search for messages based on size

the property FullSize in a SQL statement: SELECT ID FROM EnsLib_HL7.Message WHERE FullSize > ? Take care because this is a calulated proprety and doesn't have a index. As others have
Question
Ran Kahane · May 17, 2023

Identity property - CacheSQLStorage

, Transient ]; Index PMKey On (Subscript1, Subscript2) [ IdKey, PrimaryKey, Unique ]; Storage MainStorage{<SQLMap name="MainMap"><Data name="Data"><Delimiter>"$c(31)"<
Article
Iryna Mykhailova · Oct 30, 2018

Caché eXTreme for .NET - direct access to globals from C

first return to the level of a single index. To do this, use the SetSubscriptCount() method with parameter 1. And further, using the Set() method, simply add subscripts
Question
Laura Cavanaugh · Jul 17, 2017

Need variable number of query parameters in dynamic query

, this defines their position as arguments.Methods that support a variable arity imply on using three rules:1 - Argument variable must contain the arity size.2 - Argument index starts
Article
Robert Cemper · Nov 26, 2021

Traditional Debugging in ObjectScript

{ set tName="*** no file ***",index="" } elseif $D(^ImportFile(file,-1)) { set tName=$O(^ImportFile(file,-1,"Class",""),1,index) } Else { set tName=$g(^ImportFile(file
Article
Mike Kadow · Sep 7, 2016

NewBie's Corner Session 25 Globals and Arrays Part 1

, please respond through the InterSystems Developer Community, don't send me private email, unless of course you wish to address me only.See "Newbie's Corner Index" for an index of all NewBies' Posts
Question
Tom Philippi · Dec 13, 2017

Running SQL queries on Dynamic objects

specific stuff.setup an index on those calculated properties to find your record.With this approach you keep the origin as you get it and get te indices you may require.It's pretty
Question
Sébastien Demoustiez · Sep 24, 2019

The studio is very slow on a specific namespace

? We had a similar issue at a site and it turned out the routine index was corrupt, recompiling all routines solved this. Hi, I'm having a similar issue but with purge queries
Question
Jeffrey Drumm · Jan 6, 2020

Querying EnsLib.HL7.Message via ADO/ODBC

finishes executing on the server. Query 1 fails because you have to do a join on the two large tables and your only where clause is against a property that is not indexed. Query 2
Question
chenna velagala · Feb 18, 2021

Unable to update or set property value using sql query

article here Given that SQLCODE is 100 (in other comment thread), might you have an index on %ConfigName that has not been built? What do you see from the following queries
Question
Luiz Henrique Carvalho Martarelli · Mar 5, 2021

How i can process a JSON

("Local") = "16@%ZEN.proxyObject" | %data("produto") = "CHP0001" | %index = "" +----------------------------------------------------- https://docs.intersystems.com/latest/csp
Article
Nikolay Solovyev · Aug 1, 2019

Nested set model for ObjectScript

of the corresponding properties in your class.Add an index on Root, Lft, Rgt Index TreeIndex On (Root, Lft, Rgt); Compile your class How to use Use %New(), %Save
Question
Han Ya · Sep 25, 2020

[help]SNMP Service can't connect with Caché SNMP agent(failed to open C:\InterSystems\Ensemble\mgr\snmpext.dat

:Config port = 1972, SNMP-capable = 116:58:25 : sorted (end) as index[0]16:58:25 :RegOpenKey for mgr dir SOFTWARE\InterSystems\Cache\Configurations\ENSEMBLE\Directory16:58:25
Question
Sadagopan Srinivasan · May 31, 2020

No Suitable Driver Found for jdbc:Cache://ipaddress:port/namespace

=> "SELECT * FROM AEADOCTOR " }}output {elasticsearch { hosts => ["localhost:9200"] index => "cachesql"}stdout { codec => rubydebug }} Values looks correct
Question
Marcel Schaefer · Dec 25, 2023

Access to a Global like ^name over odbc

Extends %Persistent [ SqlRowIdPrivate, StorageStrategy = MyGlobalStorage ] { /// Index Index KeyIndex On (year, key) [ IdKey, Unique ]; /// first key Property year As %Integer