InterSystems Developers https://community.intersystems.com/podcasts InterSystems Intersystems Community info@intersystems.com We’re InterSystems Developers. Specialize in Data Platforms: InterSystemsIRIS, Caché, HealthShare en Intersystems Community We’re InterSystems Developers. Specialize in Data Platforms: InterSystemsIRIS, Caché, HealthShare Fri, 18 Oct 2024 11:00:13 -0400 ORU to MDM with large HL7 v2 messages. 0:00 I was working on a DTL but kept getting ERROR #5002. MAXSTRING errors. The problem was that most of the DTL GUI action steps only support the string data type when working with the segments. A `%String` has a limit of 3,641,144 characters and my OBX5.1 was 5,242,952 characters long as the example provided. Of course PACS admin stated ultra high quality up to and including 4K resolution files were needed, so we could not get the vendor to compress or reformat these files to compressed jpg or something similar. Fri, 18 Oct 2024 09:23:08 -0400 post576771 AI Integration in Vehicle Recycling 0:00 Introduction. In recent years, artificial intelligence (AI) has made significant strides across various industries, and vehicle recycling is no exception. As environmental concerns grow, auto recycling has become essential for sustainability, helping to reduce waste and repurpose old vehicles. The integration of AI into the vehicle recycling process has revolutionized the way old cars are dismantled, evaluated, and repurposed. This technological advancement is not only improving efficiency but also helping to create a more sustainable automotive industry. The Role of AI in Vehicle Assessment. Fri, 18 Oct 2024 08:55:14 -0400 post576821 Working Around SOAP Service Timeouts 0:00 Some of our applications provide SOAP services that use “DSTIME”-based SQL queries that return records that have recently been added or changed. Since the records don’t change often, these queries usually return a small number of records and therefore take little time. However, we sometimes make a table change that affects all records in that table. When that happens, on the next SOAP request from a SOAP client the service will run its query which will take an extra-long time because all records are included (for our apps, the queries return hundreds of thousands of records in this case). Fri, 18 Oct 2024 07:21:08 -0400 post555706 Helpful CCR Resources 0:00 Users of the InterSystems Change Control Record application (CCR) often ask for useful resources which can help them learn CCR and stay in the loop on updates. Please see this list of resources below and post ideas for additional resources or questions you may have! D.C. CCR Group - https //community.intersystems.com/tags/ccr Please "Follow" the group in order to see announcements on training opportunities, application enhancements, Q&A from users Please feel free to add your questions well, and tag with "Group = Other" and Tags = "CCR" to add them to people's CCR D.C. Thu, 17 Oct 2024 15:39:07 -0400 post576756 Amazon Jobs You Can Do From Home Amazon Work From Home Advantages 0:00 . Jobs at Amazon Work From Home Despite being the most well-known online retailer, Amazon is also one of the most valuable companies, offering a wide range of back-end services. Like many high-tech and service companies, Amazon started to shift a sizable percentage of its employees to remote work roles both during and after the pandemic. If you're considering about applying for a job with Amazon, check out this article regarding their work-from-home options. Thu, 17 Oct 2024 01:52:09 -0400 post576721 Unlocking the Power of Graphic Design: Transform Your Brand Today 0:00 In today's competitive market, Graphic Design is a crucial tool for businesses looking to stand out. From brand identity to marketing materials, well-executed design can be the difference between blending in and getting noticed. Whether you're a startup or an established company, investing in graphic design can help solidify your brand image, improve communication, and boost customer engagement. In this article, we'll explore how Graphic Design can elevate your business, specifically in the U.S. market, and why it's an essential investment for long-term success. Wed, 16 Oct 2024 18:31:07 -0400 post576706 Euro Car Parts Wigan: Your Ultimate Guide to Finding Quality Auto Parts at Thebuymax 0:00 When your car requires replacement parts, it is crucial to locate trustworthy suppliers to maintain its performance. Euro Car Parts is one of the most reliable names in Wigan and its surrounding area. If you require a component for regular car maintenance, a specific repair, or enhancements for better performance, Euro Car Parts Wigan is the ultimate solution for all your vehicle necessities. This article will delve into the distinguishing factors of Euro Car Parts in Wigan, their range of products, and how Thebuymax can assist in locating top deals on car parts. Tue, 15 Oct 2024 17:17:09 -0400 post576651 eBPF - Cilium on FHIR® - A Star Wars Story 0:00 . Anakin Skywalker challenged the high ground and has been terribly injured on Mustafar. He is a relatively new employee of the Galatic Empire, covered by a Large Group Planetary Plan and now has an active encounter in progress for emergent medical services in the Grand Medical Facility on Coruscant. The EMR deployed for the Galactic Health System is Powered by InterSystems FHIR Server running on Kubernetes protected by Cilium. Let's recreate the technical landscape, to be performed in the style of Isovalent Labs. Kind Cluster. Tue, 15 Oct 2024 14:03:08 -0400 post575001 Databricks Station - InterSystems Cloud SQL 0:00 . A Quick Start to InterSystems Cloud SQL Data in Databricks. Up and Running in Databricks against an InterSystmes Cloud SQL consists of four parts. Obtaining Certificate and JDBC Driver for InterSystems IRIS Adding an init script and external library to your Databricks Compute Cluster Getting Data Putting Data Download X.509 Certificate/JDBC Driver from Cloud SQL. Navigate to the overview page of your deployment, if you do not have external connections enabled, do so and download your certificate and the jdbc driver from the overview page. Tue, 15 Oct 2024 14:02:09 -0400 post571131 IRIS Data to Google Big Query - InterSystems Cloud SQL via Dataflow 0:00 The table. Prerequisites. Provision InterSystems Cloud SQL for temporary use You may need to make some phone calls or request access through the portal as I did to take the InterSystems Cloud SQL for a spin, but it is a very fast way to get up and running in seconds to carry out this demonstration or your IRIS Workloads.Inspecting your deployment, you can head over to the "External Connections" pane on the overview tab and build yourself a connection URL and retaining your credentials. Tue, 15 Oct 2024 14:01:09 -0400 post516686 Accelerating Digital Transformation with SAP HANA's Next-Gen Features 0:00 In today's rapidly changing businеss landscapе, digital transformation is no longеr an option but a nеcеssity. Companiеs arе incrеasingly lеvеraging tеchnology to еnhancе еfficiеncy, improvе customеr еxpеriеncеs, and gain a compеtitivе еdgе. SAP HANA, with its innovativе in-mеmory computing capabilitiеs, has еmеrgеd as a powеrful tool that accеlеratеs this transformation. Tue, 15 Oct 2024 04:45:09 -0400 post576621 What's the Catch? 0:00 Many programming languages use the try-and-catch construct to handle runtime errors gracefully. If the code within the try block encounters an error, it will throw an exception to the catch block, where the error handling occurs. Today we will dive into the ObjectScript implementation of this construct and discuss some ways to clean things up. ObjectScript Implementation Basics. To get started, we will first look at the basic structure of the try/catch block. The code block. In this case, ex is a variable name for the exception object that has been thrown. Mon, 14 Oct 2024 16:00:14 -0400 post576191 LLM Models and RAG Applications Step-by-Step - Part II - Creating the Context 0:00 We continue with this series of articles on LLM and RAG applications and in this article we will discuss the red boxed part of the following diagram. In the process of creating a RAG application, choosing an LLM model that is appropriate to your needs (trained in the corresponding subject, costs, speed, etc.) is as important as having a clear understanding of the context you want to provide. Let's start by defining the term to be clear about what we mean by context. What is context? Mon, 14 Oct 2024 05:56:09 -0400 post576541 LLM Models and RAG Applications Step-by-Step - Part I - Introduction 0:00 You have probably heard a lot about LLMs (Large Language Models) and the associated development of RAG (Retrieval Augmented Generation) applications over the last year. Well, in this series of articles we will explain the fundamentals of each term used and see how to develop a simple RAG application. What is an LLM? LLM models are part of what we know as generative AI and their foundation is the vectorization of huge amounts of texts. Mon, 14 Oct 2024 05:55:08 -0400 post576161 A Peek at IRIS Data Platform Performance Strategies 0:00 In the business world, every second counts, and having high-performing applications is essential for streamlining our business processes. We understand the significance of crafting efficient algorithms, measurable through the big O notation. Nevertheless, there are numerous strategies to boost the performance of systems built on the IRIS Data Platform. These strategies are equally crucial for optimizing overall efficiency. Let's join the journey for a sneak peek into the tips for making IRIS Data Platform work better, where every little trick will help your applications shine. 1. Fri, 11 Oct 2024 04:44:09 -0400 post555666 FHIRValidation - Validate your own FHIR IG using IRIS 0:00 This demo program is used to show how a custom FHIR profile can be employed to validate data compliance. The custom FHIR implementation guide was developed based on [FHIR Version R4](https //hl7.org/fhir/R4/index.html), and in this example implements the [Organization](https //hl7.org/fhir/R4/organization.html) resource extension to validating data compliance. # Installation 1. Download the project via Git clone. 2. Thu, 10 Oct 2024 14:59:08 -0400 post576331 My personal approach to Vectors 0:00 Motivated by personal feedback by @EDILSON.EBERLECARVALHO9706 and an excellent presentation of @Michael.Braam related to Vector Search I'd like to sharemy personal approach to Vectors.When I started and met vectors with 256, 384, and over 1200 dimensions - I felt lost.However my example Vector-inside-IRIS - a simplification of iris-vector-search - worked fine. Wed, 09 Oct 2024 15:08:12 -0400 post576241 Buy Affordable & Trending Jewellery Online in India 0:00 Discover timeless elegance at GracyJewellry.com. Shop our stunning collection of fine rings, necklaces, bracelets, and earrings. Unique designs perfect for any occasion. https //gracyjewellry.com/. Keywords buy trending & affordable jewellery online in India,gracy jewellery store near me,buy affordable fine jewelry gifts online,buy gold and silver bracelets for women,jewelry store near me,custom jewelry for special occasions,unique handcrafted necklaces online store,buy cheap designer jewelry online,elegant diamond engagement rings store,best online jewelry store in india. Mon, 07 Oct 2024 06:45:10 -0400 post576066 Reviews on Open Exchange - #47 0:00 If one of your packages on OEX receives a review you get notified by OEX only of YOUR own package. The rating reflects the experience of the reviewer with the status found at the time of review. It is kind of a snapshot and might have changed meanwhile. Reviews by other members of the community are marked by * in the last column. I also placed a bunch of Pull Requests on GitHub when I found a problem I could fix. Some were accepted and merged, and some were just ignored. So if you made a major change and expect a changed review just let me know. Sat, 05 Oct 2024 15:14:07 -0400 post575941 eBPF: Tetragon Security for IRIS Workloads 0:00 . Runtime Enforcement. So far in the eBPF Journey applied to InterSystems Workloads, we've been pretty much read only when it comes to system calls, binary execution, and file monitoring. But much like the Network Security Policies that were in play with the last post that enforce connectivity, what if we can enforce system calls, file access, and processes in the same manner across an entire cluster ? Fri, 04 Oct 2024 17:38:08 -0400 post571621 Global Summit 2016 - Authentication: When the Usual Won’t Do 0:00 Presenter Saurav GuptaTask Provide customized authentication support for biometrics, smart cards, etc.Approach Provide code samples and concept examples to illustrate various custom authentication mechanisms. Description In this session we will discuss customized way to solve various authentication mechanism and show case some sample code. Problem Using custom Authentication mechanism to support devices like biometrics, smart cards, or create an authentication front end for existing applications. Solution Code samples and concept examples. Fri, 04 Oct 2024 09:30:08 -0400 post407481 Uncovering Clues by Querying the Interoperability Message tables 0:00 When using InterSystems IRIS as an interoperability engine, we all know and love how easy it is to use the Message Viewer to review message traces and see exactly what's going on in your production. When a system is handling millions of messages per day, you may not know exactly where to begin your investigation though. Over my years supporting IRIS productions, I often find myself investigating things like. What sort of throughput does this workflow have? Where is the bottleneck? What are my most common errors? Fri, 04 Oct 2024 05:30:12 -0400 post555661 How to use the FreeSpace query of the SYS.Database class to check the free space on the disk where the database is located 0:00 InterSystems FAQ rubric. You can check the free disk space at any time using the system utility class The code block. and query The code block. Here's how to try it in the IRIS terminal (go to the %SYS namespace and then run it). The code block. The output result example is as follows. *In the command execution example, all databases are located on the same disk, so the free disk space (DiskFreeSpace) returns the same value. The code block. If you want to specify the database directory you want to refer to, run the following. The code block. Thu, 03 Oct 2024 11:21:12 -0400 post574866 How to promote your idea on InterSystems Ideas 0:00 Hi Developers! We're sure you want your ideas from the Ideas Portal to be implemented, so here are some steps you can take to attract attention to them. To promote your idea, you can. 1. Create a post on the Developer Community about your idea, inviting users to vote for it on the Ideas Portal. For example, @Heloisa.Paiva wrote an article "About the idea of Using Python Class Definition Syntax to create IRIS classes" mentioning "use Python Class Definition Syntax to create IRIS classes" by @Sylvain.Guilbaud. 2. Wed, 02 Oct 2024 16:59:08 -0400 post573556 MULTIEXCEL 0:00 Millions of professionals use a wonderful tool, spreadsheets, for engineering calculations and financial analysis. It attracts a user-friendly interface and clear data organization. Cell formulas provide rich opportunities for automating calculations. No programming is required. (For example, Microsoft Excel). But in order to expand the scope of the tool, it is necessary to increase the dimension of the tables and the speed of calculations. It is necessary to create a single, common database for a group of users. Cell formulas should be able to do everything. Wed, 02 Oct 2024 16:34:07 -0400 post508391 Improved code completion for object reference variables in VS Code ObjectScript 0:00 On 2024-08-29, the team released Language Server v2.6.0, which includes more improvements for code completion (aka intellisense). That means that #dim, while still useful, is hardly necessary anymore. That's a good thing in my opinion. This post from last year (Intellisense and code completion in VS code objectscript) talked about using #dim for code completion for OREFs. #dim has always been useful for both Studio and VS Code. But last year, VS Code ObjectScript was slightly behind Studio in this area, and #dim helped bridge that gap. But now, VS Code has surpassed Studio. Wed, 02 Oct 2024 13:46:09 -0400 post575711 Control IRIS database schema changes with Liquibase 0:00 In the modern world, the most valuable asset for companies is their data. Everything from business processes and applications to transactions is based on data which defines the success of the organization's operations, analysis, and decisions. In this scenario, the data structures need to be ready for frequent changes, yet in a managed and governed way. Wed, 02 Oct 2024 06:00:28 -0400 post575586 Cenforce 200 mg: High-Potency Solution for Effective ED Treatment 0:00 Erectile dysfunction (ED) is a common issue affecting millions of men worldwide, but it doesn’t have to diminish your confidence or quality of life. With advancements in medical science, effective treatments like Cenforce 200 mg have become available, offering a powerful solution for men dealing with ED. This high-potency medication has gained popularity for its ability to help men achieve and maintain strong erections, allowing for a more satisfying and confident sexual experience. Wed, 02 Oct 2024 05:33:08 -0400 post575731 Unleashing the Power of Vector Search with SQL-Embedding 0:00 ![sql-embedding cover](/sites/default/files/inline/images/screenshot_2_7.png) InterSystems IRIS 2024 recently introduced the vector types. This addition empowers developers to work with vector search, enabling efficient similarity searches, clustering, and a range of other applications. In this article, we will delve into the intricacies of vector types, explore their applications, and provide practical examples to guide your implementation. At its essence, a vector type is a structured collection of numerical values arranged in a predefined order. Sun, 29 Sep 2024 16:39:07 -0400 post575516 IRIS Test Data Generator 0:00 The test data generator is mainly used to generate test data, which can be used to generate test data for tables and fields to meet the needs of different fields according to different types, currently supports Text, Number, Enum, UUID, regular expression, Multiple date and time formats, and Time Seven different types. How to use. 1. Select a namespace, you can see all the tables under the namespace,. 2. Select the table we want to generate test data from, click on the field, and select the type on the right. 3. Sun, 29 Sep 2024 10:08:07 -0400 post575506