Hi,
I have created metadata based dash board in MicroStrategy using dremio. MSTR is trying to create set of temporary tables in dremio. Its failing at dremio side because each of the table creation is happening concurrently. For e.g.
Drop table t1;
Drop table t2;
Create table t1 as select * from dremio.test;
Create table t2 as select * from t1;
In the above example all 4 queries are firing in dremio concurrently. Each query is depending on each other. Can someone worked like this and help me to solve the problem.