Forum Replies Created

Viewing 15 posts - 6,511 through 6,525 (of 7,597 total)

  • RE: Red lines under third occurance of a table name

    Sean Pearce (7/11/2013)


    ScottPletcher (7/11/2013)


    Sean Pearce (7/11/2013)


    bert.hooks (7/11/2013)


    Wow. Insults from an idiotic know-it-all.

    Pot --> kettle --> black.

    Excuse me for being defensive, but Microsoft products have been putting food on...

  • RE: linked server issue

    PearlJammer1 (7/11/2013)


    Scot - your suggestion worked. I had to enable the MSDTC service and now the distributed queries run.

    Thanks for the pointer !

    🙂

    No problem. That's the most common fix,...

  • RE: Red lines under third occurance of a table name

    Sean Pearce (7/11/2013)


    bert.hooks (7/11/2013)


    Wow. Insults from an idiotic know-it-all.

    Pot --> kettle --> black.

    Excuse me for being defensive, but Microsoft products have been putting food on my table since...

  • RE: Red lines under third occurance of a table name

    You could also just add a "GO" after the ALTER TABLE; that will put the SELECTs in a separate batch, by which table SQL should "know" they already exist, having...

  • RE: Tempdb issue

    After you issue the command(s) below, the next time SQL starts, tempdb will be sized accordingly.

    Split the 2GB into equal parts, for however many tempdb data files you have.

    For this...

  • RE: linked server issue

    First verify that DTC (Distributed Transaction Coordinator) is up and running properly on both(/all) instances.

  • RE: Red lines under third occurance of a table name

    I think SQL parses things a batch at a time. All your code is in the same batch, and the table is created in that batch. That might...

  • RE: Check if Function EXISTS before adding

    It's a kludge, but when I really needed it, I simply change the db context to tempdb if the function already exists in the main db, then delete the function...

  • RE: Implicit conversion using COALESCE or CASE

    ISNULL() has its own oddities:

    DECLARE @var1 char(1)

    SET @var1 = NULL

    SELECT ISNULL(@var1, 'N/A') -- Result = 'N'

  • RE: Implicit conversion using COALESCE or CASE

    I'd suggest using COALESCE also, keeping in mind the difference between it and ISNULL in regard to data types.

    Given that, in this case you could explicitly CAST the 99 to...

  • RE: substring comparison for last 2 characters

    SELECT

    mt.##col1##, ..., jt.##co11##, ...

    FROM dbo.maintable mt

    LEFT OUTER JOIN jointable jt ON

    --ignore last two bytes of patid if they are alpha, because it's...

  • RE: Delete data and Transaction Logs

    IIRC, partitioned views are allowed in Standard Edition (at least as long as you don't try to update using a distributed partitioned view?).

    As I noted first, a truly partitioned table...

  • RE: Delete data and Transaction Logs

    Ouch -- partitioning would be ideal for that situation.

    Depending on exact circumstances, you might be able to change the current table to be a view that's defined as a concatenation...

  • RE: OS + ldf or mdf + ldf sharing on RAID?

    While performance could be adversely affected, possibly severely, the really big problem, at least for a DBA, with data and logs for the same db on the same drive is...

  • RE: How will work with(nolock) option in select queries

    You could implement some type of SNAPSHOT isolation level. That will prevent the types of errors you get with (NOLOCK) and prevent readers from being blocked by writers.

    See Books...

Viewing 15 posts - 6,511 through 6,525 (of 7,597 total)