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.
当我打开 toad sql 编辑器并在具有时间戳数据类型的列上运行 select 语句时,toad 每次都会挂起。但是当我trunc在时间戳列上执行时,数据会很快返回。使蟾蜍挂起的时间戳是什么?还有没有使用 trunc 的方法?
trunc
根据您提供的信息猜测:
您正在访问的表可能在 TRUNC(timestamp_column) 上有一个基于函数的索引,这会导致 Oracle 更快地检索数据。
您可以使用 toad 中的索引选项卡或使用 Oracle 中的 all_indexes 数据字典视图,看看您的特定表和列是否属于这种情况。
我真的怀疑这是否是 Toad 和 Oracle 时间戳的问题。