Forum Replies Created

Viewing 15 posts - 4,951 through 4,965 (of 6,486 total)

  • RE: The SQL * Wildcard

    Will -

    It won't work in 2000 (thus my "for those on 2005" warning). I am just leveraging the pseudo-graphical editor they built into SSMS to do that. ...

  • RE: help needed with stored proc....

    I don't know about what your process is - but all of the built-in encryption functions, even the ones in 2005, are wholely inadequate for storing Credit card info.

    You're going...

  • RE: The SQL * Wildcard

    here's another trick for those in 2005.

    1. write the statement with SELECT * in it

    2. highlight the code for that one statement, then right-click on it and pick "design query...

  • RE: Transaction log backups are huge

    Are index rebuilds really necessary nightly? As Paul Randal pointed out in another thread recently, nightly is usually WAY overkill, and just creates a lot of activity for little...

  • RE: SQL Query

    What is up with having this in your WHERE clause?

    (-1 = 3)

    That's always FALSE - so why include it?

  • RE: Counting in rows

    Here's an UNPIVT example:

    select iasmtID, sum(case when answer=1 then 1 else 0 end) as countOfOnes,

    sum(case when answer=2 then 1 else 0 end) as countOfTwos

    from

    (

    select iasmtid,question,answer

    from...

  • RE: Solving the "Running Total" & "Ordinal Rank" Problems in SS 2k/2k5

    good one - no doubt about it. I hadn't yet seen the merry-go-round in action, but it does make sense now.

    From what I've seem, the OVER syntax, and the...

  • RE: When to use cascade deletes/updates

    Keep in mind - the various methods mentioned aren't necessarily contradictory/ or exclusive. In cases where DRI is paramount for me, and I want to make SURE I don't...

  • RE: License for Business Intelligence Platform with SQL Server 2005 Standard Edition

    Business Intelligence Platform is a BusinessObjects product - not Microsoft. Are you referring to BIDS (Business intelligence Dev Studio?)? If so - yes - you should be...

  • RE: Query/SubQuery unexpected behavior

    The issue is - it is allowed because certain "legal" queries require the ability to use values from the outer query in the inner query. They're called correlated subqueries.

    for...

  • RE: Delete files olde than 48 hours based on filename, not date modified.

    Well - now that you have SQL server doing your file maintenance - any chance you can figure out how it can turn the coffee on in the morning?...

  • RE: Query/SubQuery unexpected behavior

    you're essentially right in how it works, but it's by design.

    During the resolve phase, it's going to try to resolve the field names in the sub-query by itself. Once...

  • RE: The Mistake

    Holly Kilpatrick (1/30/2008)


    Yes, at that link it does give the 4/8/08 date for the various editions, but for SQL 2000 SP4 it does not, it says until next service pack...

  • RE: Trigger causing performance issues

    Well - it's likely not going to use the clustered index to do seeks because of the <>. That being said - you may get it to use a...

  • RE: Trigger causing performance issues

    Kill the cursor - no doubt about that. multiple updates launched against a 48M row table, should more than likely be avoided.

    Also - looks to me that you'd end...

Viewing 15 posts - 4,951 through 4,965 (of 6,486 total)