Questions tagged [intersystems]

InterSystems is a software company based in Cambridge, MA.

They sell many products related to software development, application integration and data storage including IRIS Data Platform, Caché, Ensemble, and HealthShare.

The products are based on the database (supports SQL, Object, NoSQL access) and the programming language.

Resources

Related tags

130 questions
0
votes
1 answer

How do I check a question has been answered in TrakCare?

First a bit of background. I am not a programmer. I'm a nurse who also happens to be a bit of a geek and would love to be a programmer. I've recently started working in our Digital team at the hospital I work at and we have a contract with, and…
AdvocateUK
  • 23
  • 4
0
votes
1 answer

Syntax to access Intersystems cache 2017.xx class properties with Python

I have a Python (3.7) process to access a cache 2017.xx instance. I want to look at the properties of the existing databases for the instance. I can not seem to find the proper syntax. This is code snippet: import codecs import os import sys import…
0
votes
1 answer

InterSystems ODBC error crashes Powershell

I'm trying to take some data through InterSystems ODBC driver with Powershell, but there is an error from the query execution (01004 "String data, right-truncated"). I want to ignore that (or handle this error in PS) and keep the script moving on.…
0
votes
1 answer

Connecting Caché database in Azure function

I'm looking to a way to "simply" access to a Caché database using python (I need to make sql query on this database). I've heard about a python package (Intersys) but I can't find it anymore (having this package would be the most simple way). I've…
0
votes
1 answer

Working with different timezones with Intersystems

Quite a complex scenario we are trying to solve but should be able to understand. We're developing a task executer that runs on a server with a certain timezone. The tasks run every day at a defined time, but in different timezones. We're saving in…
Mathew
  • 41
  • 5
0
votes
2 answers

How can we stop journalling on InterSystems IRIS instance?

Doing DISABLE^%NOJRN pauses journalling for the process. I need to stop/pause journalling for the whole instance. Is it possible?
Evgeny Shvarov
  • 468
  • 5
  • 17
0
votes
1 answer

Querying data from multiple odbc connections simultaneously?

I am creating a report with Crystal 2011. With all the reports I create with Crystal, I code the SQL first, then drop it into Crystal and use its formatting tools. We have Intersystem's Cache database. In the report I am currently creating, I need…
swimsterx
  • 15
  • 4
0
votes
1 answer

Does Flyway support InterSystems Cache Database migration?

Flyway DB migration tool supports wide range of databases. I'm wondering whether Flyway supports InterSystems Cache Database to handle basic DB migration tasks? Though it's not explicitly mentioned in flyway documentation, since flyway uses common…
0
votes
1 answer

does anyone know a JSON decoder für Cache 2008 (native Cache)

I have to decode the response of a rest service (only JSON response). Does anyone know how to do this in Cache 2008.2?
0
votes
1 answer

InterSystems Cache: How to store macro name in a variable then evaluate it

How can I store a macro name in a variable and then later use it? For example: Set myVariable = "AssertEquals" Do $$$myVariable(...) OR Set myVariable = "$$$AssertEquals" Do myVariable(...) Thought I could do something like the following but…
0
votes
0 answers

ModuleNotFoundError: No module named 'intersys.pythonbind31'

I want to connect cache database to python, but a problem occurred to me, I can import intersys, but I can't import intersys.pythonbind3.there's an error showed like this ModuleNotFoundError: No module named 'intersys.pythonbind31'
DylanLeeee
  • 31
  • 1
0
votes
1 answer

Is there a class method or command to view the globals in .gof files? and how to extract the specific global within gof files

I want to get one global within .gof files, such as there is a file named export.gof(contains ^a,^b,^c),but i just want to get ^b, so how could i get that specific global with a command or classmethod. thank you!
DylanLeeee
  • 31
  • 1
0
votes
1 answer

How to get the SMTP response in CACHE

I want to retrive the SMTP response after sending the mail. I need to fetch the response for the send mail (whether its send properly or not) The response must be like this Return-path: Envelope-to: ap@smartsnipe.com Delivery-date: Fri, 12 Dec…
praveenjayapal
  • 37,683
  • 30
  • 72
  • 72
0
votes
2 answers

InterSystem Cache Where Clause

I have a web application where I am querying an InterSystems Cachè database. The query is: SELECT TOP 10 "x_med_orders"."bnf_chapter","x_active_inpatients"."ward","x_active_inpatients"."lnkpid", "x_med_orders"."drug_description",…
0
votes
2 answers

Java connection via Globals API causes a StackOverflowError

I am trying to connect a Java application to an InterSystems Caché database via Globals API. import com.intersys.globals.*; public class Assignment { public static void main(String[] args) { final String user = "Andrew"; final…
Andrew Tobilko
  • 48,120
  • 14
  • 91
  • 142
1 2 3
8 9