go to post Alexander Koblov · Jun 29, 2018 If Audit is enabled and LoginFailure and Protect events are enabled and there is no audit event recorded when you enter username/password and see error after clicking OK. then I would say that connection attempt from Studio does not reach HealthShare. Can you do telnet on port 1972 from the computer where you have Studio? Instead of server specify IP-address of server with HealthShare C:\temp>telnet server 1972 Connecting To server...
go to post Alexander Koblov · Jun 29, 2018 I believe you can click Cancel on that "Communication link failure" error and then go to File -> Change namespace -> Connect -> choose the instance and then Studio will ask you for credentials
go to post Alexander Koblov · Jun 29, 2018 Scott, try to enable Audit and events Protect and LoginFailure and then check if any events are recorded in Audit log, when you try to login into Studio and see the error. http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Alexander Koblov · Apr 16, 2018 Nael, I think you need to use 4th argument of $zconvert: Set file=##class(%File).%New(..LocalFileName) Do file.Open("R") Set handle="" While 'file.AtEnd { Set Line=$ZCVT(file.Read() , "I", "UTF8", handle) // do something with Line } Do file.Close() Handle "contains the remaining portion of string that could not be converted at the end of $ZCONVERT, and supplies this remaining portion to the next invocation of $ZCONVERT." Please see reference for $zconvert
go to post Alexander Koblov · Feb 22, 2018 Thank you for sharing Mike. Please notice that Dynamic SQL looks for the host variable in the global scope. For example, consider following method: Class Sample.Sqlbindtest [ Abstract ] { ClassMethod test() { set minage = 80 set myquery = 3 set tStatement = ##class(%SQL.Statement).%New() set myquery(1) = "SELECT top 10 %ID AS id, Age , Name, %ODBCOUT(DOB) DOB, Home_State" set myquery(2) = "FROM Sample.Person WHERE Age > :minage" set myquery(3) = "ORDER BY 2" set qStatus = tStatement.%Prepare(.myquery) set tResult = tStatement.%Execute() do tResult.%Display() } } The query will refer to minage variable defined at the variable scope outside of method itself: SAMPLES>d ##class(Sample.Sqlbindtest).test() id Age Name DOB Home_State 0 Rows(s) Affected SAMPLES>set minage=20 // now we define minage SAMPLES>d ##class(Sample.Sqlbindtest).test() id Age Name DOB Home_State 41 21 Beatty,Emily I. 1997-01-21 ID 163 21 Mastrolito,David X. 1996-04-14 AL 32 22 Adam,Sophia V. 1995-12-12 CO 33 22 Xiang,Laura L. 1995-03-02 MN 87 22 Paladino,Violet P. 1995-09-14 MN 139 22 Goncharuk,Stavros D. 1996-01-24 RI 173 22 Zucherro,Dmitry R. 1995-03-28 AK 56 23 Zubik,Quigley N. 1994-03-26 ID 46 24 Rogers,Mo D. 1994-02-16 OR 142 24 Orwell,Zelda M. 1993-07-12 AL 10 Rows(s) Affected
go to post Alexander Koblov · Feb 5, 2018 Zwrite prints all control characters. E.g. USER>set a = "val1" _ $C(1) _ "val2" USER>write a val1val2 USER>zwrite a a="val1"_$c(1)_"val2" Also zzdump: USER>zzdump a 0000: 76 61 6C 31 01 76 61 6C 32 val1.val2 Generally, I would advise to use $ListBuild to separate records
go to post Alexander Koblov · Feb 2, 2018 I'm aware only of Edit -> Advanced item "Expand Commands" (Ctrl-E). It is visible only for routines, but shortcut also works for classes. Select some code, hit Ctrl-E. All commands, functions will be expanded to full name. I usually do Ctrl-A, Ctrl-E. http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Alexander Koblov · Jan 25, 2018 Generally, for long-running queries it makes sense to use external tools. E.g. DBVisualizer or SQuirrel Timeout for CSP Gateway to wait response from Caché is in Management Portal -> System Administration -> Configuration -> CSP Gateway Management. Then Default Parameters -> Server Response Timeout.
go to post Alexander Koblov · Jan 23, 2018 Hi Chris. As I understand %VID implies not the page number, but amount of rows to skip So if you have pages with 10 records on each page and you need to show 3rd page then you should use SELECT TOP (10) ... ... WHERE %VID > 20 -- that is page number 2 multiplied by 10 More info about %VID: http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Alexander Koblov · Jan 17, 2018 There is Preferences -> General -> Appearance dialog. Where you can select Dark theme. It seem to work OK.
go to post Alexander Koblov · Jan 10, 2018 Hi Francisco. Besides defining "/myapi" application in IIS you also need to add mapping of "*" extension to CSPms, as in "Registering Additional File Types with CSP" section of documentation. When adding this mapping ensure that "Invoke handler only if request is mapped to" is unchecked. Hope this helps, Alexander.
go to post Alexander Koblov · Dec 26, 2017 I think this is fixed in 2017.1.2: http://docs.intersystems.com/documentation/cache/releasenotes/201712/rel...
go to post Alexander Koblov · Dec 6, 2017 Hi Tani. Having said that this seem to work OK on my Atelier 1.1.386 + Caché 2017.2, you might check Error log and Network Activities for hints: Window -> Show view -> Other -> General -> Error Log and Atelier -> Network Activities
go to post Alexander Koblov · Nov 19, 2017 You might use %NOFLATTEN keyword. Also, you might check if extentsize for the tables and selectivities for the columns are correct (http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...).
go to post Alexander Koblov · Nov 16, 2017 You might use $ZEOF to check for file end. It should be enabled first: do $system.Process.SetZEOF(1) Then you can read file line-by-line as follows: do $system.Process.SetZEOF(1) set filename = "c:\temp\qq.txt" open filename:"R":2 if '$Test { write "cannot open file ", filename, ! quit } for { use filename read str quit:$ZEOF=-1 use $Principal write str,! } close filename
go to post Alexander Koblov · Nov 10, 2017 Best book for beginners that I can recommend is book "Caché Programming Orientation Guide" from internal documentation: http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=... Also (although it's not a book) there is https://learning.intersystems.com/totara/coursecatalog/courses.php with many courses on different sides of Caché and Ensemble
go to post Alexander Koblov · Oct 10, 2017 I would suggest you to run the query in terminal in $system.SQL.Shell() or using external tools via JDBC (DBVisualizer, Squirrel). By default Management Portal timeouts when query takes longer than 60 seconds. Also, see Caché SQL Optimization Guide, especially section "Interpreting an SQL Query Plan". Maybe the chosen plan is not optimal.