Learning Documentation Community Open Exchange Global Masters Certification Partner Directory Ideas Portal
Developer Community
  • Posts
    • InterSystems Official
    • Articles
    • Questions
    • Announcements
    • Discussions
    • Tags
  • Events
    • Tech Article Contest
    • Programming Contest
    • InterSystems Ideas Contest
    • Event Calendar
  • Products
    • InterSystems IRIS
    • InterSystems IRIS for Health
    • HealthShare
    • TrakCare
    • Caché
    • Ensemble
    • InterSystems Analytics (DeepSee)
    • InterSystems Text Analytics (iKnow)
  • Jobs
    • Job Opportunity
    • Job Wanted
  • Members
  • About
    • About Us
    • FAQ
    • Feedback
    • Report an Issue
    • Share an Idea
    • Code of Conduct
    • Contact Us

EN

Search by posts, members, tags
Language
EN|
ESPTJPCNFREN
  • Profile page
  • Posts (22)
  • Replies (496)
  • Mentions (87)
  • Official certification & Credly badges (3)
  • Global Masters badges (41)
  • Following (8)
  • Followers (18)
AllAccepted answers
    go to post
Alexander Koblov · Jan 9, 2020

Check if you have Windows-keys enabled in Terminal settings.

If yes -- this can handle Ctrl-C as "Copy to clipboard"

0 0 https://community.intersystems.com/post/how-quit-sysmonmgr-some-case?page=11#comment-82051
    go to post
Alexander Koblov · Dec 27, 2019

David,

relative cost is only useful when you compare different plans for the same query. By itself "relative cost" means nothing.

To look into query performance we need to see
a) Query itself
b) Execution plan
c) Sources of all classes / tables from the query, so that we see how fields are defined, indexes that are available and selectivity of fields.

0 0 https://community.intersystems.com/post/performant-index-date-field?page=11#comment-81376
    go to post
Alexander Koblov · Dec 24, 2019

Hi Federico.

Try %request.GetCgiEnv("HTTP_REQUESTFROM")

1 0 https://community.intersystems.com/post/get-header-value-http-request?page=11#comment-113776
    go to post
Alexander Koblov · Dec 20, 2019

I also see this error for some tables. I don't know what's causing this.

I've googled it and looks like some error with ODBC Connections from Power BI.

0 0 https://community.intersystems.com/post/connecting-remote-servercache-power-bi?page=11#comment-81141
    go to post
Alexander Koblov · Dec 18, 2019

Hi Vikram.

Looks like you trying to use InterSystems IRIS Power BI Adaptor to connect to Caché. This adaptor does not support Caché.

Use ODBC connection to connect to Caché from Power BI.

Hope this helps,
Alexander.

1 0 https://community.intersystems.com/post/connecting-remote-servercache-power-bi?page=11#comment-113686
    go to post
Alexander Koblov · Dec 2, 2019

Hi Laura.

There should be only one copy of zenutils.js. It should be only in csp\broker.

CSP Gateway first looks for any static file (including zenutils.js) in appropritate folder (.e.g. csp\samples). If file is not present there, CSP Gateway then looks for that file in csp\bpoker.

Hope this helps,
Alexander.

0 0 https://community.intersystems.com/post/recent-version-zenutilsjs?page=11#comment-113451
    go to post
Alexander Koblov · Dec 2, 2019

The best way to handle such problems is:

a) Enable Audit (System Administration -> Security -> Auditing)
b) Enable logging of audit events LoginFailure and Protect (Configure System Events)
c) Reproduce the error
d) Check Audit database if it has any reported LoginFailure or Protect events. If yes -- check details of these events.

1 0 https://community.intersystems.com/post/problem-connection-iris-atelier?page=11#comment-113436
    go to post
Alexander Koblov · Nov 29, 2019

Also write

quit:(param = "")

instead of

quit:param = ""
0 0 https://community.intersystems.com/post/getting-parameters-cleanly-property-definition?page=11#comment-79936
    go to post
Alexander Koblov · Nov 28, 2019

Hi Thembelani.

See InterSystems IRIS Adoption Guide (available in WRC -> Online Distributions -> Docs)

