Viewing 15 posts - 811 through 825 (of 2,863 total)
On top of what ratbak indicated - when you say "Azure SQL", do you mean it is an Azure SQL Instance, an Azure SQL Managed Instance , or an Azure...
October 29, 2021 at 4:54 pm
I expect you would get more help in a C# forum than a SQL Server forum, but I would reach out to your development team and work with them to...
October 29, 2021 at 3:13 pm
Brandie - are you using SQL Aliases OR DNS Aliases? If it is DNS aliases, you will likely need to include the instance name (for a named instance) when you...
October 29, 2021 at 2:57 pm
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
Viewing 15 posts - 811 through 825 (of 2,863 total)