Forum Replies Created

Viewing 15 posts - 31 through 45 (of 72 total)

  • RE: Pausing

    Hmm. Good one...

  • RE: Synonyms 2

    basic question.

  • RE: Storing code in Version control

    +1

  • RE: Truncate table query

    Steve Jones - SSC Editor (9/11/2014)


    Explanation corrected. I've removed the part that says the data cannot be recovered.

    Thanks Steve

  • RE: Truncate table query

    Iulian -207023 (9/11/2014)


    TomThomson (9/11/2014)


    Koen Verbeeck (9/11/2014)


    Vimal Lohani (9/11/2014)


    TRUNCATE TABLE removes the data by deallocating the data pages used to store the table data and records only the page deallocations in...

  • RE: Truncate table query

    Sorry for that, but i can't correct this sentence as i have no admin right for question of the day.

  • RE: Truncate table query

    TRUNCATE TABLE removes the data by deallocating the data pages used to store the table data and records only the page deallocations in the transaction log.

    this means if page is...

  • RE: While loop Testing

    Tricky....

    good one...

  • RE: Merge Targets

    Thanks for returning point.

  • RE: Merge Targets

    MERGE dbo.Sales

    USING dbo.Salesdjustments

    ON New_Id = Id

    WHEN MATCHED THEN -- Update

    UPDATE SET SalesAmount = NewSalesAmount

    WHEN NOT MATCHED THEN -- Insert

    INSERT (Id,SalesAmount) VALUES (New_Id,NewSalesAmount);[/B]

    Hehehe i think there is...

  • RE: Synonyms 1

    good question.

  • RE: Today's Random Word!

    Ed Wagner (9/5/2014)


    BWFC (9/5/2014)


    TomThomson (9/5/2014)


    Ed Wagner (9/5/2014)


    BWFC (9/5/2014)


    TomThomson (9/4/2014)


    Ed Wagner (9/4/2014)


    djj (9/4/2014)


    Ed Wagner (9/4/2014)


    Revenant (9/4/2014)


    SQLRNNR (9/4/2014)


    silver

    spoon

    Feed

    Qats

    Granola

    Museli

    Sawdust 🙂

    Project

    Projectile

    Pork chop

    Launch

    Filch

  • RE: What will this query return?

    Thanks for the question dear.

  • RE: Restoring a database :

    Vimal Lohani (9/1/2014)


    Hi,

    Is there any way to restore a database of higher version to lower version.

    for eg. I have created a database in sql server 2012, created some tables &...

  • RE: Migration

    ramana3327 (8/26/2014)


    Hi All,

    We are planning to upgrade. We are using Sql 2008R2 now. Which is the better option migrating to SQL 2012 or migrating to 2014?

    I am thinking 2014 has...

Viewing 15 posts - 31 through 45 (of 72 total)