Viewing 15 posts - 856 through 870 (of 2,905 total)
I am pretty sure that SQL Configuration Manager aliases just put aliases on the server or on one individual workstation, not on all the client machines (don't quote me on...
October 28, 2021 at 8:56 pm
One thing about the CPU - a lot of SQL Server operations are single-threaded, so having a lot of cores may not benefit you. There are exceptions (as queries can...
October 28, 2021 at 3:05 pm
hahaha... no, that isn't what I meant Grant... I am going to edit that to be 99% agree with that.
October 27, 2021 at 9:53 pm
To me this sounds pretty easy to do and I expect there are multiple solutions, but my approach would be to break it up into multiple steps for the sake...
October 27, 2021 at 5:56 pm
I 99% agree with Grant (that is not one ugly dude). In-person events get you so much more interaction and discussion than virtual. Both from the presenter side and from...
October 27, 2021 at 2:49 pm
My opinion - this is the wrong site for that. This is a SQL Server forum, not an SEO forum.
My best guess though as to why some newly published blog...
October 27, 2021 at 1:41 pm
Your story sounds a lot like mine, except I don't lead a team... I'm just a member of a team of 3 DBA's who do non-DBA things (like development work)...
October 26, 2021 at 7:24 pm
Getting sp_executesql to work is pretty easy.
DECLARE @sql NVARCHAR(MAX)
SELECT @sql = '<insert dynamic SQL here>'
EXEC sp_executesql @sql
The only thing that makes your query a bit more tricky...
October 26, 2021 at 5:37 pm
Quick google of this brought me to this link:
Which basically says you cannot do it because SQL is expecting a static number of columns to be returned, but a semi-dynamic...
October 26, 2021 at 3:34 pm
I agree with Grant's first statement - that is asking for trouble and can be a scary practice... and if you read his signature, he is The Scary DBA!
Why it...
October 26, 2021 at 3:14 pm
NOTE - I am not an LDAP expert, but the following is my understanding of how the authentication chain works.
I think this was answered previously and my answer was that...
October 26, 2021 at 3:07 pm
My opinion - test it out.
Upgrading from 2008 R2 to 2019 MAY require upgrading your OS as well and, if I remember right, 2019 doesn't support 2008 compatibility mode.
What I...
October 26, 2021 at 2:59 pm
I wasn't sure if the Browser service was required for the default instance on port 1433 or not, but I generally start the browser service as soon as I install...
October 26, 2021 at 2:50 pm
As I said multiple times - Firewall. Just because port A is open in the firewall and you can connect to SQL instance B doesn't mean that port C is...
October 25, 2021 at 3:29 pm
First, I think you would likely get better support on a MySQL forum than a SQL Server forum.
Second, my understanding of MySQL is that it keeps the temporary tables in...
October 25, 2021 at 3:26 pm
Viewing 15 posts - 856 through 870 (of 2,905 total)