LearnSQLtoSSIS
LearnSQLtoSSIS
  • 532
  • 152 887

วีดีโอ

SQL SERVER||How to create a Trigger to Prevent Duplicate Entries?
มุมมอง 22วันที่ผ่านมา
Create Trigger PreventDuplicateEntries ON employees INSTEAD OF INSERT AS BEGIN IF EXISTS(SELECT 1 FROM Employees WHERE email IN(SELECT email FROM inserted)) BEGIN RAISERROR('Duplicate entries not allowed',16,1); END ELSE BEGIN INSERT INTO Employees SELECT employeeid,email FROM inserted END END DROP Trigger PreventDuplicateEntries
SSIS||How to use ISNUMERIC Function?
มุมมอง 23วันที่ผ่านมา
SSIS||How to use ISNUMERIC Function?
SQL Queries||Update all NULL Values in the column with Previous Not Null value
มุมมอง 25วันที่ผ่านมา
SQL Queries||Update all NULL Values in the column with Previous Not Null value
SSIS||How to show Gender Count as Message in Package?
มุมมอง 35วันที่ผ่านมา
System.Windows.Forms.MessageBox.Show("FemaleCnt :" Dts.Variables[0].Value.ToString()); System.Windows.Forms.MessageBox.Show("MaleCnt :" Dts.Variables[1].Value.ToString());
SQL SERVER||How to Export Table Data to Excel Using SQL Query?
มุมมอง 36วันที่ผ่านมา
SQL SERVER||How to Export Table Data to Excel Using SQL Query?
MySQL||4 ways to get particular letter in any nth position of string
มุมมอง 16วันที่ผ่านมา
Like Mid Substring Regexp
SQL Queries||How to get Month-wise hired report?
มุมมอง 20วันที่ผ่านมา
select Format(hiredate,'MMMM') AS Hired_Month,Count(*) AS Employees_Hired From emp Group by Format(hiredate,'MMMM')
SQL SERVER||How to change domain names of email column?
มุมมอง 192 วันที่ผ่านมา
UPDATE emp_details SET email= REPLACE(email,'example.com','company.com')
Stored Procedures||How to write SP to get employee count by Managerid?
มุมมอง 172 วันที่ผ่านมา
Create Proc GetEmpCntByManager @managerid INT AS BEGIN SELECT @managerid AS Manager_id,COUNT(*) AS EmpCount FROM Emp_Mgr WHERE mgrid=@managerid END EXEC GetEmpCntByManager 2 Create Procedure GetManagerAndEmployeeNames @managerid int AS BEGIN SELECT m.empname AS ManagerName, e.empname AS EmployeeName From Emp_Mgr e INNER JOIN Emp_Mgr m ON e.mgrid=m.empid WHERE m.empid=@managerid END EXEC GetMana...
SSIS||How to Create Job For File System Package?
มุมมอง 3814 วันที่ผ่านมา
Create Job in SQL SERVER AGENT for executing SSIS Package in File System
SQL Queries||How to find First Day and Last Day of the Month and Total Days of the month?
มุมมอง 3914 วันที่ผ่านมา
select EOMONTH(getdate()) AS Last_Day Last day of the month select DATEADD(dd,-day(getdate()) 1,getdate()) AS First_Day First Day of the Month select DATEDIFF(day,DATEADD(dd,-day(getdate()) 1,getdate()),EOMONTH(getdate())) 1 AS Total_Days
SQL Queries||How to write a query for month-wise hired report?
มุมมอง 3614 วันที่ผ่านมา
select Format(hiredate,'MMMM')AS Hire_Month ,Count(*) AS Num_Employees from emp Group By Format(hiredate,'MMMM'),Month(hiredate) ORDER BY MONTH(Hiredate)
SQL SERVER||How to Swap Column Values?
มุมมอง 1614 วันที่ผ่านมา
UPDATE Test SET Firstnum=SecondNum, SecondNum=FirstNum
SSIS||How to run T-SQL statement?
มุมมอง 3114 วันที่ผ่านมา
Simple example how to run T-SQL query in SSIS using Execute SQL Task
SQL SERVER||How to get Nth Letter from String?
มุมมอง 2021 วันที่ผ่านมา
SQL SERVER||How to get Nth Letter from String?
SQL Queries||How to get Min and Max sal details in each department?
มุมมอง 3821 วันที่ผ่านมา
SQL Queries||How to get Min and Max sal details in each department?
SQL SERVER||How to Add Computed Column Age while creating a table?
มุมมอง 2721 วันที่ผ่านมา
SQL SERVER||How to Add Computed Column Age while creating a table?
SQL SERVER||IIF() AND CASE Statement
มุมมอง 2021 วันที่ผ่านมา
SQL SERVER||IIF() AND CASE Statement
SQL Queries||How to calculate Age in years, months and days in SQL?
มุมมอง 4721 วันที่ผ่านมา
SQL Queries||How to calculate Age in years, months and days in SQL?
SSIS||How to get all File names in Folder and sub-folders using Script Task?
มุมมอง 3928 วันที่ผ่านมา
SSIS||How to get all File names in Folder and sub-folders using Script Task?
SSIS||How to create Folder with Month Name using Variable?
มุมมอง 27หลายเดือนก่อน
SSIS||How to create Folder with Month Name using Variable?
SQL Queries||How to get Average of First Nth Highest Salaries?
มุมมอง 38หลายเดือนก่อน
SQL Queries||How to get Average of First Nth Highest Salaries?
Stored Procedures||How to create temporary stored procedures? What is the use of them?
มุมมอง 25หลายเดือนก่อน
Stored Procedures||How to create temporary stored procedures? What is the use of them?
Stored Procedures||How to update column values using Stored Procedure?
มุมมอง 32หลายเดือนก่อน
Stored Procedures||How to update column values using Stored Procedure?
SQL Queries||How to Get All rows from table except First Record?
มุมมอง 544หลายเดือนก่อน
SQL Queries||How to Get All rows from table except First Record?
SQL SERVER||Mask user_name leaving the First Letter in email
มุมมอง 120หลายเดือนก่อน
SQL SERVER||Mask user_name leaving the First Letter in email
SQL Queries||How many ways to get details of department-wise highest salary?
มุมมอง 450หลายเดือนก่อน
SQL Queries||How many ways to get details of department-wise highest salary?
SQL SERVER||How to combine multiple column values into one single string?
มุมมอง 46หลายเดือนก่อน
SQL SERVER||How to combine multiple column values into one single string?
MySQL||How to get First & Last Record of table using LIMIT?
มุมมอง 28หลายเดือนก่อน
MySQL||How to get First & Last Record of table using LIMIT?

