Forum Replies Created

Viewing 15 posts - 76 through 90 (of 622 total)

  • RE: Huge number of tables

    and I expect in any given installation 50K of them are empty 🙂

  • RE: Translation to valid TSQL

    and the moral of this story is to indent your code properly 🙂  If you had done that you would have quickly spotted the missing END

  • RE: Execute same SELECT with a different condition

    Instead on inserting directly into a #temp table, build two CTE (common table expressions) and then link them together with the CT table using LEFT JOINS: you have to do...
  • RE: Stored Procedure Analysis and Design

    Nikos,

    Welcome to the boards and the world of SQL.  You will find the folks on this forum super-helpful but they are all busy people.  I would recommend looking...

  • RE: Representing XML data in SQL Server

    Personally I find XML (with an XML parser to properly do the indentation) much easier to read than JSON and it is a shame that JSON seems to be the...

  • RE: parsing log data

    and be thankful you are on 2016/2017.  JSON was not supported in earlier versions 🙂
    Alternatively, tell your boss it can't be done in SQL and get him to pay...

  • RE: dtsx job to import and export

    Sue_H - Monday, August 6, 2018 2:15 PM

    rchandra1 - Sunday, August 5, 2018 1:04 PM

  • RE: formatting T-SQL

    +1 for SQL prompt.  Also T-sql Cop which picks up a whole bunch of other code rules apart from just formatting.

  • RE: SQL Database Documentation

    Look at SQL Tool belt by Red Gate, the sponsors of this site.  some great documentation tooling, source code control and migration scripting functions.  Apex and Pragmatic Works (now part...

  • RE: Entity Framework and SQL

    getting OT now, but the business domain should drive both the EF model and the database schema.  EF and the fluent API is one way to build the database schema...

  • RE: Entity Framework and SQL

    Jonathan AC Roberts - Tuesday, July 31, 2018 3:47 AM

    Ideally all your SQL calls should be in stored procedures.

    As an SQL developer I...

  • RE: No alternative but row-by-row processing?

    looks like a gaps and islands problem to me.
    You might find it easier with a Date Tally Table too.

    You could RANK() the data and then take the...

  • RE: Storing multiple variations of the same data?

    This is really a question of semantics, if it is necessary to have a properly conformed name or address for legal purposes, I would argue that that is not a...

  • RE: SSIS Package Execution issue using ODBC Oracle Source

    Its been a while since I connected to Oracle.  Have you looked at the ODBC drivers from Attunity - I found them to be serveral orders of magnitude faster than...

  • RE: Cursors

    I would suggest the following two scenarios are appropriate for cursors:

    1) When you need to do something outside of CRUDing data in one or more table. (e.g. scripts...

Viewing 15 posts - 76 through 90 (of 622 total)