Forum Replies Created

Viewing 15 posts - 1,171 through 1,185 (of 1,554 total)

  • RE: help with a sql query

    One of the beauties of SQL is how flexible it is. You can (practically) use 'anything anywhere', with very few exceptions. Naturally, this agility also comes with responsibility - take...

  • RE: help with a sql query

    When you're dealing with outer joins, it becomes very important where you place your criteria - in the ON clause or in the WHERE clause. Depending on placement, the actual...

  • RE: Settung identity property to the existing table column

    AFAIK you can't do that. You either need to create a clean new table, or 1) add a new column with the identity property and 2) drop the old column.

    Which...

  • RE: Parallel BCP

    There is a certain limit as how far you can 'parallellillize' it this way. In the end, you're bound to face a bottleneck somewhere. The most likely place I'd guess would...

  • RE: a little help needed for a programme

    I really doubt you would have to resort to dynamic SQL just in order to be able to mail a number of random adresses, or with a 'dynamic' mail body....

  • RE: Parallel BCP

    Without digging too deep into the why's of this kind of behaviour - for which there may be many reasons, ranging from source table locking behaviour to UMS scheduling for...

  • RE: Renaming fields with variables

    You're absolutely on the right track with that notion

    BTW, I want people to read that link, not as an encouragment, but rather the opposite....

  • RE: some questions for the post of DBA

    BOL is an essential source of information - not only occassionally, but on a daily basis. I urge you to begin using it - you won't regret it, I'm sure....

  • RE: Renaming fields with variables

    Agreed Transact SQL is fun.

    Though the only way to do what you want there, is to resort to dynamic SQL, and I don't...

  • RE: some questions for the post of DBA

    Sukhoi, no offense in any way, we are all beginners from the beginng, so here's some advice to you.

    Open up BOL (Books On Line) and start there everytime you wonder about...

  • RE: calling sprocs within a trigger

    It's hard to say, you don't say what error is, or what the trigger and sproc are supposed to do.

    In general, there is...

  • RE: E-mails are stuck in the Outlook

    I doubt that you can use SQL Mail with hotmail as the server. I believe you need an Exchange server of you own.

    /Kenneth

  • RE: Mutlipe row concatenation

    There is no optimized way to do pivoting in Transact SQL - if you want it to be as optimal as possible, this should be done at the client. SQL...

  • RE: Renaming fields with variables

    Could you explain a bit about why you want to do this? What kind of 'problem' will it solve for you?

    /Kenneth

  • RE: Very basic question - Insert or Update?

    Well, personally, I feel that every suggestion always should be both 'reliable' and 'atomic' - what good would it be otherwise?

    Assuming that what...

Viewing 15 posts - 1,171 through 1,185 (of 1,554 total)