Forum Replies Created

Viewing 15 posts - 196 through 210 (of 552 total)

  • RE: The first thing to do with a damaged off-line database

    Something related to Tail-Log Backup (just came across it)

    MSSQL SP2

    Link; http://support.microsoft.com/kb/2958429

    KB 1184332

    "If a tail log backup is performed against the model database, model database will freeze in restoring state...

  • RE: Collation, Unicode & Joins

    Revenant (7/23/2014)


    ...

    I am just a bit skeptical that 58 percent of people got this right without running it...

    😀 Definitely I am not one of them; even though I had my...

  • RE: Exit Stage Right

    Thank you dave, for the post, very good one.

    I just went with eliminating the odds method and then I was stuck with 2 and 4, I read the deprecated features...

  • RE: Collation, Unicode & Joins

    Thank you Sean, for the post, interesting one.

  • RE: Collation, Unicode & Joins

    TomThomson (7/23/2014)


    ......realised that was wrong because integers don't have a collation. So then it was just a matter of remembering what the first 4 databases are.

    +1 (had same thought)

  • RE: Non Temp Temp Tables

    twin.devil (7/21/2014)


    Sreepathi1987 (7/21/2014)


    Easy One. 🙂

    But i think it is rather unusual, tempdb is completely wiped out whenever the SQL Server service restarts. Yes or No?

    The answer is Yes.

    Nice and...

  • RE: Recovery Interval

    Thank you for the post, good one.

    (even if one does not have the knowledge on the actual question it still can be answered by eliminating the odds if one...

  • RE: The first thing to do with a damaged off-line database

    raulggonzalez (7/18/2014)


    twin.devil (7/18/2014)


    Tail log backup WITH CONTINUE_AFTER_ERROR works only if the database goes offline in case during the start up of the database is fail to come online due to...

  • RE: The Size of the Data Pages in SQL Server

    Thank you for the post, very interesting one.

    I had an idea on 8k size but never had an idea that there will-be/can-be a change option or can be changed and...

  • RE: Is a Primary Key an index?

    SQLRNNR (7/16/2014)


    Notice how the creation of a PK defaults to creating a non-clustered index in this case?

    Yea... as the CI is created at first and a table can have one...

  • RE: Is a Primary Key an index?

    Thank you sknox and Keon. I know this, it a classic method which I doing in my current project for few tables. Actually I was expecting more like NO PRIMARY...

  • RE: Is a Primary Key an index?

    Koen Verbeeck (7/16/2014)


    Unless a clustered index was already defined. 🙂

    how you mean? "already"

    this simple statement creates a clustered index

    CREATE TABLE TT1

    (

    ID INT PRIMARY KEY,

    NAME VARCHAR(10)

    );

  • RE: Is a Primary Key an index?

    pmadhavapeddi22 (7/15/2014)


    This is my understanding. primary key is a constraint not an index, but it creates an index automatically by default, but primary key is called a constraint not an...

  • RE: Is a Primary Key an index?

    Thank you for the post, simply good one. (for me the question was simple enough)

  • RE: Casting and Data Type Conversion

    thank you for the post, interesting one.

    this is all due to the "negative" sign... remove that sign, all we get is 2, as the tinyint stores only 0 to 255...

Viewing 15 posts - 196 through 210 (of 552 total)