SqlDataReader.GetValue Hangs
问题 I run a process built in C# .Net 4.6.1 that accesses a SQL Server database. The process runs on Windows Server 2012 R2 Standard. The SQL Server database is on another server with SQL Server version 11.0.6567.0 The process executes the following code: 01 var readStatement = “select * from TableA order by ColumnX,ColumnY, ColumnZ offset 0 rows”; // TableA has 13 million rows 02 var readCommand = new SqlCommand(readStatement, myConnection) { CommandTimeout = 72000 }; 03 var reader = readCommand