Forum Replies Created

Viewing 11 posts - 1 through 12 (of 12 total)

  • Reply To: Widespread New Technology Adoption

    The worst is Microsoft's data access. After it had had DAO, and then ADO, it started with ADO.NET in 2021. A year after that the Data Access Application Block (DAAB)...

  • Reply To: Widespread New Technology Adoption

    The downside of adopting new technology is that each year there is new technology and what was new last year is now old. So if you by default choose the...

  • Reply To: DAX For SQL Folks: Part I- Intro to DAX, Power BI and Data Viz

    Thank you!

    There are a few typos.

    Table DimFactResellerSales is mentioned several times, whereas the table concerned is named FactResellerSales.

    In the explanation of Expanded Tables in DAX it says "The only table...

  • Reply To: Synonym-Given String

    Synonyms? Why would you NOT want synonyms? Of course you want synonyms.

    If someone wants to search for "Natural Language Processing" and types in NLP, do you think they'd be happy...

    • This reply was modified 1 year, 6 months ago by mschluper.
    • This reply was modified 1 year, 6 months ago by mschluper.
  • Reply To: Software Flexibility (Avoiding the next hack)

    Create a whole microservice for a coupon ordering process? As if microservices come free. You need to build it. Have a team to maintain it. And then you have to...

  • Reply To: Sources of Inspiration

    Meeting customers' needs.

    That's all I want.

    Any technology push stinks. And resume building is detestable.

    We are here to serve. If we can't relate our activities to a specific customer problem it...

  • Reply To: The Developer Arguments for Stored Procedures

    In my understanding, around 2005 people started to notice that developers were putting business logic in stored procedures, and they advised against this practice. When this advice was picked up,...

  • Reply To: The Sequel to SQL

    It's not about marketing vs developers. Not at all. It's not about doing away with the need for skilled professional developers. It's about getting things done.

    Information systems design is primarily...

  • Reply To: You're not really that good at SQL Server

    The longer I am in life, the more I think that many men don't learn to be good fathers. They learn just enough to solve the problems they face and...

  • RE: Data Profiling with T-SQL

    Two more errors I ran into:

    (1) Line 217 and 218 read
    ,MAX(' + QUOTENAME(@COLUMN_NAME) + ')
    ,MIN(' + QUOTENAME(@COLUMN_NAME) + ')
    I...

  • RE: Data Profiling with T-SQL

    The ISDATE function does not work for columns with long texts. 

    When I replaced 

            WHERE ISDATE(' + QUOTENAME(@COLUMN_NAME) + ') = 1)

    by

Viewing 11 posts - 1 through 12 (of 12 total)