I have a database, with every users having a schema.
Is there a way to query a table in every schema?
Something like: select id, name from *.simulation doesn’t work…
Thank you for your help !
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.
No, you will need to write a function – either a server side function or a client side function in whatever language you’re using – that executes the query once for each schema.
You could also create a VIEW that does UNION ALL between all the schemas, but that’s going to be a lot of work to maintain if your schemas are dynamically added and removed.