Rechercher

Digest
· Jul 22

Vote for the Best Demo in the InterSystems Demo Games!

Dear Community Member,

The InterSystems Demo Games is a new contest where our Sales Engineers showcase their creativity and technical skills in short demo videos — and now it’s your turn to help pick the winners!

Browse the demo entries, discover fresh ideas and smart solutions, and vote for the demos that impress you most. Your vote will help decide the winners.

✔ Voting is open until September 14th on the Developer Community.
👉 Visit the contest page and cast your vote!

🔗 Full details here

New demos are added throughout the contest, so don’t miss your chance to discover and support your favorites.

May the best demo win!

Announcement
· Jul 22

Lembrete: Testadores beta são necessários para o nosso próximo exame de certificação profissional InterSystems IRIS SQL

Olá novamente,

A InterSystems Certification ainda está procurando pessoas para o teste beta do exame de Certificação Profissional InterSystems IRIS SQL. Esta é uma ótima maneira de obter a certificação gratuitamente! Prorrogamos o prazo do teste beta para 31 de agosto de 2025.

Observe que apenas candidatos com a certificação InterSystems IRIS SQL Specialist pré-existente são elegíveis para fazer o beta. Para obter detalhes, consulte o anúncio original.

Obrigado!

Discussion (0)1
Log in or sign up to continue
Question
· Jul 22

Does IRIS support JavaScript asynchronous calls (async/await)?

Working on wrapping an IRIS Cache ObjectScript method that runs for a few seconds. Trying to get UI updates to show BEFORE the method runs in an async/await function. But it seems to be running synchronously rather than asynchronously . So my question is does IRIS/ObjectScript CSP pages support futures with JavaScript or does it run all synchronously.

2 Comments
Discussion (2)2
Log in or sign up to continue
Article
· Jul 22 7m read

Introduction to IRIS for SQL Developers and DBAs.

Are you familiar with SQL databases, but not familiar with IRIS?  Then read on...

About a year ago I joined InterSystems, and that is how IRIS got on my radar.  I've been using databases for over 40 years—much of that time for database vendors—and assumed IRIS would be largely the same as the other databases I knew.  However I was surprised to find that IRIS is in several ways quite unlike other databases, often much better.  With this, my first article in the Dev Community, I'll give a high-level overview of IRIS for people that are already familiar with the other databases such as Oracle, SQL Server, Snowflake, PostgeSQL, etc.   I hope I can make things clearer and simpler for you and save you some time getting started.

First of all, IRIS supports ANSI standard SQL commands and syntax. It has tables, columns, data types, stored procs, functions, ...  all that relational stuff.  And you can use ODBC, JDBC, and use DBeaver or whatever is your favorite DB browser.  So, yes, most of what you know and do from other DB's will work just fine on IRIS.  Yay!  

But what about those differences I mentioned?  Okay, buckle up:

Multi-Model: IRIS is a relational database, however it is also an object-oriented database, and also document store, and supports vectors, and cubes/MDX, and... well you see where I'm going.  The amazing thing about this is you can take advantage of all these models... in the same SQL statement!  And in many cases the data can be stored as multiple of these data structures — no need to store it twice — and certainly no need to have more than one type of DB!  When you access the very same data as though it were different data models InterSystems calls that CDP (Common Data Plane).  This is at least rare, if not unique, in the database industry.  Nobody paid much attention to CDP until the AI revolution made support for multi-model suddenly important. It's not a feature other DBs are likely to implement as it is baked right into the kernel.  IRIS makes multi-model and NoSQL and NewSQL easy for SQL folks:

For Object database, you extract a keyvals from the JSON tree, which is just the value in a regular table. 

-- example of Object database query
SELECT JSON_OBJECT('product':Product,'sizes':PopularSizes) FROM Sample.Clothing

-- this will return a list of key-val pairs. If a pair is missing IRIS 
-- will, by default, create one with a value of null.

For Vector, just think of it as simply another data type, but with some special functions that only work with that data type. 

-- example of creating a table with a vector column
CREATE TABLE Sample.CustEventV1 (
  CustID INTEGER,
  EventDt DATE,
  Vtest VECTOR(integer,4),
  EventValue NUMERIC(12,2),  
  EventCD VARCHAR(8)) 

-- You can use functions like VECTOR_DOT_PRODUCT or VECTOR_COSINE on Vtest

 

