Forum Replies Created

Viewing 15 posts - 256 through 270 (of 335 total)

  • RE: Restoring to another server

    Are you sure the H drive is valid and the directories exist? I'm not sure that restore will create new directories.

    Also do you need the REPLACE option as well?

     

  • RE: DTS and Log File

    DTS usually uses a form of BCP to do the loads.  If you don't care about transaction control, then first remove the indexes on the table and the load operation...

  • RE: Select date/time field on a daily basis

    getdate() gives you current date time... converting (convert) it to string and trimming off (substring) the time portion will give you todays calendar date which you can look for all >=......

  • RE: UPDATETEXT Problems

    You might want to post the full script, this piece doesn't do anything that would generate that error.

  • RE: SQL query locks down

    You're not being clear enough...

    Is the update being blocked by another process (live lock)?  Or is it (perhaps) the only thing running at the time when it hangs?

    Then supposing you...

  • RE: Passing data in job steps with Global temp table??

    Permanent tables is the way to go if you're going to keep track of status/completion info...

    The ## tables have worked for me in multi step DTS packages as long as...

  • RE: Help with Datetime field ...Please help!

    1st, back in version 7 (I believe) the powers that be decided that you can't say x = null instead you have to say x IS NULL (stupid I think).

    As...

  • RE: Finding values in all tables where column data type is GUID

    I didn't go looking for that script (if you want people to know, post the exact URL)...

    but maybe your problem is matching a guid value in a key... if so...

  • RE: Cursors

    "After all, bad code (far too much!!!) is already written without this construct"

    And now this "far too much" will increase exponentially with this and other language additions. 

    As far as...

  • RE: Cursors

    And this is the nature of the issue:

    Put a "feature" which enables (theoretically) handling of sloppy code and the result WILL BE more--many, many times more-- sloppy code.  Guaranteed by...

  • RE: Efforts in Decision-Making vs. Transaction-Processing applications

    I have no idea, but in my experience....

    The upper echelons of corporations hold the purse strings and so they are much more willing to throw around a million or two...

  • RE: Cursors

    ayecarumba... they are going to spread the black plague of try/catch error handling to TSQL... yikes!

    This is the "I'm too lazy to write good code so I'll just dump it...

  • RE: UPDATETEXT Issue

    This is a shot in the dark because I don't have time to remember how all that works, but...

    Since your datatype is NTEXT shouldn't your statement use the "N" prefix...

  • RE: Question regarding Sql server 2000 column names and aliases

    It's not clear what you're really asking but perhaps what you're looking for is (are) views.

    You can create a view which has all the columns in the base table but...

  • RE: Cursors

    My point was made earlier, the questions I posed were not responded to, and the discussion digressed into threads of "what is coalesce", and some flaming... 

    (and I got really...

Viewing 15 posts - 256 through 270 (of 335 total)