Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在多个数据库连接之间共享临时变量?
我有一个连接池,但是我的查询的性质使得每个查询都需要大量的临时表(但它们对于所有查询都是相同的)。通过使用连接池,我无权访问临时表。在仍然使用连接池的同时,有什么好的方法可以规避这个问题吗?
你必须想出一个不同的解决方案。特定于每个连接的临时表,不能共享。