Restrict a Batch user access from SQL Assistant

Viewed 17

Could you please guide me how to restrict a Batch user access only from SQL Assistant. I am using Teradata Version 17. Thanks in advance.

Regards, Umair

Restrict a Batch user access only from SQL Assistant

1 Answers

This could be your restriction filter:

select * from Dbc.sessionInfo 
where 
LogonSource like '% SQLA %'
Related