Forum Replies Created

Viewing 15 posts - 226 through 240 (of 992 total)

  • RE: returning data for a given month

    The author of the question never answered (as far as I could see) whether or not they wanted february of a specific year or every year's february instead.

    The former's been...

  • RE: A Little Variety

    I guess that's precisely why SSC and other SQL Server sites link to each other's articles 🙂 I've been learning most of my MDX (amazing how similar and then...

  • RE: TOP Updates

    It's not legal syntax in sql 2000.... no solution apart from using set rowcount

  • RE: Undo database changes

    If it's not your server then chances are you're not an administrator and won't have the rights to install the necessary bits to make it work 🙁 Sorry...

    Are you...

  • RE: Full and trans log backups size question ???

    I would suggest that you take a final log backup for the week, then do your maintenance work then start your backup cycle again with a full backup. I...

  • RE: time

    And obviously you'd use a check constraint on the table rather than something ugly like a trigger with a rollback inside it 🙂

  • RE: Reading a text datatype field! HELP!

    What client side tools are you using? Usually you can just select the column like any other.

  • RE: Full and trans log backups size question ???

    The transaction log backup consists of each transaction that you've performed against your database. If you have had many transactions between your full backup and your first log backup...

  • RE: When to use cascade deletes/updates

    Essentially if you're lazy then you can use cascaded deletes 🙂

    You may wish to consider adding a "deleted" flag to a record rather than actually deleting it anyway.

    Cascading deletes let...

  • RE: Compatibility mode

    I'd wager that most apps do run except for when they make strange modifications to system tables or have some odd naming conventions. Case in point - our software...

  • RE: Query using Case and Group by

    Nice code sergiy - this would generate a better exec plan. Perhaps the case statements should say else 0 rather then else NULL only because you'll get annoying warnings...

  • RE: Performance Tuning: Concatenation Functions and Some Tuning Myths

    It's always fun to watch what 3rd party software does in SQL Profiler 🙂 I particularly like some software that clearly uses string concatenation to build SQL statements in...

  • RE: View Column Resolving Issue in Sub-Query

    The article should really be removed or altered - it makes the site look bad 🙁

  • RE: Row-By-Row Processing Without Cursor

    I agree with Jeff - set-based is certainly best. The idea of using service broker in the background is pretty good. Often the rbar stuff, if absolutely necessary,...

  • RE: change compatibility level

    The BIG problem I have with 90 compatibility level is

    1. I still code and design using SQL 2000.

    2. The EM database diagram designer in SQL 2000 generates lovely code,...

Viewing 15 posts - 226 through 240 (of 992 total)