Viewing 15 posts - 1,216 through 1,230 (of 59,065 total)
I can vouch for the settings that Johan mentions because those are the ones that changed my life for backups years ago. However, I've found that they actually make restores...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2023 at 1:46 pm
Heh... Bing, Bard, BOOM! I've done some simple but non-basic tests on both and they've both failed miserably. Either the provide the wrong answer that wouldn't even run, produced the...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2023 at 4:29 am
Hi Jeff,
I do not have force parameterization turned on. The sp passes two parameters as input. One is productcode varchar and locationid int. I checked the data and there...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2023 at 10:27 pm
I had to laugh, in painful sympathy, at that last sentence, Grant.
Ha!
And we can keep going. Don't let Jeff get started on fragmentation. Don't let me get started...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2023 at 6:00 am
Just to ask the question, the servers aren't set to automatically shut down for a part of the day, are they?
If not, you might want to make a call to...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2023 at 5:52 am
To use out-of-row for LOBs:
EXEC sp_tableoption 'SchemaName.TableName', 'large value types out of row', 1;
That won't move existing LOBs. You have to update each row to get...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2023 at 5:41 am
Check to see if forced parameterization is on. If it is, first take a baseline to see what performance is on the box then turn it off and check again. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2023 at 5:37 am
We do nightly restores of two of our primary databases.
The large one is a 2TB database and has an 80GB log file with a compressed backup size of 500GB.
The smaller...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2023 at 5:31 am
The key to my learning in SQL is that I learned very early on that one good test is worth a thousand expert opinions and taught myself how to make...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 12, 2023 at 4:09 am
Not enough info to help here. Are you sure that you created the file group on the correct disk drive?
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2023 at 11:46 pm
Thank you everyone. It turned out to be a network issue.
What was the network issue???
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2023 at 11:40 pm
Using the sample data that you've so nicely provided, can you post what the required output is?
--Jeff Moden
Change is inevitable... Change for the better is not.
August 9, 2023 at 11:09 pm
Quick and simple. Converting a column from NVAR(MAX) to VAR(MAX) has drastically increased the data stored in the column.
Table size in MB is drastically higher after the conversion. There...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 9, 2023 at 2:49 pm
I find it interesting that this doesn't work when using the correct zero date for a datetime2:
DATEADD(dd,DATEDIFF(dd,'1900',DateValue),CONVERT(DATETIME2,TimeValue)) ...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 9, 2023 at 2:31 pm
None of those answers coming up on g0ogle are relevant to my question. They either talk about tracking down link servers which is not my issue, or they talk...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 8, 2023 at 8:50 pm
Viewing 15 posts - 1,216 through 1,230 (of 59,065 total)