Viewing 15 posts - 241 through 255 (of 2,356 total)
According to Paul White (and what I heard early on when they first started meta-caching of Temp Tables), dropping the tables does NOT prevent caching of Temp Table meta-data.
https://sqlperformance.com/2017/05/sql-performance/sql-server-temporary-object-caching...
February 9, 2023 at 1:54 pm
Shifting gears a bit, I'm hoping this year that work will be happy to pay (or at least contribute) to me getting out and going to some SQL based...
February 9, 2023 at 1:45 pm
That’s why I like you Jeff, you’re such a smart guy 😍🥳
Heh... if I were really smart, I'd just up and...
February 8, 2023 at 6:35 pm
That’s why I like you Jeff, you’re such a smart guy 😍🥳
Heh... if I were really smart, I'd just up and retire. That...
February 8, 2023 at 5:19 pm
Hi, It is possible to do in place upgrade. What is the error you are receiving in DEV environment. You need to run upgrade advisor to get which components...
February 6, 2023 at 8:21 pm
February 1, 2023 at 2:33 pm
ALTER PROCEDURE INSERT_INGREDIENTS
@Recipes_Name varchar (255)
,@INGREDIENTS_NAME varchar (255)
,@QUANTITY varchar (255)
,@UOM varchar (20)
AS
BEGIN
...
February 1, 2023 at 2:28 pm
Is this a parameter in a stored procedure?
If so, then use a table valued parameter and then it's very simple.
January 31, 2023 at 7:36 pm
If these are physical machines, and they started out as SQL 2008 boxes, then it's time to upgrade not just the software but also the hardware. There's no way a...
January 30, 2023 at 6:27 pm
There's nothing that should prevent a CNAME from working.
Also, it's not that difficult to rename a server. You would need to remove the existing server from AD, rename it and...
January 30, 2023 at 6:23 pm
What have you considered? Have you tried anything yet? Do you have a time frame that this needs to be completed within? Is your on-prem SQL 2017?
The possible methods are...
January 30, 2023 at 6:20 pm
Both the I/O latency and the I/O frozen issues are caused by Volume Shadow Copy service, which is being called by Veeam.
I am not that familiar with Veeam, aside from...
January 27, 2023 at 4:24 pm
A related problem I see is that they know where the data is, but the same data is in so many different places there is no understanding of what source...
January 26, 2023 at 1:47 pm
Are you also seeing "i/o is frozen..." messages in the logs? If so, Veeam uses Volume Shadow Copy service to backup the individual database files. Even though these last a...
January 26, 2023 at 1:44 pm
If the user is connecting using a SQL login, then the service accounts running SQL and SQL Agent need to be granted access.
If they are connecting using Windows Authentication, then...
January 26, 2023 at 1:25 pm
Viewing 15 posts - 241 through 255 (of 2,356 total)