Forum Replies Created

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

  • RE: Help with two SQL issues

    Thanks guys. These seem to be working just fine for me. That saves me a lot of trial and error. I really need to delve into CTEs...

  • RE: A Little Interviewing Advice

    This was hanging in our elevators this morning...

  • RE: Does It Count?

    Downtime is downtime, scheduled or not. So IMHO it ought to be included.

  • RE: delete stored procedure for relationship many to many

    If you don't want to use a trigger, use multiple DELETE statements within your SP. Delete the proper "related" records (based on key value) before deleting the main record(s).

  • RE: Risk Analysis

    Ben Moorhouse (10/15/2010)


    With disk space getting cheaper and cheaper, I'm considering doing some basic disaster recovery for home.

    Copying all music/photos etc onto a big disk and taking it to a...

  • RE: Software Assurance Cuts Back

    I've taken advantage of the Home Use Program via my employer (US Air Force) a couple of times for Office (2007 and 2010) and Visio (2007 and 2010) but not...

  • RE: Risk Analysis

    I sure wish we spent more effort, especially after yesterday! I've on the development side, so it was "NMP" (not my problem) but our two-server SQL cluster, connected to...

  • RE: Sending multiple rows to the Database from an Application: Part I

    I'm a bit surprised that an Aug 2009 article updated Oct 2010 wasn't expanded to include SQL 2008 and the user-defined table type option. Anyway, if you're on 2008...

  • RE: Instrumentation

    Nothing fancy, but within our rather large .NET WinForms application, for some of the longer running processes we use a Stopwatch object and Debug.Print statements to show how long the...

  • RE: Selling Used Cars

    If you want to be good at something, you’ve got to do it a lot, and with a lot of variations.

    I think the "lot of variations" piece is the...

  • RE: Database Documentation: Joining up the Dots

    I would love to have the same XML documentation capabilities in SQL Server as in Visual Studio. I fact, we're using the same notation even though you can't do...

  • RE: Any way to have MIN take NULLS into account?

    Thanks guys. This is what I finally got to work (I'm using DATE datatypes)

    NULLIF(MIN(ISNULL(MyDateField, '1/1/1900')), '1/1/1900')

    I was getting "int" conversion errors using values other than '1/1/1900'. I actually...

  • RE: Backup database structure and schema only

    Jeffrey Williams-493691 (1/29/2010)


    I have found that the easiest way to do this is to use a comparison tool like Redgate SQL Compare.

    I will second this. Making a "clone" of...

  • RE: Physically remove record

    Everyone -- thanks a million for all the constructive inputs and feedback on my issue. Based on what everyone's ideas, here's what I came up with. Let me...

  • RE: Physically remove record

    matt stockham (2/2/2010)


    So what exactly are you trying to protect against? Is securing the application, SQL Server, drives, backups, network traffic (and don't forget the information could also reside...

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