Taxonomy:  The terms database, schema, deployment, instance, etc are not used exactly the same by different database vendors. 

  • Instance: When you install the database software that is usually called an 'instance' by DB companies. I hear that term at InterSystems sometimes, but more often I hear the term 'deployment'.  This is probably because 'instance' is already used in the objected-oriented world.  Whichever you call it, the hierarchy for other databases is usually:
    • instance/deployment
      • database
        • schema
          • tables, views, etc.

            .. or maybe just:

  • instance/deployment (this *is* the database)
    • schema
      • tables, views, etc.

 

            .. but IRIS is a bit different in that it has an additional layer called 'namespace':

  • instance/deployment
    • namespace
      • database
        • schema
          • tables, views, etc.

Namespace is a logical entity that contains databases. Yet multiple namespaces can contain the same database so maybe it's not a hierarchy.  It's used mostly for access control. And it can contain databases from other instances/deployments!

HA: High Availability is accomplished through something called mirroring.  This is a type of replication where the entire DB is replicated, including code.  You may be thinking you don't want to replicate the entire database.  But because of namespaces, you can consider a database to be a sort of schema and break your data up so that what you want mirrored and not mirrored are in separate databases. 

Code Storage: So, yes, you heard me right; when you mirror a database the code goes with it!  This is a very new feature for some trendy databases but IRIS has always had this. You can put both code and data in the same database but typically people separate them.

ECP: Okay, Enterprise Cache Protocol is where IRIS gets really interesting.  I was not even aware this was possible, though I have since learned there are a couple of obscure NoSQL DB's that can do it.  With ECP you can set it up so that different deployments can share their caches!  Yes, I mean their actual memory caches.. not sharing the table data. It does this by keeping the cache of one deployment automatically in sync with that cache of a different deployment.  Talk about staying in sync!  It's super easy to set up, though it must be complicated behind-the-scenes. It's a whole different type of horizontal scaling and can make apps fly.

Translytical: This word, translytical, is used to describe a database that is both OLTP and OLAP. It may also be called HTAP or HOAP. Sometimes it's called hybrid but that term is too overused in the tech world so I'll stick with the T-word.  In the early days all DBs were translytical.  But with the advent of columnar and other structures, as well as new types of storage (think block store vs blob store) they got separated into OLTP and OLAP. Now vendors are trying to be both again.  It's a heck of a lot easier to add OLAP to an OLTP kernel than the other way around. Sure, DW-focused vendors can paste on some indexing for single-row lookups but I doubt you'll see them adding support for hard things, like triggers and fast inserts/updates, any time soon. The fact is that speedy OLTP is more complicated to build than OLAP.. it's a much more mature technology. IRIS is an excellent translytical database (see the analyst ratings to see why). For instance, some DBs support both row and column-store, but in separate tables.  IRIS can have row-store columns in the same table as column-store columns.

/* Example of row-store/column-store mix. 
   All columns are row-store (the default) except for EventValue.
   EventValue is explicitly defined as column-store. 
   If you queried average EventValue for the whole table it would be fAST! */
CREATE TABLE Sample.CustEvent (
  CustID INTEGER,
  EventDt DATE,
  EventValue NUMERIC(12,2) WITH STORAGETYPE = COLUMNAR,
  EventCD VARCHAR(8))

Installation: With other databases you usually need to either install it somewhere (on-prem or in the cloud) as you do with Postgres or SQL Server, or else use a cloud SAAS like RedShift or Snowflake. With IRIS it depends. There are three ways to get IRIS; via a license, via a managed service, or via Cloud SQL. 

  1. With a license you install, configure, and maintain it yourself. This can be on premises or whatever cloud you choose. Mostly, I've heard of it being run on AWS, Azure, GCP, and TenCent.
  2. With a managed service InterSystems will install, configure, and maintain IRIS for you on a public cloud. 
  3. With Cloud SQL it is a SAAS (or should I say PAAS? DBAAS?).  You don't install anything.  However Cloud SQL is a special case. It is designed to integrate into larger systems as a composable module, offering only a subset of IRIS functionality, such as SQL and machine learning (ML) functions.  The rest of this article is about licensed and managed IRIS, not Cloud SQL.

Embedded Languages: Besides SQL, IRIS has always supported an object oriented language called ObjectScript, which is a descendant of the MUMPS medical language. It's very powerful language but not many people know it. Don't worry, IRIS also supports Embedded Python. 

Documentation: Because IRIS has historically been intertwined with ObjectScript, the documentation tends to be worded in object-oriented terminology.  You may find simple things like tables referred to as 'persistent classes'.  But this seems to be fading from the documentation over time, and anyway you can just ignore it unless you want to be an IRIS coder.

So IRIS supports the SQL you know and love, as well as Python, is translytical, runs on prem or cloud, is multi-model, and has some futuristic features like ECP.  There is much more but these are the things that stood out to me as important and interesting.  I think they would be relevant to other SQL devs and DBAs coming from other products.   If that is you, and you are trying IRIS I would be interested to hear your thoughts on the experience.

