go to post Jean Millette · Feb 13 Try concatenating the new item as follows: set mylist = "" for i = 1:1:5 { set item = "item"_i set mylist = mylist_$ListBuild(item) } The output is: zw mylist mylist=$lb("item1","item2","item3","item4","item5")
go to post Jean Millette · Feb 7 It's been almost 9 years @Eduard Lebedyuk :-) Have ever figured out how to call a linked procedure when running a select for data from a linked table? When I execute a select statement with only the call to the linked stored procedure, all works ok: select CRMBI.getPlanningRate(11,2023) Expression_1 0.94 1 row(s) affected But if I try to make that same call within a query to another table in that same package, I get errors: select ISCurrencyID, CRMBI.getPlanningRate(ISCurrencyID,2024) from CRMBI.CurrencyRate [SQLCODE: <-223>:<Gateway query Prepare() failed>] [%msg: <Connection 'CRMBILINKTABLES': Prepare(select T1.ISCurrencyID AS C1,(T1.ISCurrencyID...): SQLState: (42000) NativeError: [1] Message: [Iris ODBC][State : 42000][Native Code 1] [c:\intersystems\iris2021v1\bin\irisdb.exe] [SQLCODE: <-1>:<Invalid SQL statement>] [Location: <Prepare>] [%msg: < ) expected, , found ^SELECT T1 . ISCurrencyID AS C1 , ( T1 . ISCurrencyID ,>] >] Other queries to the linked table, without the stored procedure, also works just fine: select ISCurrencyID, USDRate, effectiveDate from CRMBI.CurrencyRate where ISCurrencyID = 11 and effectiveDate > '2022-12-31' and effectiveDate < '2023-01-31' ISCurrencyID USDRate effectiveDate 11 0.9392000 2023-01-01 1 row(s) affected Might be user error or a later message to the WRC, but thanks in advance if you have any ideas.
go to post Jean Millette · Jan 17 Thank you Dmitry; I confirmed it works when the dynamic arrays are stored in variables: %SYS>w $zv IRIS for Windows (x86-64) 2024.1.1 (Build 347U) Thu Jul 18 2024 17:35:51 EDT %SYS>set arr1 = [1,2,3] %SYS>set arr2 = [6,5,4] %SYS>zw arr1.addAll(arr2) [1,2,3,6,5,4] ; <DYNAMIC ARRAY> %SYS>do arr1.addAll(arr2) %SYS>zw arr1 arr1=[1,2,3,6,5,4,6,5,4] ; <DYNAMIC ARRAY>
go to post Jean Millette · Jan 15 I found an answer (thanks @Pravin Barton) Code sample to concatenate JSON arrays | InterSystems Developer Community |
go to post Jean Millette · Aug 14, 2024 I'm a big fan of the "old-school" debugging technique of embedding code to store interesting data into globals for later review after running the code to be debugged. In ObjectScript, the command would look something like this: Set ^mtempJJM("test", $i(^mtempJJM("test")) = "self=<"_self_">, "_name=<"_name_">" And then from terminal, issuing this command: zw ^mtempJJM("test") One can do something similar in Python using the syntax described on the pages linked below (syntax on how to increment the global index is left to the reader 😀 ): https://docs.intersystems.com/iris20242/csp/docbook/DocBook.UI.Page.cls?... Global Reference API | Using Embedded Python | InterSystems IRIS Data Platform 2024.2
go to post Jean Millette · Jun 13, 2024 Thanks for the vote Ben! I wanted to test the response to this idea here first before posting to other spots. Will be posting to the appropriate MS Discussion Forums shortly (great idea!). Thanks again.
go to post Jean Millette · Jun 11, 2024 Thank you @Anastasia Dyubaylo for posting this presentation from last year's Global Summit. I'm pleased to say that all continues to go "swimmingly" with our InterSystems IRIS Data Lake.
go to post Jean Millette · Mar 11, 2024 Thank you Luis for the link and for offering to save me a click (I admit I did click so I could read the details :-)). Best regards, Jean
go to post Jean Millette · Oct 16, 2023 Thank you David for writing this up. Will the Schema-level GRANT command (e.g., GRANT SELECT ON SCHEMA SQLUser TO NS1_Read) also provide "SELECT" privileges to the Views and any Stored Procedures in the schema or only to the tables? Thanks again
go to post Jean Millette · Sep 11, 2023 The containers web site is back up and running: InterSystems Container Repository Thank you for reporting the earlier outage.
go to post Jean Millette · Apr 28, 2023 An update on this... I had assumed that all was configured properly on the Report Server, particularly with respect to the required connections and gateways as described here: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls... I was mistaken. Also, we are running an older version of the report server (Version 1.12.7981.11681, from Sept. 2021), which does not provide the "New data source and gateway management experience" introduced in May, 2022. We're planning an upgrade of our Power BI Report Server and backing SQL Server and I'll revisit the use of DirectQuery to IRIS with some of our reports after that upgrade. Thanks again Carmen for the pointers and I'll update this post after getting this working as expected.
go to post Jean Millette · Apr 27, 2023 Hi Carmen, thank you for the clarification on the "Import mode" recommendation and for the link to something to try. Unfortunately, although the report shows up in the right spot on the report server, when I try to "Manage" the "Data Sources", that link is greyed out: I don't believe it's a folder/file permissions issue since I've saved other reports to this folder before. The example in the link you sent me used Direct Query to the SQL Server for its data. Since report configuration information is also stored in SQL Server and my report has no explicitly-defined connection to SQL Server, could that be an issue? I'm now looking at the backend SQL Server database where report information is stored for clues. I've found "rsInternalError" entries in the "....ExecutionLogStorage" table for each of the times I've tried to display the problem report from the server, but now looking for details of these errors. I'll update this post with more details as I find them, but other ideas (how to enable the "Data sources" link?) are most welcome. Thanks again, Jean
go to post Jean Millette · Apr 18, 2023 Thank you, Jeffrey. Yes, it would be good for completeness' sake and for making the "File->New File" less confusing. I'm good with the "right-click" in Explorer pane, etc. (got the same good "in-house" advice from @Pravin Barton )
go to post Jean Millette · Oct 27, 2022 Thanks @Ben Spead! It was fun to do and hope it helps (in a small way) increase people's use/understanding of embedded python.
go to post Jean Millette · Apr 25, 2022 Please check out this documentation, where there is an example of using an array holding the sql statement: %SQL.Statement - InterSystems IRIS Data Platform 2021.2 - including private class members According to that document, the query your code builds and passes to %Prepare is "UPDATE QUERY UPDATE QUERY", which is not valid.
go to post Jean Millette · Apr 22, 2022 When does "tSC" get defined? This line might be the problem, causing the for loop to stop: If $$$ISERR(tSC) Quit (Comment out that line and watch the results appear :-))
go to post Jean Millette · Apr 22, 2022 ...and, it's a shot in the dark, but how about putting parenthesis around each condition? (MessageName = :tMessageName) and (Identifier = :tIdentifier)