英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论