Forum Replies Created

Viewing 15 posts - 136 through 150 (of 335 total)

  • RE: unusual SQl Mail Problem (stumper)

    OK, maybe I'm dim but this confuses me:

    "We configured the SQl 2000 client on another server (server b)"

     Do you mean you're using Query Analyzer on Server b to attach to...

  • RE: Copyright Hypocriticism?

    The problem with copyrights and patents is that the concept of intellectual property rights is fundamentally flawed.  (In that they are completely unnatural and in no way rights).

    As a result...

  • RE: Best practices for stored procedures

    Ah yes, the wascally wapper pwocedure.

  • RE: Tricky SQL

    When you have difficulty with multiple outer joins, you can always embed and do a join with an intermediate result set:

    FROM tablea a

            JOIN lookuptablea la ON a.key = la.key

           ...

  • RE: Multiple column left outer join for gurus

    Do a left outer join between b to a on both columns and filter (where ) a.keyfield IS NULL.  You only need the columns from b then in your result set.

     

  • RE: Trailing Spaces being automatically trimmed?

    It may just be a misunderstanding of the "LEN" function:

    create table #test ( a CHAR(10), b VARCHAR(10) )

    insert into #test SELECT 'x     ', 'x     '

    select len( a ) , len(...

  • RE: Data storage strategies - a balancing act

    If it's an application that I'm writing, I tend to wrap everything in stored procedures.

    I'd use a datamodel to define events and recurrence and also an actual date/what's going on...

  • RE: SQL Servers

    Somebody posted a script here using ISQL/OSQL some time ago as I recall.  Try searching for that in the script area.

  • RE: Why does this script return duplicate values?

    is it because backup file has an entry for both Database and Log?

    Perhaps you want to group and sum?

     

  • RE: Breaking one date-range into several, based on overlaps with other dates?

    I've done this before.  It is easiest if it's done in a multi statement proc.  Looping is not necessary though, it's just easiest to stage in temp tables for joining to...

  • RE: DBA vs Database Developer

    ??  That was me being nice... Oh well, back to work leading horses to water...

     

  • RE: Lost Fingers

    "The soapbox is now free."

    OK.  Ahem... "Consider the lily..."

    Yep, security is silliness.  Man's desire to surpass natural law and guarantee things that cannot be guaranteed mixed with his laziness:  Want...

  • RE: Unexpected Return Value

    Not sure what your specific problem is, but you may be talking about query analyzer only showing 256 characters of the result.  If that's the case modify max characters per...

  • RE: How to get output from this sp?

    if you're writing your own little utility that is only for you and your process (that is you're not passing it on as an aftermarket addon product to this vendor's...

  • RE: DBA vs Database Developer

    "Sometimes I wonder if I keep on working as database developer/DBA, what kind of future do I have?"

    What kind of future do you want? 

    If you're saying your boss(es) is...

Viewing 15 posts - 136 through 150 (of 335 total)