what is logging in ssis | event handlers in ssis | ssis tutorial Part 56

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

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

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

    Thank you for the content

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

      Thanks for your appreciation

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

    Very common interview question..

    • @ssunitech6890
      @ssunitech6890  4 ปีที่แล้ว

      Thanks dear..
      Please share to others

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

    Hi Sir,
    I have a two tables one is employee other is dept
    Employees table
    Eid name gender salary date-details departmentId
    Department table
    DeptId deptName
    Query:- Find highest salary in each department wise and year wise

    • @ssunitech6890
      @ssunitech6890  5 ปีที่แล้ว

      1. Department wise highest salary-
      Select d deptname,max(salary) as salary
      From employees as e
      Inner join department as d
      On e.deptid=d deptid
      Group by d.deptname
      2.year wise highest salary-
      Select year(date) as year ,max(salary) as salary
      From employees as e
      Group by year(date)

    • @arun_sql_msbi480
      @arun_sql_msbi480 5 ปีที่แล้ว

      @@ssunitech6890 Thanks for reply Sir,
      But Sir we need details of employee as well Max salary year wise and development wise
      Like I'd name gender and Max salary department wise and year wise
      Problem is that if select a detailes of employee and then Max and group wise then getting error
      So please help me out in this regard

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

    Nice video 👌👌

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

    Nice

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

    Can we remove logging in multiple child package .

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

      Yes you can disable that.

    • @gobikak7031
      @gobikak7031 3 ปีที่แล้ว

      Is there any option is available for child package loggings deletion in a dynamic way