Viewing 15 posts - 1,051 through 1,065 (of 22,202 total)
That is a bit of a nightmare.
Just looking through the plan, I see four different plan affecting implicit converts. I see a missing join predicate error. I also see wildly...
December 1, 2021 at 1:48 pm
It's really just a question of breaking down the steps, as you have, and then implementing them one at a time.
One step you are missing though is cleaning the data....
December 1, 2021 at 1:37 pm
Never heard of that one. I went and looked up the shortcuts documented in SSMS. I think it's a custom one that someone put together. At least the current...
December 1, 2021 at 1:30 pm
You need to look at the logs. There's just not enough information to go on here. Here's a little help.
December 1, 2021 at 1:26 pm
The example query doesn't have a WHERE clause, so you're moving every single bit of the data. Indexes will help a little bit, but not much. A query that moves...
November 30, 2021 at 1:20 pm
ISNULL doesn't exist, but COALESCE is there.
November 29, 2021 at 4:02 pm
Ah, it's asking you to do a LEFT JOIN and then deal with the NULL values to arrive at the value of zero (0) for anyone who doesn't have...
November 29, 2021 at 3:50 pm
You really can't. A clustered index, columnstore or rowstore, defines data storage. You can't really redefine data storage without completely rebuilding the table. So, build a new clustered columnstore table...
November 29, 2021 at 3:44 pm
Nah, don't apologize. This forum is here to expand knowledge, so please, use it.
I haven't tried troubleshooting the DTA too much, so I'm not sure what you can do there....
November 25, 2021 at 1:34 pm
First, don't use the tuning advisor. It's actually more than a little bit dangerous in its recommendations.
Second, are you providing an XML input document? Is it that it's too large...
November 24, 2021 at 1:42 pm
Hard to know what to say here without detail.
Instead of cursors, use set-based queries.
There you go.
November 24, 2021 at 1:32 pm
You can't restore to another server & try to test it there? I'd argue it's important to get something like this right because messing it up could be painful.
November 22, 2021 at 3:36 pm
Testing is your friend. Try Phil's suggestion. It's likely going to be faster just based on the simple idea of data movement. Moving 100 million rows through the copy may,...
November 22, 2021 at 3:19 pm
Do you mean just a simple backup and restore, not data changes at all, no inserts, deletes, nothing like that, and suddenly SOME values are different after the restore?
Nope.
That doesn't...
November 22, 2021 at 3:16 pm
Viewing 15 posts - 1,051 through 1,065 (of 22,202 total)