Viewing 15 posts - 151 through 165 (of 1,838 total)
LadyRuna wrote:Get off my lawn.
Whoa! Whoa! Whoa!
This is my lawn. You get off my lawn.
Oh, and test your backups on the way.
Can we find a way to use optimistic...
January 23, 2020 at 2:33 pm
The way Microsoft documentation online works, there is a dropdown in the left pane of the webpage that lets you select the supported versions. The pages for 2016, 2017, 2019...
January 23, 2020 at 1:59 pm
To troubleshoot the performance problem, have you looked at SQL Server waits to get an idea of what resources could be a bottleneck?
https://www.sqlskills.com/blogs/paul/wait-statistics-or-please-tell-me-where-it-hurts/
Also check out what's actually happening right...
January 22, 2020 at 10:05 pm
Using a SEQUENCE won't necessarily solve the problem of loosing consumed IDENTITY values. If an INSERT transaction rolls back, or the service restarts:
January 22, 2020 at 7:46 pm
is it possible to write the query in a way that you are just reading the data from the remote server through OpenQuery, then writing it to a local temp...
January 22, 2020 at 6:48 pm
Here's a link to some documentation about in-memory tables and the feature limitations:
It looks like in-memory and partitioning do not play well together, and there are a number of...
January 22, 2020 at 4:57 pm
Instead of thinking of it as "what is this table in a data warehouse" think of it more like "what is the business process that I want to model". Whatever...
January 17, 2020 at 7:54 pm
The Sort operation is coming into play because it has chosen poorly for which index on ClaimPaidDetail to use. The way the query is written, it looks like ClaimPaid.ServiceDate looks...
January 17, 2020 at 5:43 pm
Sorry, I had missed there was a second thread on this item. I agree with Jeffery Williams comment about determining why it won't use your ServiceDate index. Looking at the...
January 16, 2020 at 9:06 pm
Here are some initial observations based on the execution plan:
January 16, 2020 at 7:52 pm
looking at your execution plan, 9 million rows at 15 bytes per row is not very large, so it was able to read the entire table and do the table...
January 15, 2020 at 10:14 pm
I suppose it depends on your table definitions and the query you are using to "pull maximum values of date fields". That could mean a number of different things.
If for...
January 15, 2020 at 10:08 pm
Yes, that makes sense, and that is exactly the situation what I was proposing is designed to avoid. If your DEVOPS people need different permissions in different environments, just have...
January 15, 2020 at 6:41 pm
If you store the result in a date typed variable or column instead of VARCHAR, you could use the DATEFROMPARTS function introduced in 2012:
January 14, 2020 at 8:07 pm
I don't think Synonyms would help here, as that would help renaming an object within a database, but not renaming a server. HandyD's method is actually fairly easy to do,...
January 14, 2020 at 7:51 pm
Viewing 15 posts - 151 through 165 (of 1,838 total)