Forum Replies Created

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

  • RE: Pausing

    Hmm. Good one...

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • RE: Synonyms 2

    basic question.

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • RE: Storing code in Version control

    +1

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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...

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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.

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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...

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • RE: While loop Testing

    Tricky....

    good one...

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • RE: Merge Targets

    Thanks for returning point.

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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...

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • RE: Synonyms 1

    good question.

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • RE: What will this query return?

    Thanks for the question dear.

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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 &...

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

  • 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...

    Vimal LohaniSQL DBA | MCP (70-461,70-462)==============================The greatest barrier to success is the fear of failure ** Success is a journey not a destination**Think before you print, SAVE TREES, Protect Mother Nature

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