All Apps and Add-ons

DB Connect: Why no Column found on Timestamp?

Shadolu
Explorer

After Running the Query there is no option for Timestamp > Choose Column >  "No result"
Kindly see Image. 

Since I'm going to use the timestamp column well "Timestamp"

Shadolu_0-1649745033090.png

currently beginner here 

Tags (2)
0 Karma

tscroggins
Influencer

@Shadolu 

DB Connect can't parse the column names out of your SQL. It's a tedious rewrite, but you could try wrapping your CTE with an outer SELECT and explicitly listing the columns:

SELECT
    COLUMN_1,
    COLUMN_2,
    COLUMN_3,
    ...,
    COLUMN_N
FROM (
    WITH ... (
      ...
    )
    SELECT
        ...
    FROM
        ...
    WHERE
        ...
) T



Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...