SSIS package not working for mutiple files - sql-server

I have a SSIS package which is used to import multiple csv file in the Database. This SSIS package was working fine on SQL Server 2012 on windows 2012.Recently we have upgraded our DB hardware rebuild the database server to SQL server 2014. Now when we are running the same SSIS package on SQL server 2014 it is only processing one file at a time. I am not sure if any Integration Service setting we can check. I am sure permissions should be fine on the folder and the accounts

Related

SQL Server Express and created SSIS package

I created with the import tool (SQL Server 2019 Express, SSMS 18.1) some SSIS import packages for testing. Now I want to delete them that they can‘t be used by accident.
Of course, I know I have no SSIS running, but when the packages are created by the SQL Server Management Studio they must be stored somewhere. How can I delete them?
I can only give the package a name and can‘t decide where, so I think there is a standard location.
By default, SSIS packages created using the Import/Export wizard are stored within the MSDB database.
To access the stored packages, you should connect to Integration Services from the SQL Server Management Studio.
Then you should see the stored packages within the MSDB directory as shown below.
More information can be found in the following articles:
View packages in SSMS
How to retrieve information about SSIS packages stored in MSDB Database

importing .mdb file using dtsx package running functionality Conversion from SQL Server into PostgreSQL

I am using SQL Server dtsx packages to convert the .mdb file into loaded table for importing database data. Here I am going to change my database from SQL Server to PostgreSQL.
So my confusion here that when I am using PostgreSQL database. Is there any alternative service that resides in PostgreSQL that corresponds to this dtsx package running and .mdb files?
If you are using OLEDB Destination to connect to SQL Server, you only have to install the OLEDB Provider for Postgres and change the provider from the OLEDB Connection manager. (Or create a new connection manager)
The following article contains a step by step guide to connect to a Postgres database using SSIS:
Export data from Postgres to SQL Server using SSIS
Or you can use ODBC driver and ODBC connection manager to connect to Postgres
SSIS WITH POSTGRESQL : CONNECT TO POSTGRESQL WITH SSIS COMPONENTS
SSIS is not related to Postgres, so there is no related services that you need to install. Dtsx packages requires that SQL Server Integration Services are installed even if you don't need to import data into SQL.
Additional Information:
Is there a SSIS-like feature in PostgreSQL?
How to run SSIS package without SQL Server?
Can we install only SSIS on a machine without installing actual SQL Service
Can SSIS be installed without SQL Server?

InterSystems Cache Database and SSMS Integration Services Catalogs

I am trying to built a SSIS package thru BIDS VS 2013. My Datasource is a InterSystems Cache Database, I wanted to Import Tables records from the Datasource to MS SQL Server 2014.
As a Sanity check. I only created one Package to import one Table to MSSQL Server to try out. The connection to the InterSystems Cache Database was successful. The DSN for the InterSystems Cache Database is created in the System for 32 and 64 Bit.
Here is where my Problem lies. I can successfully execute the SSIS Package in the BIDS Visual Studio 2013 BUT when i deploy the SSIS Package into the Integration Services Catalogs in the SSMS (SQL Server Management Studio) i get the following errors:
I tried so many Options but it just doesnt fix the Problem. It seems that the SSMS Integration Services Catalogs cannot recognize my Datasource BUT why?
Thanks for any tips and help. Thanks a lot in advanced!

dtexec.exe without full SQL Server

I know that Azure SQL Database does not have SQL Server Agent to run SQL jobs. I can run the SSIS package through command prompt. I can create & run SSIS package through SSDT with no restriction but same package if I want to run on server through command line I need dtexec.exe. How same package runs with SSDT without SQL Server?
Can I have dtexec.exe without installing full version of SQL Server? I can't afford SQL Server license for Prod server.
To execute SSIS packages using dtexec or any other method requires a full SQL Server license for the server that you are running them on. Although SQL Server components can be split out, you still need a full license for every server you install them to.

Error importing SSIS package with Konesans File system Watcher task into SQL Server 2008

I am importing SSIS packages to SQL Server 2008 that were originally built for SQL Server 2005. I upgraded them in VS2008 and them imported them. They all import and work except for the one with the Konesans File system Watcher task. I installed in the setup exe for Konesans File system Watcher SQL Server 2008 on my dev pc and the production server, but still get this error:
Exception from HRESULT: 0xC0010026 (Microsoft.SqlServer.DTSRuntimeWrap)
Any advice?
Obvious question first...
Have you donwloaded the correct version. In the link below halfway down the page you have the Downloads section for SQL 2005 and SQL 2008.
File Watcher Task

Resources