%Library.CachePopulate was renamed to %Compiler.Type.Populate

0 0 https://community.intersystems.com/post/does-iris-have-librarycachepopulate?page=11#comment-113356
    go to post
Alexander Koblov · Nov 27, 2019

The best I know is $TR/$J combination:

USER>w $TR($J("",10)," ","x") ; repeat x 10 times
xxxxxxxxxx
USER>w $TR($J("",5)," ","y") ; repeat y 5 times
yyyyy

3 0 https://community.intersystems.com/post/repeat-some-characters-n-times-objectscript?page=11#comment-113336
    go to post
Alexander Koblov · Oct 7, 2019

Relative cost is only used to compare different plans for the same query. Relative cost is not useful for comparing two different queries.

Can you post screenshot of both queries with corresponding plans?

0 0 https://community.intersystems.com/post/sql-and-order-id-desc?page=11#comment-76486
    go to post
Alexander Koblov · Oct 7, 2019

You should look into query plans for these queries.

Generally, they can be different.

0 0 https://community.intersystems.com/post/sql-and-order-id-desc?page=11#comment-112381
    go to post
Alexander Koblov · Sep 24, 2019

Maybe you have source control enabled in this namespace?

0 0 https://community.intersystems.com/post/studio-very-slow-specific-namespace?page=11#comment-112226
    go to post
Alexander Koblov · Sep 18, 2019

Unpack IAM-0.34-1-1.tar.gz first. Docker image is inside this archive

0 0 https://community.intersystems.com/post/error-load-iam-image?page=11#comment-112106
    go to post
Alexander Koblov · Sep 17, 2019

To add on what Dmitry said.

We need to see the query, its plan and corresponding classes with selectivity information.

For example, do you really want to run query without join condition?

select o.col1, o.col2, op.partnum, op.amount
from orders o join orderpositions op
where o.orderDate > $H-1000
1 0 https://community.intersystems.com/post/cache-and-sql-performance?page=11#comment-75556
    go to post
Alexander Koblov · Sep 17, 2019

Hi Kris.

What version of Caché do you have?

SetHttpHeader is correct method to add headers.

ISCSOAP began logging headers starting from 2016.1. In order to log headers you need to add "h" to the ^ISCSOAP("Log").

https://cedocs.intersystems.com/ens20161/csp/docbook/DocBook.UI.Page.cls...

0 0 https://community.intersystems.com/post/adding-new-field-web-service-api-call?page=11#comment-112046
    go to post
Alexander Koblov · Sep 12, 2019

No. You need to use Eclipse IDE Photon R with Atelier.

0 0 https://community.intersystems.com/post/intersystems-iris-studio-login-error?page=11#comment-75276
    go to post
Alexander Koblov · Sep 11, 2019

Well, it still works blinks!

0 0 https://community.intersystems.com/post/how-use-system-and-terminal-functions?page=11#comment-75196
    go to post
Alexander Koblov · Sep 11, 2019

Following this useful table (https://stackoverflow.com/a/33206814/82675) you can have blinking text as follows:

USER>write $C(27)_"[5m"_"Hello"_$C(27)_"[0m"
4 0 https://community.intersystems.com/post/how-use-system-and-terminal-functions?page=11#comment-111946
    go to post
Alexander Koblov · Sep 10, 2019

Contact InterSystems Support:

https://www.intersystems.com/support-learning/support/immediate-help/

1 0 https://community.intersystems.com/post/intersystems-iris-studio-login-error?page=11#comment-111906
  • first
  • ‹ previous
  • …
  • 10
  • 11
  • 12
  • 13
  • 14
  • …
  • next ›
  • last
Alexander Koblov
@akoblov
InterSystems Corporation
STAFF
Follow
Open Exchange profile

User statistics

Posts
22
Replies
496
Likes
427
Applications
3
Badges
41
Followers
18
People reached
15.2K
Accepted answers
221
  • Privacy & Terms
  • Guarantee
  • Section 508
  • Contest Terms
  • Cookies Settings
© 2025 InterSystems Corporation, Cambridge, MA. All rights reserved.

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up