Thông báo lỗi:
Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
Mình vừa làm xong cái site cho cơ quan và đồ án tốt nghiệp luôn upload lên VPS thì dính lỗi trên, sau khi dạo một dòng trên Google thì tìm ra phương pháp giải quyết, post lên chia sẽ cho anh em rút kinh nghiệm.
Lỗi trên có một số nguyên nhân dẫn đến như sau:
1. Số lượng kết nối MSSQL và thời gian kết nối MSSQL ngắn có thề tùy chình lại bằng cách vào "SQL Server Management Studio - Properties - Connections" điều chỉnh lại cho phù hợp.
2. Pool Size thấp để chỉnh cái này chúng ta có thể khai báo ở connectionString của mình ví dụ:
Trích:
string MyConnectString = "Data Source=.\\SQLEXPRESS;Initial Catalog=huynhvanmot;Integrated Security=True;Max Pool Size=100;Min Pool Size=5";
Mặc định Max Pool Size hình như là 75 (không rõ) tùy site lớn nhỏ chỉnh cho phù hợp.
3. Lỗi thứ 3 hay gặp nhất là chúng ta kết nối MSSQL thông qua một lớp khác, mở quá nhiều kết nối mà không có đóng lại.
Mình share cho các bạn BDClass của mình các bạn tham khảo và góp ý thêm nhé
Trích:
public static SqlConnection taoketnoi()
{
string chuoi = "Data Source=.\\SQLEXPRESS;Initial Catalog=huynhvanmot;Integrated Security=True;Max Pool Size=300;Min Pool Size=5";
SqlConnection con = new SqlConnection(chuoi);
con.Open();
return con;
}
public static DataTable TruyVan_TraVe_DataTable(string strSQL)
{
SqlConnection con = taoketnoi();
try
{
SqlDataAdapter da = new SqlDataAdapter(strSQL, con);
DataTable dt = new DataTable();
da.Fill(dt);
return dt;
}
finally
{
//'finally' block is ALWAYS get called.
con.Close();
con.Dispose();
}
}
Fix lỗi Max pool size was reached
Related Posts:
[SQLBackupAndFTP] The automatic email notification is not available in Free edition.And Job execution error: Free license allows backup 2 database(s) onlyIn the last week.we have problem with SQLBackupAndFTP free edition.The automatic email notification is not available in Free edition. Please ${https://sqlbackupandftp.com/buy|upgrade} or change the job settings. Fre… Read More
Cấu Hình MS SQL Always On See more video below: Part 1: Install MSSQL Part 2: CREATE CLUSTER Part 3: Cấu hình Always On Nguồn: itforvn.com… Read More
Auto Backup SQL Server 2008 Khi hệ thống database của bạn đang chạy tốt, có 1 điều bạn không thể không quan tâm đó là backup dữ liệu, có rất nhiều cách đề làm việc nầy, bạn có thể chọn trực tiếp database rồi chọn backup ra file bạn mong muốn, hoặc 1 số… Read More
Config MS SQL Cluster Server on Window Server 2012R2 Cấu Hình MS SQL Cluster Server Tren Window Server 2012R2 ---Document liên quan--- Link download MS SQL SERVER 2012 Tổng quan về cluster server SQL Replicate: + https://www.youtube.com/watch?v=K899pyz3z4U: (khái niệm… Read More
Khai thác lỗi SQLi khi gặp thông báo Microsoft JET Database Engine … Read More
0 comments:
Post a Comment