如何在KDB中重放多个日志文件

huangapple go评论55阅读模式
英文:

How do you replay multiple logs files in KDB

问题

当使用-11!来重放日志文件时,是否可以在多个文件上进行迭代。

仅仅使用

-11!each listOfFiles

会返回一个错误。

我不认为底层文件有任何问题,并已经进行了单独的重放以确认它们有效。所以只是想确认在这种情况下是否应该使用"each"?还是是否有其他建议的方法?

我只能找到关于重放单个文件的示例,所以想知道也许这种用法不受支持。

谢谢。

英文:

When using -11! to replay log files, is it possible to iterate this over multiple files.

Simply using

-11!each listOfFiles 

Returns an error.

I don't believe there is anything wrong with the underlying files, and have done individual replays to confirm they work. So just wanted to check if "each" should work in this context? or if there is some other suggested method.

I can only find examples of replaying an individual file so wondering if maybe this isn't supported.

Thanks

答案1

得分: 1

我认为你的语法有误,你想要

(-11!)each listOfFiles

或

{-11!x}each listOfFiles
英文:

I think your syntax is wrong, you want

(-11!)each listOfFiles

or

{-11!x}each listOfFiles

huangapple
  • 本文由 发表于 2020年1月3日 19:32:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/59577888.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定