Forum Replies Created

Viewing 15 posts - 41,686 through 41,700 (of 49,562 total)

  • RE: clusterd index

    CrazyMan (1/16/2009)


    Alter table

    Alter table Table Name Drop Constraint ConstraintName

    True, if the clustered index is part of a primary key or unique constraint. If it's just...

  • RE: Are the posted questions getting worse?

    Adi Cohn (1/16/2009)


    Actually when you have legal weapons there are procedures in air lines that lets you fly with your weapons.

    I think it depends on the airline and...

  • RE: How to move log file ON-LINE ?

    Suresh Kumar Maganti (6/11/2008)


    The path would be changed in catalog views immediately but the actual log file would be physically moved to the new location at the next restart of...

  • RE: How to restore .bbk file to SQL!!!!!

    What's a .bbk file? It's not the standard extention for a SQL backup (though that doesn't mean it isn't a sQL backup)

    Where did you get the file? How was it...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (1/15/2009)


    Gail, according to your web site you've done web development at one time, so I have a very basic question for you, where would I look to check...

  • RE: Which SQL would run faster?

    Well, running them would be a far quicker way of seeing which is faster than asking.

    I can say that the third will probably be the slowest. Don't know about...

  • RE: I/O requests taking more than 15 seconds

    Sandra Skaar (1/15/2009)


    I talked with the SAN team some more today. There are no errors to correlate. The network backups run from 6PM to 4AM, which is when many of...

  • RE: Managing the Transaction Log size growth during an index rebuild

    Marker (1/15/2009)


    GilaMonster: it does not backup up the TRN log during the index rebuild.

    As in it runs for the duration of the index rebuild (and if that's the...

  • RE: tables data changes question

    Paresh Prajapati (1/15/2009)


    Create DDL trigger to change track and send mail notification.

    Um...

    DDL triggers fire when there's a change to the table structure, not the table's data (which is what foxjazz...

  • RE: Fully justified text

    george (1/15/2009)


    I've simply posted in the wrong forum.

    No prob.

    All of these forums here are dedicated to SQL server. We have no .net forums. I'd recommend you a good .net...

  • RE: Fully justified text

    george (1/15/2009)


    Would like to fully justify a section of text.

    At present I just have a simple text box like so . . .

    Forgive me for my confusion, but what does...

  • RE: Managing the Transaction Log size growth during an index rebuild

    Marker (1/15/2009)


    I noticed that the 15min TRN backup starts 15min before the index rebuild but does not backup the TRN log during the index rebuild.

    Doesn't back it...

  • RE: Are the posted questions getting worse?

    RBarryYoung (1/15/2009)


    You might have more luck looking for Kendo instructors. There's a whole Kendo Federation in SA, so I would think that there were a few instructors.

    There's a school...

  • RE: CROSS APPLY VERSUS INNER JOIN

    -- normal query

    select o.name, c.name

    FROM sys.objects o

    inner join sys.columns c on o.object_id = c.object_id

    -- noncorrelated subquery with inner join

    select o.name, c.name...

  • RE: CROSS APPLY VERSUS INNER JOIN

    leonp (1/15/2009)


    ok gila now that confuses me

    What confuses you? There's no other way to correlate a subquery in the from clause than to use one of the APPLY operators....

Viewing 15 posts - 41,686 through 41,700 (of 49,562 total)