发布新帖

Encontrar

问题
· 五月 2, 2018

How to do a SQL Query with Pivot

I have a lookup table and record batch Table I would like to do a count on the records stored in that batch by counting the number of records in that batch that have  a certain key on the responseKey column. This column keys are stored in the look up table for comparison. So I would like to do a join sql pivot that will use my keys stored in the lookup as columns and count as values

so far I have managed to do this but this is not efficient I would like to fire that sql once not on every count

SELECT * FROM
(
SELECT tMatch.DataValue, Count(*)
FROM ResponseRMAP.Record bRecord
JOIN Match ON tMatch.TableName = 'Match' AND tMatch.KeyName = bRecord.ResponseCode
WHERE bRecord.%ParentBatch = 55

)
 
1 Comment
讨论 (1)1
登录或注册以继续
问题
· 四月 6, 2018

Class storage definition in atelier

I am using Atelier + EGit plugins for a project. Is it possible to turn the storage definition off in Atelier so this does not get copied to Git when I make changes? While developing on different versions of the code on different systems, it may cause conflicts and excess noise in the source control history

6 Comments
讨论 (6)1
登录或注册以继续
问题
· 四月 2, 2018

Using ASP.Net Core 2.0 with Cache Object Script.

Hello all,

Is using ASP.Net Core 2.0 with Cache Object Script possible? I have it successfully working with .Net 4.5 using the supplied .Net 4.5 Dll file by Intersystems. Is there an updated Dll file for .Net Core 2.0?

Thanks

1 Comment
讨论 (1)0
登录或注册以继续
问题
· 三月 22, 2018

Creating Extension/Plugin for Cache Studio in Windows

Can any one give  suggestion on creating extension for cache studio in windows.

2 Comments
讨论 (2)0
登录或注册以继续
问题
· 三月 13, 2018

Sending PDF to Printer using Cache - Windows

Hi All,

I need some help with sending PDF files to printer using cache instead of using third party tools(Adobe, foxit reader, etc..).
Sometime i getting access issue with the exe files.

Can able to send text data to printer using below code.

Set Dev="|PRN|PrinterName"
OPEN Dev:(/DATATYPE="TEXT"):80
USE Dev Write "Test printing",!
CLOSE Dev


Any suggestions on sending PDF to printer?

3 Comments
讨论 (3)0
登录或注册以继续