I am using following Query in Oracle 11g Procedures
Open cur_Test FOR
'''Select * from '|| DBUSER ||'.table_name''';
Its raising an error ‘Invalid SQL Statement.’
Can we call other user’s table in any user’s package or procedure?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It should be like this:
Of course you need to have
selectgrants on that table…