Find

Article
· Sep 5, 2024 1m read

第十六章 WS-Policy 配置类详细信息 - 自定义配置示例

第十六章 WS-Policy 配置类详细信息 - 自定义配置示例

自定义配置示例

本节提供了一些自定义配置类的示例。

策略备选配置

以下配置类包括两种策略选择:使用 WS-Addressing 标头或不使用。

Discussion (0)1
Log in or sign up to continue
Article
· Sep 5, 2024 1m read

Handling NULL in SQL

InterSystems FAQ rubric

In SQL, NULL data and the empty string ('') are different data. The method for setting and checking each is as follows.

(1) NULL data

[SQL] 

insert into test(a) values(NULL)
select * from test where a IS NULL

[InterSystems ObjectScript]

set x=##class(User.test).%New()
set x.a=""

(2) Empty string ('')

[SQL]

insert into test(a) values('')
select * from test where a = ''

[InterSystems ObjectScript]

set x=##class(User.test).%New()
set x.a=$C(0)

For more information, please refer to the following documents:

NULL and empty strings [IRIS]
NULL and empty strings

Discussion (0)1
Log in or sign up to continue
Discussion
· Sep 5, 2024

mirroring - cost effective solution

Our customer wants mirroring even on same network and it just increases the cost for us without helping much.
Are there better solution to avoid fake impression of HA?

10 Comments
Discussion (10)3
Log in or sign up to continue
Announcement
· Sep 5, 2024

Developer Meetup: Innovating on Health Data [GenAI, FHIR, Data Quality]

Hi Community, 
Join our next Developer Meetup in Cambridge, MA to learn the latest trends, tools, and features to Innovate on Health Data.

>> RSVP here <<

 

⏱ Day and Time: September 25, 5:30 p.m. to 7:30 p.m.
📍CIC Venture Café in Cambridge, Massachusetts

Talks:

1️⃣ Using GenAI to Simplify FHIR Search
In the rapidly evolving landscape of healthcare technology, the ability to efficiently and accurately retrieve patient data is paramount. Fast Healthcare Interoperability Resources (FHIR) is a standard that enables the exchange of healthcare information electronically. However, constructing valid FHIR search requests can be complex and time-consuming, especially for those unfamiliar with the intricacies of the FHIR standard.
In this talk, we will explore how Generative AI (GenAI) can streamline this process by translating natural language queries into valid FHIR search requests. Leveraging the power of OpenAI's advanced language models and the LangChain framework, we can build sophisticated FHIR applications that understand and process user queries in natural language.

We will demonstrate the end-to-end development of such an application, showcasing how these technologies can work together to simplify FHIR search operations. The demo will illustrate real-world scenarios where healthcare professionals can input natural language queries and receive accurate, actionable data from FHIR-compliant systems without needing deep technical knowledge.

Integrating GenAI with FHIR can improve accessibility and efficiency in healthcare data management. By enabling intuitive interaction with complex data systems, we can empower healthcare providers to make faster, better-informed decisions, ultimately enhancing patient care and operational efficiency.

Join us to see firsthand how GenAI will revolutionize FHIR search and gain insights into the future of intelligent healthcare applications.

Presenter: Patrick W. Jamieson, M.D.
Technical Product Manager, InterSystems
Bio: Patrick W. Jamieson, M.D. is the technical product manager for InterSystems IRIS for Health, specializing in FHIR and interoperability. Under his leadership, his team developed the IRIS FHIR SQL Builder. Dr. Jamieson's early career saw him practicing Neurology at the University of Pittsburgh, where he also conducted informatics research in medical expert systems. He later served as the product manager for real-time decision support at Cerner Corporation. Following this, he founded a natural language processing (NLP) company dedicated to analyzing radiology reports through innovative methods, resulting in six awarded patents. Additionally, Dr. Jamieson has been involved with multiple startup companies, focusing on predictive analytics and genomics.

2️⃣ Data Quality for Prior Authorization
Abstract: Learn how high data quality in healthcare applications can streamline medical prior authorizations to reduce delays in care delivery and improve patient outcomes.
Presenter: Aya Heshmat, M.S., Product Manager, InterSystems

Food, beverages, and networking opportunities will be provided as always.

Join our Discord channel to connect with developers from the InterSystems developer ecosystem.

Discussion (0)1
Log in or sign up to continue
Announcement
· Sep 5, 2024

[Video] Exploring a Basic RAG Application

Hi, Community!

Curious how a retrieval-augmented generation (RAG) application works? Take a look at this demonstration:

Exploring a Basic RAG Application

In this interview, I chat with @Elijah Cotterrell as he walks through a demo of his chatbot application. He shows what a RAG application can do, including:

  • Embed text data as vectors.
  • Perform vector searches.
  • Interface with a large language model to generate a response.

Learn more about developing generative AI applications (learning path, 2h).

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