go to post Kyle Baxter · Nov 18, 2016 Well, that's a new one. Do you have Long Strings enabled on this installation? If not, you should. It will fix this problem, but also increases the max size a string can be from 32KB to something like 3.1MB, which allows a lot more flexibility in your development decisions. But that's another thing.To delete your query history you can run the following code in Caché terminal:NSP>k ^%sqlcq("NSP","SMPQueryHistory")Where NSP is the name of your namespace that's having this problem. You can also clear history from the Management Portal, though I expect you cannot get there with this error. Let me know if this works - if not I would advise you to open a new WRC issue by going to wrc.intersystems.com, emailing support@intersystems.com, or calling 617-621-0700. If you're lucky, you might even get to talk to me! :-)
go to post Kyle Baxter · Nov 16, 2016 When I want to run a bunch of statements I find it easier to open the SQL Shell and parameterize the queries. Like so:SAMPLES>d $SYSTEM.SQL.Shell()SQL Command Line Shell----------------------------------------------------The command prefix is currently set to: <<nothing>>.Enter q to quit, ? for help.SAMPLES>>update sample.person set name=? where name=?1. update sample.person set name=? where name=?Enter the value for parameter '1': KyleEnter the value for parameter '2': Testerexecuting statement with parameter values: set %tResult=%tStatement.%Execute("'Kyle'","'Test'")1Rows Affectedstatement prepare time(s)/globals/lines/disk: 0.1260s/4915/70580/0ms execute time(s)/globals/lines/disk: 0.0033s/10/110/0ms cached query class: %sqlcq.SAMPLES.cls14---------------------------------------------------------------------------SAMPLES>># 1. update sample.person set name=? where name=?SAMPLES>>#1update sample.person set name=? where name=?1. update sample.person set name=? where name=?Enter the value for parameter '1': Sexy Ginger GodEnter the value for parameter '2': Kyleexecuting statement with parameter values: set %tResult=%tStatement.%Execute("'Sexy Ginger God'","Kyle")1 Rows Affectedstatement prepare time(s)/globals/lines/disk: 0.0002s/5/98/0ms execute time(s)/globals/lines/disk: 0.0002s/5/113/0ms cached query class: %sqlcq.SAMPLES.cls14---------------------------------------------------------------------------SAMPLES>>Some notes: 1) Note that entering the hash/pound/tic-tac-toe sign (#) gives you a list of statements that have been run 2) You can run these statements by following that sign with the number. So #1 runs the first statement from this session (it's actually saved by process) 3) Parameterized queries do not need quotes, and can be easily rerun 4) Not allowing multiple statements per line is a way to help us be more resilient against SQL Injection attacks (that said, parametrization is still key).
go to post Kyle Baxter · Nov 14, 2016 The second option will be faster because we don't need to take in the whole object and put it into memory. The first option does have to do that. Here's a quick test that shows the second way is faster:SAMPLES>s ts = $P($ZTS,",",2) f i=1:1:100000 { s name= ##class(Sample.Person).NameGetStored(1) } w "Time: "_(($P($ZTS,",",2))-ts)Time: .139673SAMPLES>s ts = $P($ZTS,",",2) f i=1:1:100000 { s p= ##class(Sample.Person).%OpenId(1) s name=p.Name } w "Time: "_(($P($ZTS,",",2))-ts)Time: .504776Now, if you want to go SUPER-fast, you can skip all this objects mumbo-jumbo and get that info right from the global:SAMPLES>s ts = $P($ZTS,",",2) f i=1:1:100000 { s name = $LG(^Sample.PersonD(1),2)} w "Time: "_(($P($ZTS,",",2))-ts)Time: .029287However, this has no safeguards built in, and should only be used for your most dire of performance needs.
go to post Kyle Baxter · Oct 5, 2016 Hi David,Well you're in luck, because you're almost done! First you have to link the table. To do this go to the Management Portal: System Explorer->SQL. Then go to Actions->Linked Table Wizard. Choose the SQL Gateway connection from the drop down and choose your table. Go through the couple of screens where you can normally accept the defaults. Once you link a table, then you can interact with it as if it were local! That is, you can pretend the table is not linked, and use the SQL and/or Object access you're used to in Caché, and access the data in the remote tables. If you are having ANY trouble with this, contact the WRC and one of us will be happy to walk you through the procedure.
go to post Kyle Baxter · Sep 21, 2016 I want to take a moment here and advise you to be very careful with iKnow. iKnow is NOT a solution, it is a way for you to develop your own solutions (much like Caché and Ensemble, actually). While iKnow can give structure to your free text fields, it cannot tell you what to do with that information once you gather it. So before implementing iKnow and developing a solution, you need to know what it is you want to look for, the purpose of putting the iKnow structure on your data, and what you are going to display or show off once you get it.
go to post Kyle Baxter · Sep 9, 2016 You should use the newer stream implementations: %Stream.FileCharacter, %Stream.FileBinary, %Stream.GlobalCharacter, %Stream.GlobalBinary. Which one you use depends on what you want to do.
go to post Kyle Baxter · Aug 30, 2016 Well you could check if the first character is "<" or not. I am not sure you can write a valid Caché construct that begins with a less-than, while XML must, necessarily begin with one. So something like:s strm=##class(%Stream.FileCharacter).%New() d strm.LinkToFile(<file location>)if strm.Read(1)="<" return "XML"return "UDL"
go to post Kyle Baxter · Aug 29, 2016 You should contact the WRC at wrc.intersystems.com to help you debug this issue - we'd be happy to help!As a first guess, are you using Cache 5.0.2? If so those DLLs might be 32-bit and not match your 64-bit web server, causing some problems. I would suggest using the most recent CSP Gateway client, which you can also download from wrc.intersystems.com, and make sure you use 64-bit. From there, following those instructions has always led me to success in configuring webservers.
go to post Kyle Baxter · Aug 11, 2016 Sansa - you can check out the docs here:http://docs.intersystems.com/cache20152/csp/docbook/DocBook.UI.Page.cls?...let me know if that's not clear!
go to post Kyle Baxter · Aug 10, 2016 Shouldn't be too bad. I think all you need to do is to set up Caché as an ODBC Data source on the system. Steps are as follows: 1) Download Caché ODBC Driver from wrc.intersystems.com or .intersystems.com/pub/cache/odbc/2016 2) Go to Control Panel->Administrative Tools->Data Sources ODBC -> System DSN and create a new DSN with the InterSystems ODBC Driver. You will need to know the IP, Port, Namespace, and credentials for your Caché server. 3) Configure Crystal Reports to use that DSN. 4) ???? 5) Profit!