Viewing 15 posts - 481 through 495 (of 49,571 total)
PageIOLatch = contention on the IO subsystem. That won't be fixed by more files, unless the files are on separate IO subsystems.
January 5, 2018 at 1:23 pm
January 5, 2018 at 8:10 am
January 5, 2018 at 7:31 am
January 5, 2018 at 6:48 am
Test if it's faster to move the databases by hand rather than over the network (copy to external drive, take to server room). Assuming not cloud, that is.
January 5, 2018 at 6:30 am
It prevents performance problems. That's why SQL caches the shells of temp tables, to make the process of creating new temp tables faster.
And you don't truncate them, because they're...
January 5, 2018 at 6:27 am
What is this query doing?
Can the process of getting data into the tables be changed so that the delete is not necessary?
January 5, 2018 at 6:25 am
It depends completely on the IO subsystem, how fast it can read and write the DB and, if there's a network copy involved, how long that will take.
48...
January 5, 2018 at 5:49 am
Ok, the problem is that CASE (SELECT ...) must only return a single column and a single row, because it's part of a scalar expression.
Multiple columns is easy, you...
January 5, 2018 at 3:21 am
Please post the entire query.
The code you posted has no subqueries, and hence cannot throw that error. It does however fail to parse with
Msg 102, Level...
January 5, 2018 at 3:02 am
January 5, 2018 at 3:00 am
They're either table variables or the shells of temp tables which SQL caches so that it doesn't have to do so much work to create new ones.
January 5, 2018 at 12:43 am
January 4, 2018 at 1:28 pm
January 4, 2018 at 1:25 pm
January 4, 2018 at 1:22 pm
Viewing 15 posts - 481 through 495 (of 49,571 total)