Pesquisar

Announcement
· Mar 21

[Vídeo] Desbloqueando o aprendizado prático com o Instruqt

Olá Comunidade, 

Recentemente, @Dean Andrews, Chefe de Relações com Desenvolvedores, conversou com a Instruqt para compartilhar como a InterSystems está transformando o engajamento dos desenvolvedores:

>> Unlocking Hands-On Learning with Instruqt <<

“O Instruqt é útil para tutoriais interativos onde compartilhamos casos de uso específicos de nossa tecnologia com nossos clientes, parceiros e desenvolvedores ao redor do mundo... É uma maneira poderosa de mostrar aos nossos clientes e parceiros o quão fácil é usar a tecnologia InterSystems.” - Dean Andrews

Ele mencionou que, com uma comunidade global de mais de 22.000 desenvolvedores, a InterSystems precisava de uma maneira escalável e eficiente de mostrar sua tecnologia - da interoperabilidade de dados à IA generativa. Entre no Instruqt - uma plataforma flexível que permite a entrega de tutoriais interativos tanto sob demanda quanto em eventos ao vivo, como hackathons e Summits.

Ao integrar o Instruqt ao InterSystems Developer Hub e aos eventos, a InterSystems aprimorou o envolvimento dos desenvolvedores, reduziu a sobrecarga operacional e forneceu experiências de aprendizado imersivas, tudo isso tornando mais fácil do que nunca para os desenvolvedores explorarem nossa tecnologia.

Confira a entrevista completa para ver como estamos moldando o futuro da educação de desenvolvedores!

Discussion (0)1
Log in or sign up to continue
Announcement
· Mar 21

[Video] Unlocking Hands-On Learning with Instruqt

Hey Community,

Recently, @Dean Andrews, Head of Developer Relations, sat down with Instruqt to share how InterSystems is transforming developer engagement:

>> Unlocking Hands-On Learning with Instruqt <<

“Instruqt is useful for interactive tutorials where we are sharing specific use cases of our technology with our customers, partners and developers around the world... It's such a powerful way to show our customers and partners how easy InterSystems technology is to use. - Dean Andrews

He mentioned that with a global community of 22,000+ developers, InterSystems needed a scalable, efficient way to showcase their technology - from data interoperability to generative AI. Enter Instruqt - a flexible platform that enables the delivery of interactive tutorials both on-demand and at live events like hackathons and Summits.

By integrating Instruqt into InterSystems Developer Hub and events, InterSystems has enhanced developer engagement, reduced operational overhead, and provided immersive learning experiences - all while making it easier than ever for developers to explore our technology.

Check out the full interview to see how we’re shaping the future of developers' education!

Discussion (0)1
Log in or sign up to continue
Discussion
· Mar 21

Transforms in COS over DTL

Hi All,

  After doing IRIS/Ensemble etc for 20 years I've come across a company who have very odd view, especially about DTL's and routers.

  They have convinced themselves to use COS for transforms (including HL7) and for routers (and one of their 3rd party providers agree!)

  Their reasons are; efficiency, compatibility, flexibility, power and re-usability.

 

  Of course these reasons are wrong!

  • Efficiency, difference between 1-2 lines compared to a DTL/XML going to 3-4 lines (This also assumes the COS code is well written)
  • Compatibility, surely less with COS as its subject to developer style?
  • Flexibility, you can add <code> blocks in DTL anyway
  • Power, no idea what they are saying here?
  • Re-Usability,?

 

  My counter arguments are;

  • Non technical users can see the DTL in a GUI
  • You don't have to remember PID:5 is patient name for example
  • You get auto complete on using schema's
  • You will miss out on DTL specific functions (example lookups), albeit you could call the look up code in COS
  • Its bloody insane not to use DTL's for HL7!

 

  Anyway I could do with some other peoples opinions or examples I can present to convince them DTL's and routers (using rules) is the best way.

 

  Please help!

3 Comments
Discussion (3)3
Log in or sign up to continue
Question
· Mar 21

"garbled text" due to incorrect character encoding or decoding.

I am receiving the garbled text due to incorrect encoding or decoding. I tried to use the $zconvert function to convert it into the normal text but failed to do that. Can anybody suggest what I have to use to convert that into normal text?

Example: Garbled text that I am getting is "canââ¬â¢t , theyââ¬â¢re".

6 Comments
Discussion (6)3
Log in or sign up to continue
Article
· Mar 21 1m read

ジャーナルのON/OFFを、コマンドで操作する方法

これはInterSystems FAQサイトの記事です。


大量の更新を行うプログラムで、処理途中に何らかの問題が発生してもデータを初期化して再度実行することができる状況では、プロセスレベルでジャーナリングを無効/有効に変更することが可能です。

※但し、トランザクションのロールバックにはジャーナルが必要ですので、ロールバックを正しく動作させたい場合にはこの方法は使用しないでください。

以下のコマンドを使用します。更新処理の開始と終了(またエラー処理での終了)の際に以下のコマンドを追加します。

 //ジャーナリング無効化(停止)
 do DISABLE^%SYS.NOJRN
 
 //ジャーナリング有効化
 do ENABLE^%SYS.NOJRN


【注意】
こちらの機能は、ミラーリング対象のデータベースには使用できません。
DISABLE^%NOJRN を使用してジャーナリングを無効にしても、ミラーリングされたデータベースに影響はありません。


詳細は、以下のドキュメントをご参照ください。
ドキュメント:DISABLE^%NOJRN を使用したプロセス・レベルでのジャーナリングの管理

Discussion (0)1
Log in or sign up to continue