sql查詢,目標資料庫查詢過多過慢導致timeout exception

2022-07-03 02:20:21 字數 313 閱讀 7630

1樓:善漾

distinct 本來就要排序,時間消耗很長,可以給fund_number加個索引試試,讓查詢的時候走索引。如果還存在timeout的情況,再考慮在where的條件後加些選擇條件,做這些主要都是為了減少查詢的時間;或者在程式裡強制寫上等待時間等等,一些想法,僅供參考,反正這個要慢慢測試。

c#連線mysql資料庫,怎麼設定超時時間

2樓:匿名使用者

在連線字串中新增connection timeout=n(n為幾秒),超過之後就觸發exception

sql怎樣跨資料庫查詢,sql怎樣跨資料庫查詢oracle

使用dblink。例如 當前使用的資料庫是orcl1 要查詢的資料庫是orcl2的scott使用者的表。create public database link orcl2 scott connect to scott identified by tiger using description add...

SQL子查詢過多查詢速度太慢如何優化

先行轉列行不行呢,以第一張表為例 select productguid,max case when num 1 then description end tz1,max case when num 2 then description end tz2,max case when num 3 then...

sql資料庫多條語句查詢結果合併輸出的問題

建立create proc p test rwmc varchar 30 gh varchar 40 asbegin select c.數量,c.資訊,c.id,c.版本,c.ip,c.次數,c.間隔,c.票換,c.黑名單,c.人數,c.備用1,c.備用2,c.狀態,c.ip段,a.票數1,b.票數...