Rechercher

Annonce
· Sept 25

★賞品決定★第3回 InterSystems Japan 技術文書ライティングコンテスト 開催!

開発者の皆さんこんにちは!

技術文書ライティングコンテストの開始(10月1日)まであと少しとなりました!💨

このお知らせでは、今年の賞品を発表いたします!

👀

🎁賞品情報🎁

審査員投票とコミュニティメンバーからの「いいね」の数の合計で順位を決定します。

1位~3位を受賞された方は、各順位に記載された賞品の中からお好きな1点をお選びいただけます。(1位の方は1~3位の賞品を、2位の方は2~3位の賞品をお選びいただけます)

🥇 1位

  • リカバリーウェア TENTIAL BAKUNEシリーズ
  • スマートリング Re・De Ring
  • アウトドアの体験ギフト EXCITING Gift Premium -エキサイティング プレミアム

🥈 2位

  • MYTREX DR. HEAT NECK
  • ソーダーストリーム TERRA スターターキット
  • アウトドアの体験ギフト EXCITING Gift -エキサイティング

🥉 3位

  • Bluetoothスピーカー
  • モレスキン クラシックダイアリー Large
  • スタバギフトカード(5000円)

 

🎁参加賞:投稿いただいた方全員に「モバイルバッテリー」をプレゼント!

 

1回目、2回目とは異なる賞品を!ということで賞品決めチームでいろいろ探してみました👀

高得点を狙う場合は、早めの投稿がおすすめです!(コミュニティメンバーからの「いいね」ポイントをより多くゲットできます!)

また、今年もボーナスポイントを設定しておりますので、対象の項目を含めていただくとポイント追加となります。

 

今年も沢山のご応募お待ちしております!💨

Discussion (0)1
Connectez-vous ou inscrivez-vous pour continuer
Question
· Sept 25

Source Control: Studio.Extension.Base.CheckIn showing a dialog with a single field?

In Studio, is it possible to call a dialog with a single input text field inside a custom Studio.Extension.Base.CheckIn method?

Update: The AI Bot just answered, not sure why it was at loss before I posted.

1 Comment
Discussion (1)1
Connectez-vous ou inscrivez-vous pour continuer
Annonce
· Sept 25

InterSystems Ideas News #25

Hi Community!

Welcome to Issue #25 of the InterSystems Ideas newsletter! Let's look at the latest news from the Ideas Portal, such as:

✓ General Statistics
✓ Recently added Community Opportunity ideas

   Here are some August numbers for you. During last month, we had:

  • 4 new ideas
  • 13 implemented ideas
  • 27 comments
  • 49 votes

👏 Thanks to everyone who contributed in any way to the Ideas Portal last month!

  Just in time for the new InterSystems External Languages Contest, here's a list of new Community Opportunity ideas:


✨ Share your ideas, support your favorites with comments and votes, and bring the most interesting ones to life!

Discussion (0)1
Connectez-vous ou inscrivez-vous pour continuer
Article
· Sept 25 1m de lecture

Ganhe certificados sobre tecnologia InterSystems

certification badge

Com os exames de cerficação padrão de indústria da InterSystems, você e seu time podem ganhar certificados qeu validam suas habilidades e demonstram sua expertise em tecnologia InterSystems. Encontre o teste correto para sua posição!

Discussion (0)1
Connectez-vous ou inscrivez-vous pour continuer
Article
· Sept 25 2m de lecture

About parallel queries (%PARALLEL)

InterSystems FAQ rubric

One way to optimize query performance is to use query parallelism on a per-query or system-wide basis (a standard feature).

This is a technique for dividing the execution of a particular query among processors on a multi-processor system. The query optimizer will execute parallel processing only if there is a possibility of benefiting from parallel processing. Parallel processing is only applicable to SELECT statements.

Note that the number of parallel processes cannot be specified, as it is automatically adjusted according to the number of CPUs. You can check the current number of processors in your system with the following command.

USER>write $SYSTEM.Util.NumberOfCPUs()
8

Previously, parallel processing was enabled by adding the %PARALLEL keyword to a query, but from IRIS2019.1 onwards, the default is "always enabled".

Management Portal:
  System Administration > Configuration > SQL and Object Settings > SQL
    Execute queries in a single process
    *Check this box to disable parallel processing (default is unchecked)

To disable parallelism on a per-query basis, specify the %NOPARALLEL keyword.

SELECT * FROM %NOPARALLEL Sample.Person WHERE ...

Note:
Specifying %PARALLEL may degrade performance for some queries. For example, specifying %PARALLEL when executing a query on a system with multiple concurrent users may result in overall performance degradation. In this case, use %NOPARALLEL to disable parallel processing for each query, or set the system-wide setting to "Execute queries in a single process."

For more information, see the following document: Query Parallelism
 

Discussion (0)0
Connectez-vous ou inscrivez-vous pour continuer