I'm trying to create a view that will be used with Crystal Reports, in conjunction with other tables. The table the view is based on is the HR table, with user name and location. If I create the view:
select user_name, loc where SYSTEM_USER = user_name
This returns the correct result for the current user using the view, but what happens if multiple people are accessing this view, it could change the loc for the first request if it's still running when the second comes in?
select user_name, loc where SYSTEM_USER = user_name
This returns the correct result for the current user using the view, but what happens if multiple people are accessing this view, it could change the loc for the first request if it's still running when the second comes in?