Will joining the temp table with dblinks will decrease the performance?
Joining the temp table with dblink will decrease the performance of the query?
My scenario is presently i am creating tables dynamically and storing the records in the tables.I am using dblinks to get the data from other tables.
So now i want to change the procedures to use temp tables instead of dynamically creating and storing.
So my only concern is the performance.Because i saw somewhere, joining the temp tables with the dblink tables will decrease the performance.
If this is yes can someone let me know what exactly happens when i use temp tables instead of dynamically creating them.
It would be helpful if someone respond to this immediately,because this is very urgent for me.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
But my question is "previously i used dynamically generated tables(not temporary tables).Now i want to use temporary tables instead of using dynamically created tables.
In some situations i may need to join the temporary table with dblink tables.
So if i join temporary table with dblink will that cause the performance problem.
If yes, then how?
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
You access dblink tables through network, its ought to be slower, whether you join it with temporary or permanent table. Why don't you first get the dblink tables locally and then perform whatever you feel like?
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Bookmarks