How to convert CSV file to Excel file

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

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

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

    Hi, can we send mass email using paginated report of SSRS?

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

      Sorry, I have not worked much with SSRS. Thus not sure on that.

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

      Yes possible
      Ssrs report manager-select published reports - Manage-vSubscription tab - new data driven subscription
      Delivery method as email. You can also schedule when you want to deliver the email

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

    Good video.. but it would be better if you have imported csv file which has more commas in it, by that we would know is it handling or not.

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

      Yeah you are right. I should have converted that csv file with extra commas.

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

    hi Aqil, what about excel to csv?

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

      If you have an excel file, just save it as comma delimited (from file type) file. It will be saved as csv.

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

    I am using c# script to convert excel to . Txt file in ssis due to the quality of data and the format of the source file i am unable use excel source directly in my Ssis.
    The package is working fine in my local but in the server for the bigger file size i am getting unexpected termination as soon as excel sheet reader starts.
    I have even installed an access engine on my server but no luck.
    I tried to deploy as file system then I am getting error in my Dynamic variable.
    I have created a ExcelFilePath variable to dynamically read the excel files during run time but during validation itself it's failing with the error reason the ExcelFilePath has no data file but had been used as source or target something like this.
    Can you help me to resolve this issue?

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

      Did you set the DelayValidation property of SSIS package to True ? If not then do that and try again. Also try to use try and catch blocks in script task.

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

      @@learnssis
      Yes I did all these.

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

      @@maham4062 Can you check the version of SQL Server. Run select @@version
      on the target sql server on which you are deploying your ssis into to. And the go to visual studio, go to project properties, inside solution explorer, right click on project name, go to properties, Click on Configuration properties, Check the TargetServerVersion there. It should be same whatever is the version of sql server on which you are deploying your SSIS package to.

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

      @@learnssis yes both are SQL server 2019.