Learning Documentation Community Open Exchange Ideas Portal Global Masters Certification Partner Directory Startup Hub
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 (313)
  • Replies (3,523)
  • Mentions (375)
  • Official certification & Credly badges (4)
  • Global Masters badges (90)
  • Followers (48)
  • Following (0)
AllAccepted answers
    go to post
Eduard Lebedyuk · Jun 9, 2022

When I developed this query I was concerned with large globals, certainly if there's an interest in small globals' size this might come useful.

0 0 https://community.intersystems.com/post/calculating-detailed-classtable-size?page=29#comment-192381
    go to post
Eduard Lebedyuk · Jun 7, 2022

Use %File:Rename, %File:CopyFile. Docs.

0 0 https://community.intersystems.com/post/rename-file-and-modify-his-name?page=29#comment-192211
    go to post
Eduard Lebedyuk · Jun 6, 2022
object="991@%Library.DynamicObject"

Somewhere the object was written into a global and read from it.

0 0 https://community.intersystems.com/post/passing-json-object-server-csp?page=29#comment-192136
    go to post
Eduard Lebedyuk · Jun 3, 2022

Use LOAD DATA sql command.

Older approach

0 0 https://community.intersystems.com/post/reading-csv-file-variable?page=29#comment-191841
    go to post
Eduard Lebedyuk · Jun 3, 2022

Picks up a message maybe (not sure what are you talking about in regards of jobs)?

Check Reply Code Actions.

0 0 https://community.intersystems.com/post/production-service-connections?page=29#comment-191821
    go to post
Eduard Lebedyuk · Jun 3, 2022

Mad respect for nailing that VSCode look without using VSCode code.

1 0 https://community.intersystems.com/post/cloudstudio-browser-only-code-editor?page=29#comment-191816
    go to post
Eduard Lebedyuk · May 29, 2022

You can also call it like this:
 

set rs = ##class(GMECC.DocmanConnect.Tables.vwNewGPs).GetRowsFunc()
while rs.%Next() { do rs.%Print() }

More info about implicit methods.

0 0 https://community.intersystems.com/post/why-doesnt-libraryresultset-classnamequeryname-doesnt-work?page=29#comment-191401
    go to post
Eduard Lebedyuk · May 26, 2022

Modifying initial request is debatable .

Rather I'd recommend setting a status variable to callrequest.Stream.CopyFrom(request.Stream).

This way request remains immutable.

1 0 https://community.intersystems.com/post/i-am-trying-create-simple-bpl-i-need-bpl-gets-stream-container-moves-end-stream-and-then-add?page=29#comment-191216
    go to post
Eduard Lebedyuk · May 25, 2022

Windows error codes are here.

ERROR_SHARING_VIOLATION

32 (0x20)

The process cannot access the file because it is being used by another process.

1 0 https://community.intersystems.com/post/file-delete-not-working?page=29#comment-191136
    go to post
Eduard Lebedyuk · May 11, 2022

I think we can safely consider this contest closed. Honestly, it's more of a discussion than a contest.

0 0 https://community.intersystems.com/post/code-golf-encoder-0?page=29#comment-189866
    go to post
Eduard Lebedyuk · May 8, 2022

Please post SQL plans for slow queries and class def.

WRC handles SQL performance issues.

0 0 https://community.intersystems.com/post/cloning-class?page=29#comment-189721
    go to post
Eduard Lebedyuk · May 6, 2022

Try:

Set production = ##class(Ens.Config.Production).%OpenId(productionId)
Set item = ##class(Ens.Config.Item).%OpenId(itemId)
Do production.RemoveItem(item)
Set sc = production.%Save()
0 0 https://community.intersystems.com/post/delete-item-production?page=29#comment-189576
    go to post
Eduard Lebedyuk · May 6, 2022

Congrats on that!

0 0 https://community.intersystems.com/post/code-golf-anagram-detector?page=29#comment-189561
    go to post
Eduard Lebedyuk · May 6, 2022

Great!

0 0 https://community.intersystems.com/post/code-golf-anagram-detector?page=29#comment-189556
    go to post
Eduard Lebedyuk · May 6, 2022

Nice use of routines. I think it's a first time we're seen routines in classmethods for code golf.

0 0 https://community.intersystems.com/post/code-golf-anagram-detector?page=29#comment-189551
    go to post
Eduard Lebedyuk · May 2, 2022

Call ForceSessionId to populate SessionId property at the beginning.

1 0 https://community.intersystems.com/post/setting-correlation-id-transaction-ensemble?page=29#comment-189121
    go to post
Eduard Lebedyuk · Apr 16, 2022

Thanks for noticing! Updated the link.

0 0 https://community.intersystems.com/post/generate-swagger-spec-persistent-and-serial-classes?page=29#comment-188021
    go to post
Eduard Lebedyuk · Apr 16, 2022

Great for demos!

I did something similar (based on @Dmitry Maslennikov code) but put VSCode in a separate container - this way I can use one VSCode image with any number of dockerized apps.

0 0 https://community.intersystems.com/post/adding-vscode-your-iris-container?page=29#comment-188016
    go to post
Eduard Lebedyuk · Apr 9, 2022

Using cap-add might allow for a more fine-grained control:

--cap-add SETUID --cap-add DAC_OVERRIDE --cap-add FOWNER --cap-add SETGID --cap-add KILL

Or in docker compose:

version: '2'
services:
  iris:
    cap_add:
    - SETUID
    - DAC_OVERRIDE
    - FOWNER
    - SETGID 
    - KILL
1 0 https://community.intersystems.com/post/using-intersystems-iris-containers-docker-201014?page=29#comment-187156
    go to post
Eduard Lebedyuk · Apr 7, 2022

Is it OK to use this partially rebuilt index  

Sure, as long as you're OK with getting partially consistent results.

1 0 https://community.intersystems.com/post/inserting-index-without-reconstruction?page=29#comment-187016
  • first
  • ‹ previous
  • …
  • 28
  • 29
  • 30
  • 31
  • 32
  • …
  • next ›
  • last
Eduard Lebedyuk
@Eduard.Lebedyuk
Senior Cloud Architect at InterSystems
MOD
Follow
Open Exchange profile

User statistics

Posts
313
Replies
3.5K
Likes
2.3K
Applications
39
Badges
90
Followers
48
People reached
328.5K
Accepted answers
788
  • 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