Forum Replies Created

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

  • RE: Muting the Immutable

    That's the point Phil is trying to make. Static data can be maintained by SSDT tooling, but as you said, a bit clunky.

  • RE: Muting the Immutable

    I am in the process of transitioning our eCommerce database to the declarative model of SSDT to move the database development process into our CI pipeline. Using idempotent MERGE statements...

  • RE: Getting ready for Hadoop

    Here's a link talking about Spark.

    http://aptuz.com/blog/is-apache-spark-going-to-replace-hadoop/

    I'm no expert on this, but from the article, Spark is an alternative to Hadoop Map Reduce. Not really a replacement for the whole Hadoop...

  • RE: Getting ready for Hadoop

    I second that. Fantastic read. Great insight from someone who has obviously spent a lot of time working with the technology. Thank you for sharing.

  • RE: Have a Think

    Heh. See, I'm just the other way around. I sit and think all day long and do nothing. Perhaps I will do tasks for an hour this week just to...

  • RE: A Case FOR Cursors...

    Brian J. Parker (6/3/2015)


    To add to what qbrt is (I think rightly) pointing out, you can check ERROR_NUMBER() in your CATCH block and if it is 50000, you'll know that...

  • RE: A Case FOR Cursors...

    Rob Reid-246754 (6/3/2015)


    Ok, I totally get that as I do use TRY CATCH and all the ERROR_MESSAGE() ERROR_LINE() ERROR_NUMBER() ERROR_PROCEDURE() functions to get detailed errors in TRY CATCH statements...

  • RE: A Case FOR Cursors...

    IMO, cursors are there to be used for admin scripts to be executed manually. They can be a time saver.

    The philosophy I attempt to maintain in my SQL Server environment...

  • RE: A Case FOR Cursors...

    RonKyle (6/1/2015)


    Sometimes we use CURSORS in our order processing environment to move data between systems and changing statuses on each record processed. The main reason for using a cursor is...

  • RE: A Case FOR Cursors...

    Sometimes we use CURSORS in our order processing environment to move data between systems and changing statuses on each record processed. The main reason for using a cursor is that...

  • RE: Basics of Dimensional Modeling

    Alvin Ramard (9/9/2014)


    ... the de-normalization can occur in the dimension tables to keep the joins one step away. Although, that de-normalization is not seen in the article.

    Right? :unsure:

    Correct. ...

  • RE: Basics of Dimensional Modeling

    Chris Harshman (9/9/2014)


    qbrt (9/9/2014)


    First, you can run reports directly against the schema since the data is de-normalized and optimized for reporting.

    So, isn't the star formation created for the data actually...

  • RE: Basics of Dimensional Modeling

    Good quick read. And I have a question on the specific statement made at the end of the article.

    First, you can run reports directly against the schema since the data...

  • RE: SP Send Query Result as HTML table using DBMail

    Hi David,

    Thanks for your contribution. I am sure there is someone who may find this sproc very helpful. On the other hand, I shiver whenever I see a sproc with...

  • RE: How to receive Deadlock information automatically via email.

    Very nice, Geoff.

    Here's a script that generates a deadlock to force the alert. Good to test the job.

    Shamelessly lifted from some other forum, and since it worked for me, I...

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