Viewing 15 posts - 331 through 345 (of 22,189 total)
Also, one thing to REALLY think about is backup and recovery. Storing files in the database means restoring those files with the database. That becomes a huge headache and can...
October 25, 2023 at 3:18 pm
Sure sounds like someone tried to enable Azure Arc or something similar. You sure you don't have anything going there?
October 25, 2023 at 2:21 pm
Strong, strong suggestion.
Don't.
Can you store files within SQL Server? Yes.
Is SQL Server good at storing and retrieving files? No.
However, if you're going to insist on doing it, then I'd focus...
October 25, 2023 at 2:19 pm
Yes, great article and great comments, and a neat quote from Jeff. When recognition and praise is given where it is due, everyone benefits.
And getting upset when others do well...
October 25, 2023 at 1:38 pm
You can always see the estimated memory allocation in the execution plan. An actual memory allocation is possible if you capture runtime metrics with the execution plan, also called an...
October 23, 2023 at 2:18 pm
That's about 5% of the table, so it's unlikely that an index will help tons. However, have you looked at the execution plan for the DELETE statement? How is it...
October 23, 2023 at 2:17 pm
I sure don't mean for it to be false praise, or even praise for nothing. I've just seen a few people get... for want of a term, upset when they...
October 21, 2023 at 4:05 pm
Focus on the fact that what you're looking at are databases. Ignore the concept of a server. Yeah, it's still there, but it's radically easier to make the shift if...
October 17, 2023 at 1:37 pm
Starting with the execution plan, you have a lot of issues. This is in no way a simple query. And views that join other views calling other views and functions,...
October 17, 2023 at 1:31 pm
Partitioning is a data management process, not a performance enhancement process. In fact, unless you can with 100% accuracy, guarantee that ALL queries against a partitioned table will be using...
October 17, 2023 at 1:06 pm
I am not sure profiler would be of much use to you even if it did support it, Synapse doesn't work the same way as a traditional SQL server...
October 17, 2023 at 12:52 pm
I'd need to see the execution plan to see how the queries are being resolved in order to make suggestions for improvement.
October 12, 2023 at 1:27 pm
Always? Every time? Hell no.
Frequently? Yeah, probably. If you're doing new or different functionality, then it's probably a good idea to have different structures to appropriately support that functionality. That's...
October 12, 2023 at 12:18 pm
I know you said the environments are essentially the same, but then you list a number of differences. It's likely that the reason you're seeing it one environment and not...
October 12, 2023 at 12:16 pm
What about simplifying this a bit and just use the TOP command. All you need is the ORDER BY. You don't have to go into all that row number...
October 12, 2023 at 12:13 pm
Viewing 15 posts - 331 through 345 (of 22,189 total)