Find out the currently running queries in teradata using SQL instead of viewpoint

venkat picture venkat · Feb 3, 2015 · Viewed 8k times · Source

I want to find out what are the queries that are currently under execution specific to a user or a group . I don't want to use view point . I need to achieve this functionality using a SQL.

Answer

Ahmed picture Ahmed · Feb 3, 2015

Try this

select * from dbc.SessionInfo;

you'll have a list of request with their user and group

I hope to help you