Forum Replies Created

Viewing 15 posts - 31 through 45 (of 61 total)

  • Reply To: Hopes for vNext

    In the DBMS; assertions - in the SQL Standard since 1992. They would make the implementation of multi-row and multi-table constraints much easier and much more reliable.

    In SSMS the possibility...

  • Reply To: Best Practices and Band Plans

    As an additional point, lobby Microsoft to implement assertions (in the SQL Standard since 1992) which would eliminate the need for constraints in triggers. I know that the implications for...

  • Reply To: Best Practices and Band Plans

    The referential and check constraints in SQL don't cover all possible necessary constraints.

    Therefore you need to use triggers to enforce these constraints.

    The arguments against triggers come from the Oracle camp....

    • This reply was modified 3 years, 3 months ago by  will 58232.
  • Reply To: Back to Basics

    They answer I gave were correct, but not elegant.

    Sometimes there is a difference between the right answer and the right answer for the interview. You have to know both and...

  • Reply To: Back to Basics

    I've found learning about the mathematical background to the relational model very enlightening.

    Some programmers and DBA seem to panic when I mention the "M" word, but the mathematics behind the...

  • Reply To: No-code Software Engineering

    And how it is actually stored and transmitted is not at all standard.

    Well of course not, the whole point of the relational model is that you don't have to know...

  • Reply To: No-code Software Engineering

    The information_schema is an ansi standard for SQL metadata supported by every DBMS. So the format for representing SQL data is standard.

     

  • Reply To: No-code Software Engineering

    SQL is not a data format, it's s syntax for querying data.

    You have perhaps heard of the DDL part of SQL?

  • Reply To: No-code Software Engineering

    I like no/low code tools, like Power BI and others.

    Back on topic!

    I am very impressed with what Microsoft have done with Power Query. They've put a lot of thought into...

  • Reply To: No-code Software Engineering

    There is no equivalent for a relational data set.

    You have perhaps heard of SQL?

  • Reply To: No-code Software Engineering

    So once again I can say this data will be in JSON format and that is a common format that can be processed by any number of standard interfaces.

    The proliferation...

  • Reply To: Should You Learn R or Python?

    I tried writing a linear regression function in Transact-SQL once. It was a lot of code - some of it necessarily dynamic. With R it is a single function -...

  • Reply To: Should You Learn R or Python?

    If you are doing anything statistical then R is the one to go for.

    Python is a general purpose programming language. BASIC isn't dead, it's just called Python nowadays ;-).

  • Reply To: No-code Software Engineering

    Tabs aren't recognized, here are the hierarchies again:

    Customer

    ----Order

    --------Order Line

    -----------Product

    Product Group

    -----Product

  • Reply To: No-code Software Engineering

    JSON is just JSON, any system that parses JSON can parse JSON, be that SQL Server, powershell or any other tool you might be using.

    JSON has the fundamental problem of...

Viewing 15 posts - 31 through 45 (of 61 total)