문제

I am working with Hyperion and I have never used it before about two weeks ago. Someone else set up a .bqy file to get certain columns from a DB. He has one column with this formula in it: Trunc(date) where date included the date and time.

What that column shows, though, is not the date. It shows large numbers like this: 1,377,826,863,000. They all end in 000.

What are those numbers?

도움이 되었습니까?

해결책

Probably milli-seconds since the Epoch of 1/1/1970 with a resolution of 1 second, hence the 3 zeroes at the end. See Wikipedia article for "Unix Time" here.

You can convert to a string, using one of the methods here.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top