Viewing 15 posts - 16 through 30 (of 247 total)
Tear-away, separate windows: SSMS 10000, ADS 0. Yeah sure, I can open up another instance of ADS, but no.
November 10, 2021 at 1:25 pm
Well, technically you *could* do this with SSIS, but the only ways I can think of involve a lot of hacky things to work around SSIS, like doing it all...
September 1, 2021 at 1:19 pm
Is there a schema collection in the database? Sounds like there is because you say the XSD is stored in the database.
You need to query the database schema collection, I...
March 31, 2021 at 1:09 pm
OMG I so agree, was just starting to post something about that! The one killer feature from Access that I wish was in T-SQL. Trying to translate Access crosstab queries...
March 3, 2021 at 4:03 pm
Yep, as I said, C# has a ternary operator (? : ) that is logically similar to IIF, and VB has IIF, but that doesn't really have much to do...
March 3, 2021 at 3:11 pm
If .Net developers can't figure out how to use a CASE statement, then train them better or get developers who can.
I don't think I'd blame this on .NET developers...
March 3, 2021 at 2:25 pm
I'm not certain if this info is pertinent to your question, but thought I would tell you anyway. If this isn't pertinent or you already know about this then please...
January 8, 2021 at 2:27 pm
You might also want to specify a connection timeout in your connection strings as well, if you start getting timeouts. I've had to do that as well as add the...
October 16, 2020 at 2:11 pm
Be careful with the output of your stored proc too, especially if you're outputting character data. I've had problems with VARCHAR columns being exported to Excel, ended up translating them...
October 8, 2020 at 4:36 pm
I'm not an expert at dimensional modeling by any means, but it seems to me you have a fundamental misunderstanding about how to model this data using the Kimball methodology...
August 23, 2020 at 5:45 pm
Well, I can get you part of the way, I think.
May 26, 2020 at 1:28 pm
You can do this with older versions of SQL Server too ( I have to use SQL Server 2008, doesn't support WITH RESULT SETS), but you have to do a...
May 15, 2020 at 1:25 pm
Is your new server clustered or part of an "availability group"? I think those are the right terms, I'm not an expert on that.
If this is the case, and assuming...
May 12, 2020 at 2:06 pm
Using embedded SQL / ORMs means that the DB login needs to be given all necessary rights to perform all operations.
How is that different than not using an ORM?...
March 6, 2020 at 5:45 pm
I had a similar difficulty in explaining why I felt procs were preferable to EF.
By "EF" do you mean "Entity Framework" as in Microsoft? You do...
March 6, 2020 at 1:50 pm
Viewing 15 posts - 16 through 30 (of 247 total)