Large Data Handling in SQL Sever- Purging & Archiving & Partitioning

Sdílet
Vložit
  • čas přidán 2. 07. 2021
  • Best methods to fallow the Purging & Archiving & Partitioning in SQL Server

Komentáře • 24

  • @kareemabdul9730
    @kareemabdul9730 Před 3 lety +4

    This video is outstanding.Recently we face this issue while archive log file got full.with the help of this video now I can suggest our developer to perform like this.

  • @danieltsvetkov695
    @danieltsvetkov695 Před 11 měsíci +2

    Great explanation and excellent solution proposals to the large tables problem! Thank you and keep up the good work!

  • @azeezullasheriff7746
    @azeezullasheriff7746 Před 2 lety

    Excellent , Raj.. keep the Good work going on.
    I have forwarded this to my team, who do regular archives to include your best practices

  • @P5toraskar1986
    @P5toraskar1986 Před 2 lety

    Good explanation thank you so much.

  • @zawlinhtet4654
    @zawlinhtet4654 Před 2 lety

    Thank you for very useful info 🙏

  • @bluerays5384
    @bluerays5384 Před rokem

    Good Learning today Sir, Thank you for Sharing.

  • @panchadhara28
    @panchadhara28 Před 2 lety

    great video

  • @ChennaiChannel
    @ChennaiChannel Před 2 lety

    Thanks for sharing.. useful

  • @ZaneT531
    @ZaneT531 Před 3 lety +1

    Nice tutorial man..

  • @saket6
    @saket6 Před rokem +1

    Good explication👌while archiving 1st time, why can't we use Select * into Employee_History_Arc From Employee_History; instead of batch processing? Hope optimiser utilize batch processing internally and may not occur any locking or blocking situations. Deletion should be done in batch processing.
    You could have given more explanation on best practices to implement archival solution. Like how to analyse tables, what all are the tables need to be taken from a DB to archive, what would be the the impact on U I application if we archive certain tables etc.

  • @bhishambajaj8242
    @bhishambajaj8242 Před rokem

    Gold content

  • @tanveerkarbelkar
    @tanveerkarbelkar Před 2 lety

    ​ @RajasekharReddy Bolla sir I have two questions in this regard:
    1. As the data is moved to T2, will it create less load on T1 for DML statements? Further, when you query T1 as part of the union, will it perform better than a single table?
    2. If we create T1 & T2 two tables, is there a way we can create a single unique constrain on a single field combining both these tables?

  • @aanchalsrivastava8550
    @aanchalsrivastava8550 Před rokem +1

    Can u tell in mysql how to create stored procedure that purge the data of table for defined period of time

  • @rahulnepalallinone1794

    Hello, could you please make a video on performance tuning that help us alot.also please suggest if there any link or website that hepl for learning dept in to performance tuning.

  • @himanish2006
    @himanish2006 Před 2 lety +1

    If dimension table is continuously increasing then how do we manage ??

  • @diamondhand5018
    @diamondhand5018 Před rokem

    02:00

  • @mounikayakar1479
    @mounikayakar1479 Před rokem

    Mssql tips

  • @kanakapavan4286
    @kanakapavan4286 Před 3 lety +2

    Hi Rajasekhar I have Doubt Regarding Data Archiving, While Main Table Some Data Inserted into Arch Table Strcuture. When ever we required data into Main Table then what need to do.
    1) Is again insert Arch table data to Main table.
    Please Suggest me,Let me Correct if any thing Wrong.

    • @rajasekhar_reddy_bolla
      @rajasekhar_reddy_bolla  Před 3 lety

      just use union like select * from T1 union select * from T2. You don't need to keep the data again to main table

    • @avinash8535
      @avinash8535 Před 2 lety

      @@rajasekhar_reddy_bolla Hi Sir, can you please make a video on performance tuning with large tables like 10M+ data.. Tips and tricks other than indexes, temp tables, etc.. Please??

    • @rajasekhar_reddy_bolla
      @rajasekhar_reddy_bolla  Před 2 lety +1

      @@avinash8535 Sure Avinash 😀

    • @tanveerkarbelkar
      @tanveerkarbelkar Před 2 lety

      ​@@rajasekhar_reddy_bolla sir i have two questions in this regards:
      1. As the data is moved to T2, will it create less load on T1, for DML statements ? Further, when you query T1 as part of union, will it perform better than a single table ?
      2. If we create T1 & T2 two tables, is there a way we can create a single unique constrain on a single field combining both these tables ?

  • @krisharjunakinjarapu3071

    Where i can get all the videos