Forum Discussion
Oracle DB Error: ORA-01555
- 8 years ago
That error is coming from the oracle database.
It is an issue with the length of time that your transaction has been open. Oracle is trying to preserve the read context (What the database looked like when you started the query), but the data it needs has aged out of the UNDO Tablespace.
You have two options:
- Tune your query so that the data is returned quicker.
- Talk to your DBA about increasing the size of the UNDO tablespace.
That error is coming from the oracle database.
It is an issue with the length of time that your transaction has been open. Oracle is trying to preserve the read context (What the database looked like when you started the query), but the data it needs has aged out of the UNDO Tablespace.
You have two options:
- Tune your query so that the data is returned quicker.
- Talk to your DBA about increasing the size of the UNDO tablespace.
Thanks.. I will reduce the Query size and try it over the weekend. Hopefully, it will work.
Is there a limit in Power BI on query time and table size?
Thanks