I need to make a pass through query that is a make table query. As a normal pass through query, "SELECT user FROM dual" works just fine, forcing the user to login, and then selecting their User ID. I would like to store this in a table so that I can access it from other queries without forcing this query to be rerun each time (which in turn forces the user to relogin each time). I've tried "SELECT user INTO tblUserID FROM dual" as my Pass Through Make Table Query, but it gives me an ORA-00905 error: missing keyword.
Any ideas?
Any ideas?