PowerShell SQL Tutorial Part 1 : Fetching Data

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

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

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

    Your PowerShell videos are very helpful. Learning a lot. Thank you!

  • @BalvinderSingh-uh3my
    @BalvinderSingh-uh3my 11 หลายเดือนก่อน

    Bro thank you so much. I am currently going through your PowerShell 7 Tutorials for Beginners series although. I'll only be using PowerShell for SQL Server mostly dbatools module. I even watch your videos on my tablet at the gym on the running machine. Really, really helpful Merry Christmas and Happy New Year.

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

    Good instructions. Quick question, can I still use the dataset to look at the data even after the sql connection is closed? ....or do I need to throw that into a variable first? Thx

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

    Could you please make a series on PowerShell PostgreSQL please?

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

    I noticed that the SqlAdpter.fill() method executes the whole SqlCommand you pass to it, no matter if it is just a SELECT or e.g. an UPDATE instruction. Sems odd - why not use it for every CRUD action?

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

      Hi Manuel, it does indeed work for every CRUD operate but at the same time will fetch the data from the data causing unwanted data collection and usage or resources if large data sets are involved, but this being said using .fill for the execution would be totally acceptable. Hope that helps :)

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

    What’s your opinion on invoke-sqlcmd from the sql module?