In the new Snowflake Worksheet UI, how do you see the query history?

Viewed 179

In the "Classic Console" worksheet, at the bottom right you could see the query history, which was great for jumping around results set, and comparing SQL performance times.

enter image description here

How is this type of thing done in the new UI, I feel I have clicked on all the UI elements, but cannot find a history.

3 Answers

you could click on the history at the top right hand corner , it will show the different version of SQL executed, may be this is what you want.

enter image description here

The closest to the classic console history would be Home-->Compute-->History. At least you won't have to toggle between versions to look at query durations. Luckily, it opens on a separate tab and can be refreshed. TBH, the classic console has it better.

enter image description here

From the top corner history you can mouseover a certain row to get a preview of the executed query.

Mouseover a row in history image

Another option is to go to Query details and user the three dots and View Query Profile to get to the Activity/Query page

Query details image

And from there go to Query history where you can view the SQL code

Query history choose tab image

Related