1 Comment
Discussion (1)1
Log in or sign up to continue
Article
· Jul 22 4m read

Green Roof Parking Deck Market Set for Remarkable Growth

The Green Roof Parking Deck Market is experiencing unprecedented momentum as sustainability and urban greening trends reshape modern construction. With increasing demand for eco-friendly infrastructure in densely populated areas, green roof parking structures are becoming central to city planning worldwide. Green Roof Parking Deck Market solutions offer environmental, economic, and aesthetic advantages that appeal to both governments and private developers.

Cities facing heat island effects and stormwater management challenges are especially keen on adopting green roof technologies for parking decks. The ability to combine vehicle accommodation with environmental stewardship has accelerated investments in this niche sector. As regulatory frameworks tighten around sustainable building standards, green roof parking decks are evolving from a trend to a necessity.

Request a Sample Report: https://growthmarketreports.com/request-sample/58429

Market Drivers Fueling Adoption

Several core factors are propelling the growth of this market. Urbanization, climate change concerns, and heightened environmental awareness have created a fertile environment for innovation in building infrastructure. Green roof parking decks, which integrate vegetation and water management systems, are increasingly favored by municipalities striving to meet green certifications.

Furthermore, the growing emphasis on smart cities and sustainable development goals (SDGs) has spurred public and private investments. These decks not only reduce surface runoff but also provide thermal insulation, improve air quality, and support biodiversity in urban environments.

Emerging Trends and Innovations

Advanced materials and modular construction methods are transforming how green roof parking decks are designed and built. Innovations in waterproofing, root barriers, and lightweight soil systems have significantly increased the longevity and performance of these structures.

Another notable trend is the integration of solar panels and energy storage solutions on green roof decks. By combining renewable energy generation with greenery, developers are maximizing utility and ecological benefit on a single footprint. This dual-use model is drawing strong interest from commercial and residential developers alike.

View Full Report: https://growthmarketreports.com/report/green-roof-parking-deck-market-market

Regional Insights and Market Penetration

North America and Europe lead the global market due to early adoption of green infrastructure regulations and incentives. In the United States, cities like Chicago, New York, and Portland are investing in green roofs as part of climate resilience strategies. Meanwhile, Germany and the Netherlands continue to set benchmarks in Europe, with widespread adoption backed by strong policy support.

Asia Pacific is emerging as a promising region, especially in countries like Japan, Singapore, and South Korea, where space constraints and environmental pressures have fueled demand. The Middle East is also beginning to explore green roof parking decks in urban master plans, particularly in the UAE and Saudi Arabia.

Check Out the Report: https://growthmarketreports.com/checkout/58429

Market Challenges and Opportunities

Despite the market's growth trajectory, several challenges remain. High initial costs and complex structural requirements can deter small-scale developers. Additionally, the lack of standardized codes in emerging markets poses hurdles for adoption. However, these barriers are gradually being addressed through policy alignment, subsidies, and increased awareness about long-term returns.

The opportunity lies in retrofitting existing parking structures and incorporating green roof designs in upcoming projects. As technology advances and economies of scale are realized, green roof parking decks will become increasingly cost-effective and scalable.

Competitive Landscape and Key Players

The competitive landscape is becoming dynamic, with global and regional players competing to provide innovative green roofing systems. Key companies are focusing on partnerships, product differentiation, and expansion into untapped regions to enhance market share. Strategic collaborations between architects, civil engineers, and landscape designers are essential in delivering integrated solutions that meet both aesthetic and environmental standards.

Vendors are also exploring digital technologies like BIM (Building Information Modeling) to improve planning and execution, reduce waste, and optimize resources throughout the project lifecycle.

Future Outlook and Market Forecast

Looking ahead, the Green Roof Parking Deck Market is expected to witness robust growth across all major regions. Government mandates, ESG-focused investments, and changing consumer preferences are converging to push sustainable parking solutions into the mainstream.

According to industry forecasts, the market is set to grow significantly through 2032, driven by innovation in green construction, climate change mitigation goals, and the rising appeal of multifunctional urban spaces. In an era where every square foot counts, green roof parking decks offer a compelling intersection of utility, sustainability, and design.

Conclusion

As urban centers face mounting environmental and infrastructural pressures, green roof parking decks are no longer optional—they are essential. Their ability to harmonize ecological function with urban necessity positions them as a cornerstone of future-ready infrastructure. Stakeholders who invest early stand to benefit not only economically but also in terms of sustainability leadership.

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