ความคิดเห็น

  • @anushaakkerapu848
    @anushaakkerapu848 วันที่ผ่านมา

    In Recent open i don't have any thing how can i select integration services import

  • @RobertVaughn-v9x
    @RobertVaughn-v9x วันที่ผ่านมา

    Lopez Robert Hall David Rodriguez Jennifer

  • @AhmedHassan-wt6lv
    @AhmedHassan-wt6lv 3 วันที่ผ่านมา

    Many thanks for amazing video

  • @malli352
    @malli352 4 วันที่ผ่านมา

    good video , but what if i have the date parameters in the sp like fromdate and todate? how to do this?

  • @gokulakrishna2890
    @gokulakrishna2890 13 วันที่ผ่านมา

    Thanks for teaching.

  • @darrylw99
    @darrylw99 15 วันที่ผ่านมา

    What's the point of this ? if a value is 608 then you wouldnt want to remove the zero surely...

  • @darrylw99
    @darrylw99 15 วันที่ผ่านมา

    Why are you substring'ing CountryCode? At least just ltrim it or on its own

  • @aichatoumi7910
    @aichatoumi7910 19 วันที่ผ่านมา

    I don't understand.

  • @sekarperumal8298
    @sekarperumal8298 22 วันที่ผ่านมา

    great

  • @dzls4198
    @dzls4198 27 วันที่ผ่านมา

    Thank you sir

  • @Jamal-r6e
    @Jamal-r6e หลายเดือนก่อน

    Thanks for the Article, we can write this way also for same salary employees query select * from Employeedetails a join Employeedetails b on a.Salary=b.Salary and a.Emp_Id!=b.Emp_Id

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

    Thanks but instead of the partition, could you not have just used distinct?

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

    The audio on this is not good, sounds like you're under water

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

    Nice explanation..Thank you

  • @sanketjadhav3.14
    @sanketjadhav3.14 หลายเดือนก่อน

    Good videos

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

    I am trying to insert values in my tables and its giving me this error message: ERROR: null value in column "i" violates not-null constraint DETAIL: Failing row contains (null, bar).

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

    That ran in 0 seconds... also why is the join backwards: soh2.salesorderid = soh1.salesorderid

  • @NIRMALA-ts6pf
    @NIRMALA-ts6pf 2 หลายเดือนก่อน

    How to copy an SSIS package from one Solution Explorer to another (i mean from one system to another, how to clone all the packages)?

  • @user-mo4vu5sw5u
    @user-mo4vu5sw5u 2 หลายเดือนก่อน

    Good video but you are not really using a Stored Proc for the export though...you are using the Import/Export Wizard

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

    Thanks very helpful

  • @m.asyfa.95
    @m.asyfa.95 2 หลายเดือนก่อน

    Thank you very much sir

  • @jececdept.9548
    @jececdept.9548 2 หลายเดือนก่อน

    but if to replace in all columns ,how to use in one go

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

    Between the audio clipping and the speakers heavy accent, this was very difficult to hear. Nice Try but I'd suggest some post-production audio clean up.

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

    I have a single raw data flat file and I need to validate the total length of the file and load the row length into a sql database table , can you make a video on that 😮😮 great video by the way

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

    Thank you so much, it worked well.

  • @m-aliasgharizadeh7054
    @m-aliasgharizadeh7054 3 หลายเดือนก่อน

    Shame on this video due to the record quality and its all aspects

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

    Dude, do something about your pc fan I barely hear what you're saying.

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

    Thank your for the video. It was helpful :) :).

  • @MinhNguyen-ck5ge
    @MinhNguyen-ck5ge 3 หลายเดือนก่อน

    Thank you very much!

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

    how do I overwrirte the data in the sheet everytime

  • @Sakthivel-dz9tw
    @Sakthivel-dz9tw 4 หลายเดือนก่อน

    bro only 720 rows of data only loaded not all the three files data, Please update that.

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

    Hi Anna.I followed your videos daily, it is giving lot of knowledge for who don't know dept of sql.i need your assistance in sql.I have some doubts on optimization of sql query in TSql.where can i reach you .

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

    How can I know that the update was completed successfully?

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

    Thank You

  • @Abhinav-nm1ir
    @Abhinav-nm1ir 4 หลายเดือนก่อน

    sir insert button duba lo us se theek ho ga cursor apka

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

    after 1 hour of research i got your video which clears my doubt and query ... you are very helpful

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

      Thanks for your feedback

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

    Difficult to understand but somehow I managed to understand the concepts. Thank you.

  • @youngeric-m3h
    @youngeric-m3h 5 หลายเดือนก่อน

    Thank you for this video

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

    Super. Keep uploading these kind of videos

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

    Wow , Really enjoyed your video and got more information and required output for ETL

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

    great

  • @Z3RØ-XP
    @Z3RØ-XP 6 หลายเดือนก่อน

    Very helpful thank you

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

    i can't finish the video because the lack of effort you showed on the video , the least you could do is spell the word "Execute" Correctly on the Video Title .

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

      Thanks for your feedback... I tried to create videos differently...By birth I have stammering... I tried my level best to overcome but sometimes I failed...

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

    Good video, could you do a video on how to export with sql Agent? not batch script

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

    Please assist if customer name has the surname and we want first name and last name both in proper case

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

    can we use LEFT function instead of RIGHT function?

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

    Thank you for your expertise. On a related subject, I have numerous Java applications that call SQL stored procedures to handle DML updates to tables. My question is.... how might the after-update trigger capture the name of the stored procedure that performed the data modification?

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

    What of to remove invalid data like just only 0

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

    Excelent!

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

    Hi Sir, In this scenario it will work. If in case id and name different length i mean if it is not fixed length of characters then what is the solution. Please make a video on that also. Thank you