Forum Replies Created

Viewing 15 posts - 10,336 through 10,350 (of 14,953 total)

  • RE: Just testing the new code window... please disregard

    Man! Now I'm never going to get that one out of my head. It's doing "rounds" now! 🙂

  • RE: deleting some rows leaving one.

    I'm not clear on what your criteria are for which ones to delete, but one way to get rid of all but one row from a set is like this:

    delete...

  • RE: Transaction Confusion

    It looks like you probably had transactions open from the prior version of the thing. The current count seems to indicate that the change fixed it.

    Try closing the connection...

  • RE: A Better English Query

    Even "what were the sales last month?" is too vague for computer consumption. Are you asking for sales volume, or for what was sold?

    If I answered that question with...

  • RE: Transaction Confusion

    First, Try...Catch won't handle missing objects correctly. That level of error skips the Catch block and just crashes and burns. Anything that won't let the code compile (like...

  • RE: Extremely slow View - can I 'preprocess' the data?

    To be blunt, your best bet is to begin to re-engineer the whole system so that it doesn't use such a view. From what you're describing so far, it...

  • RE: SET IDENTITY_INSERT ON

    Don't use implicit inserts. That's the best solution. Name your columns, in both the insert and the select.

  • RE: A Better English Query

    Considering that I can't even get the Word grammar checker to accept the kind of convoluted sentences I often write, I'm not going to expect much from such a product...

  • RE: How to know what tables are not used?

    Same deal. Run a trace. It'll tell you exactly what's being used.

  • RE: Do DBAs Still Read Techincal Books?

    I learned SQL from Paul Nielsen's "SQL Server 2000 Bible", but I have to admit I haven't opened my copy of it in probably 3 years. But, in the...

  • RE: How to know what tables are not used?

    Run a trace on the database. Have it record which tables are accessed. From that, you can compare it to sys.tables, and find which ones aren't.

    Just be sure...

  • RE: Just testing the new code window... please disregard

    RBarryYoung (3/23/2009)


    Looks "Row-by-Row" to me. 😛

    On the completely non-sequitur side of things, thanks to your post, I now have the song, "Row, row, row your code, slowly onto the...

  • RE: To 64 bit or not to...trying to decide

    I'd have to go with, "try it on a dev box, see if it works the way you want it to". You can always change you mind, on a...

  • RE: SQL Server Job Notification

    Sure. On the Notifications tab, just select "On Completion", instead of either "On Failure" or "On Success". There's a drop-down for it right after where you put in...

  • RE: Books OnLine?

    BOL is a little to sparse and summarized for someone who doesn't already know their way around SQL Server a bit. I recommend an actual book on the subject...

Viewing 15 posts - 10,336 through 10,350 (of 14,953 total)