Top 25 SQL Server Interview Questions - .NET C#

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ต.ค. 2024

ความคิดเห็น • 96

  • @markippo
    @markippo ปีที่แล้ว +4

    Couple things that catched my eyes. 1) Primary Key always creates a clustered index - no, only if CI dosen't exist, if it does nonclustered unique is created.
    2) clustered is faster than nonclustered - it depends on what we're doing. If we searching only for indexed columns or non indexed are included into nonclustered index - they will be performing the same or nonclustered will be faster... Overhead is only when nonclustered index needs take rest of the data from a heap or clustered index...
    3) Cross join is also part of sql server logical joins (in documentation at least). Logical joins are a wage topic. Some people will also include any operation that is based on physical joins so semi joins, set operations (union, intersect, except, concatenation as union all), aggregates are also included.
    4) Self Joins... Oracle people talk a lot about it... I've never heard this phrase in a sql server community...
    5) Drop table could be also rolled back in sql server. Answer to this question: Dml VS ddl. Operation on data itself vs definition of the data. Dml are fully logged, ddl minimal...
    6) Nth salary... Order by clause is not allowed in derived tables (subqueries). What if more than one person has the same salary? Use dense_rank
    7) Consistency stands for capability of rdbms to be consistent apart from transaction result. So if transaction passes - save the data, if not or was hanged - roll itself back to the former state... It is quite obvious when everything's fine but it's really crucial after server crush... After reboot consistency of every db is checked... It has 3 phases - Analysis (what needs to be committed, what needs to be rolled back) Redo - store committed but not saved transactions. Undo - rollback uncomited transactions that were saved (it's called "dirty pages) - it happens when server operates under memory pressure - data are stored despite they're not committed...
    7) Improving performance: 1) look at obvious issues with your query/procedure. Do some stuff. It if helped - you're good to go, if not 2) look at estimated execution plan - apply some indexes etc. 3) look at real execution plan - check if your sp is not victim of parameters sniffing etc.
    8) memory consumption isn't so important with cursors... Thier iterative nature is... They're terribly slow compered to set/batch operations. That's why never use cursors unless you need to.

  • @satishdan
    @satishdan ปีที่แล้ว +10

    Hello you said Truncate can be rollback, but actually Truncate cannot be rollback. By the way excellent video and appreciate your efforts

    • @sandeepbhandigare3589
      @sandeepbhandigare3589 ปีที่แล้ว

      Truncate can be rolled back. You might be referring DROP command

    • @sayujyakasekar3852
      @sayujyakasekar3852 ปีที่แล้ว

      Check in SQL server it can be rollback

    • @ashleygahl3638
      @ashleygahl3638 ปีที่แล้ว +1

      Truncation can rolled back if used inside a transaction

    • @Mr.Ash-cz9rf
      @Mr.Ash-cz9rf ปีที่แล้ว

      Most of the places it's showing truncate can't be rollback.

  • @aditijain70
    @aditijain70 ปีที่แล้ว +4

    Great Explanation!
    I gave an interview just a few days back and all the questions were explained here except for one or two.
    Thank you!

  • @ShreyanshiTimes
    @ShreyanshiTimes ปีที่แล้ว +1

    Though i am familiar with SQL server quite few years, still lot of points to learn with your video, really nice content. thanks.!

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Great to hear! Thanks @Arm_luckyno23

  • @pallavipawankar9705
    @pallavipawankar9705 2 ปีที่แล้ว +8

    This is a great video for interview purpose. Thanks a lot!

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว

      wc Pallavi.. and thanks for your comment

  • @Manithan123
    @Manithan123 ปีที่แล้ว +4

    Great video. Thanks for sharing! There is a minor correction in the video on Delete vs Truncate. While the Delete can be rolled back Truncate can't be rolled back. The video incorrectly mentions that both can be rolled back.

  • @vidhyadharmote2989
    @vidhyadharmote2989 ปีที่แล้ว +3

    Seriously..you have explained very nicely, it's very useful 😊 thank you !

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Your Welcome . Glad you liked it Vidhyadhar.

  • @jamunadevi7635
    @jamunadevi7635 2 ปีที่แล้ว +5

    Thanks sir..coming Saturday I have interview ..I am watching your videos and preparing . I can easily understand your explanation

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว +1

      Thanks Jamuna, best of luck, if you know any answer try to elaborate it as much as possible.

    • @veerabhadrarao258
      @veerabhadrarao258 2 ปีที่แล้ว +1

      @@interviewhappy how to reach u brother 🙂

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว

      @@veerabhadrarao258 whatever queries you have regarding interviews - careers.. just post it here and we can discuss.

    • @veerabhadrarao258
      @veerabhadrarao258 2 ปีที่แล้ว

      @@interviewhappy i need personal support frm you

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว

      @@veerabhadrarao258 this is my email id anuragrawat123@gmail.com. We can discuss on email.

  • @kesavanmechanical
    @kesavanmechanical ปีที่แล้ว +4

    Very information and useful for my SQL interviews. Thanks Happy.

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      That is my objective Kesavan, all the best for your interviews.

    • @kanchanapatil3804
      @kanchanapatil3804 หลายเดือนก่อน

      @@interviewhappy

  • @soop9392
    @soop9392 6 หลายเดือนก่อน

    Need interviewer like you who knows logic is magic. some interviewer patterns makes us to loose confidence who expect bookish answers

  • @nishasrivastava2970
    @nishasrivastava2970 หลายเดือนก่อน +1

    At 42.07 you said that we can't use SELECT, INSERT, UPDATE, DELETE with SP and can use with Function. That's wrong. Only SELECT statement can be use with Function.

  • @rathika.m2362
    @rathika.m2362 2 ปีที่แล้ว +3

    Can you please do Video for Azure.. Your videos are really useful for us.. Thank you for your effort

  • @jyothip1629
    @jyothip1629 ปีที่แล้ว +2

    Hi Sir, Thank you so much for these wonderful videos.
    Could you please make a video on How To Return A Value From A Stored Procedure in Sql Server.

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว +2

      Hi Jyothi, use out parameters is the answer.

  • @totoro3439
    @totoro3439 2 ปีที่แล้ว +3

    Sir can you do normalisation video with practical examples ? Thank you

  • @rasikasamith
    @rasikasamith ปีที่แล้ว +2

    Thank you a lot for the effort to make this valuable video. Keep it up.

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      wc and Thanks Rasika. Wish you all the best for your career.

  • @ankitbisht3794
    @ankitbisht3794 ปีที่แล้ว +1

    I think unique key cols can have multiple null values?

  • @fahimakhtar6926
    @fahimakhtar6926 ปีที่แล้ว +3

    great knowledge for interview . ❤❤

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Thanks Fahim. Wish you all the best for your career.

  • @vigneshvk4940
    @vigneshvk4940 ปีที่แล้ว +1

    Can you please create a video about C# design pattern interview questions

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Yes vignesh soon will update . Stay connected

  • @SatinderSingh-cp6hn
    @SatinderSingh-cp6hn ปีที่แล้ว +1

    Again very nice collection and well explained.. 😇😇

  • @nomikhan2646
    @nomikhan2646 ปีที่แล้ว +2

    we use insert update delete in the sp and cannot in the function this point is wrong broh in your video

  • @bhargavisunchu6500
    @bhargavisunchu6500 2 ปีที่แล้ว +1

    Can you do video on .Net core please. nice videos

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว

      Thanks Bhargavi. I already created videos on .NET Core also. You can check in my channel.

  • @adilkevin6220
    @adilkevin6220 ปีที่แล้ว +2

    What to do if the auto-increment value reaches its limit?. Considering that it's a banking application I don't want to delete the older data how are you going to resolve the issue?

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Now a days GUID are used for ID's. That will never let that problem happen.

  • @PruthvirajPatil-v7r
    @PruthvirajPatil-v7r ปีที่แล้ว +1

    SIr please make video on user defined function and its types

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว +1

      Sure I will try to cover that in future.

  • @kansaascollection
    @kansaascollection 7 หลายเดือนก่อน

    Difference between table variable and cte

  • @Nenunenu-f3e
    @Nenunenu-f3e ปีที่แล้ว +2

    super bro

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Thanks bro. All the best for your career.

  • @amrutapatil2251
    @amrutapatil2251 ปีที่แล้ว +1

    Thank you so much sir

  • @sonaldeshbhaket6698
    @sonaldeshbhaket6698 ปีที่แล้ว +1

    Your book has kindle addition only . I want paperback book of interview questions. Please tell me how can i get the book.

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Sorry Sonal, the paperback is not available right now. May be in future. All the best for your career.

  • @balajirk4572
    @balajirk4572 2 ปีที่แล้ว +1

    Thank you so much

  • @Dot-Net_Dev
    @Dot-Net_Dev ปีที่แล้ว +2

    Logic is tha Magic

  • @pallavipawankar9705
    @pallavipawankar9705 2 ปีที่แล้ว +2

    What is Normalization in SQL?

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว +3

      When you create your application database tables from scratch, then you have to follow some rules - 1NF, 2NF, 3NF, BCNF...
      If you will not follow these rule, then later when data is filled in those tables.. you will face difficulty in managing that data.

  • @duo_the_explorer
    @duo_the_explorer 4 หลายเดือนก่อน

    Awesome video sir

  • @abhishekjamwal6781
    @abhishekjamwal6781 6 หลายเดือนก่อน

    Thank you so much sir

  • @kevinwtao5321
    @kevinwtao5321 ปีที่แล้ว +1

    Hi,Mr.: All are perfect, however, Q24for '"Truncate rollback " seems like "not rollback"

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      Thanks Kevin, I will cross check that question.

  • @gkmishra2009
    @gkmishra2009 ปีที่แล้ว

    please make video on azure interview

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว +1

      Sure will try to do it soon@gkmishra2009

  • @chathurangawickramasinghe9727
    @chathurangawickramasinghe9727 ปีที่แล้ว +1

    TRUNCATE reset the auto increment IDs but DELETE not

  • @FunAndCreativeCorner
    @FunAndCreativeCorner ปีที่แล้ว +1

    Shared one email regarding interview questions I faced last week sir. Please give reply.

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว +1

      Oh, that's you, I already replied. Thanks for your email.

    • @FunAndCreativeCorner
      @FunAndCreativeCorner ปีที่แล้ว

      @@interviewhappy thank you sir 🙏

  • @funandfood_hyderabad
    @funandfood_hyderabad 3 หลายเดือนก่อน

    Thank you 😊

  • @adilkevin6220
    @adilkevin6220 ปีที่แล้ว

    There was one question why we are using cursor instead of a while loop?

    • @interviewhappy
      @interviewhappy  ปีที่แล้ว

      In 90% cases we can replaced cursor with loops and that is recommended because cursor is performance heavy. I just wanted to explain cursor, that's why :)

    • @adilkevin6220
      @adilkevin6220 ปีที่แล้ว

      @@interviewhappy I was asked this question in the interview? Why cursor when we can use while loop. What should be the answer for this question ?

  • @mageking4343
    @mageking4343 2 ปีที่แล้ว +1

    thanks sir

  • @harshanaini1509
    @harshanaini1509 6 หลายเดือนก่อน

    very helpful vidoe

  • @poojaswain4722
    @poojaswain4722 2 ปีที่แล้ว +1

    Sir practical kar k dikha dete to or bhi achha hota

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว

      Noted Pooja.. next time

    • @poojaswain4722
      @poojaswain4722 2 ปีที่แล้ว

      Thank you sir

    • @poojaswain4722
      @poojaswain4722 2 ปีที่แล้ว +1

      Sir normalization ka ek video bana dijiye interview me bahut baar puchh chhuke hai

    • @interviewhappy
      @interviewhappy  2 ปีที่แล้ว +1

      @@poojaswain4722 sure this is related with the design of tables in database. Right now I am creating something in Angular but will cover this soon.

    • @poojaswain4722
      @poojaswain4722 2 ปีที่แล้ว

      Okk sir

  • @anzilkk8427
    @anzilkk8427 4 หลายเดือนก่อน

    ♥️👍