Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
88 views

I have an SSIS master package with a Script Task that launches other packages. Inside the Script Task, I load the package list into a DataTable and try to execute them in parallel using Parallel....
Saladin's user avatar
  • 36
0 votes
0 answers
35 views

I have: Microsoft Visual Studio Community 2019, version 16.11.45. SQL Server Integration Services (SSIS) Projects 4.6. A project in SSIS with the target server version SQL Server 2019. The problem is ...
GRIGORIY LVOV's user avatar
0 votes
1 answer
44 views

I have an SSIS package that has a script task that compares the date from a database table column and the date of a file on a network share. I'm using the following VB script in the script task. The &...
Jeremy F.'s user avatar
  • 1,890
0 votes
0 answers
65 views

I am using SSIS script task to copy a file from source directory to destination directory. It works well when: a. The source file is new and it does not exist in destination. b. The file exists in ...
nyrrovro's user avatar
0 votes
2 answers
120 views

I am executing an Oracle stored procedure from SSIS script task and the package used to execute successfully without any issues. However, it started to fail with an ORA-01422 error suddenly. There ...
nyrrovro's user avatar
0 votes
0 answers
44 views

I am importing a CSV file daily. The package currently runs as expected with the static path. The problem is that the name of the csv file changes daily so a static file path doesn't work. I basically ...
Danica Mattson's user avatar
1 vote
1 answer
104 views

We are building SSIS applications in Visual Studio 2022. When editing an SSIS Script Task Visual Studio launches a VSTA project instance. Normally the project will look something like this: However, ...
Clinemi's user avatar
  • 946
0 votes
1 answer
258 views

I have two databases Employee and Employee_Archive, each one has a table 'dbo.Employee'. I was planning to delete Employee.dbo.Employee if the records already in Employee_Archive.dbo.Employee. I tried ...
JoshuaG's user avatar
  • 400
0 votes
1 answer
309 views

I want to access the MS Graph API from inside my script task. I didn't get the SDK to work (in SSIS at least) so I thought I would write my own class using the System.Net.Http HttpClient. Outside of ...
Grashalm5020392's user avatar
1 vote
0 answers
406 views

I have a strange issue. I have an SSIS package that runs on a SQL Server Agent job. It intermittently fails with the error "Object reference not set to an instance of an object" and I can ...
user10202147's user avatar
0 votes
0 answers
85 views

Trying to include element in an xml which already contains data. The File needs to be processed part of a ssis package to bring in information on the server. Example of the xml file structure - I have ...
Valentino Dsouza's user avatar
0 votes
1 answer
177 views

This is driving me nuts. Probably it is something silly I can't see. This is my code: cnnDbLocal = new OleDbConnection(localDbStringConnection); cnnDbLocal.Open(); string select = "INSERT INTO ...
iaredi's user avatar
  • 47
0 votes
1 answer
305 views

I have an SSIS script task package executing using SQL Server Agent Job.Initially I got the following error. The application-specific permission settings do not grant Local Activation permission for ...
udaya726's user avatar
  • 1,010
0 votes
0 answers
103 views

I have a script task in SSIS 2008 which should upload data from S3 Bucket. Now, I faced an issue and receive such error: GetRegionCode - unable to get bucket location, using default endpoint: s3.us-...
Kris Markevich's user avatar
0 votes
0 answers
1k views

I am trying to figure out a way to get oauth2.0 bearer token from the rest API. So from Postman I can do a POST method for "https://helloworld.org:443/xyz/oauth2/token" And in the body, I ...
Lazytitan's user avatar
0 votes
1 answer
390 views

This package had worked in the past but, for whatever reason, hasn't been working as intended recently. The package has a script task that sets a file path variable to the file path for the most ...
user3799279's user avatar
0 votes
0 answers
44 views

I'm trying to send a list of missing products from a table through the mail. For that, I'm using a Script task in SSIS. I don't have any experience in C# as I'm an SQL developer. I don't know what's ...
Rajendra Gowd's user avatar
0 votes
0 answers
60 views

I have written a script in SSIS script task editor to read csv files using CsvHelper. While executing the package it is throwing the following error: 'Could not load file or assembly 'Microsoft.Bcl....
Riad's user avatar
  • 11
0 votes
0 answers
66 views

I need to get data from table and write it into flat file line-by-line. Example File 1: Alice ID ST-01 Alice Gender F Alice Subject English 69 Alice Grade C Alice Subject Mathematics 85 ...
mikiyaaaaa's user avatar
0 votes
0 answers
63 views

I have the packages in SSISDB catalog which is having script task component with C# code in it & I’m not having visual studio in that server.I’m trying to run the packages through Job but the ...
poojitha's user avatar
0 votes
1 answer
769 views

I've had trouble trying to get an Excel file to connect to this SSIS package so I've uninstalled and reinstalled VS2019, Integration Services, and Access Server 64bit a half dozen times. This most ...
Dizzy49's user avatar
  • 1,550
0 votes
1 answer
550 views

I want to read the rows inside a user object, but when I try to fill it to a DataTable, Dts.Variables is not a recognized namespace. public override void PreExecute() { base.PreExecute(); ...
gymcode's user avatar
  • 4,653
0 votes
1 answer
306 views

My SSIS script task generates 5 rows of records into an Output script component. if (conditionMeets) { WOProductBuffer.AddRow(); WOProductBuffer.WorkOrderId = workOrderId; WOProductBuffer....
gymcode's user avatar
  • 4,653
0 votes
1 answer
619 views

I'm trying to add new values to a variable (System.Object) inside a foreach loop container that is using that variable. How can i do that ? To understand my flow : first script i'm adding a value to ...
vani's user avatar
  • 13
0 votes
1 answer
1k views

I'm developing SSIS packages on Visual Studio Community 2015 (version 14.0.25431.01 Update 3) with SSDT (version 14.0.61707.300) where I often use SSIS Script Tasks in C#. My Packages are developed ...
Arthur's user avatar
  • 176
0 votes
1 answer
1k views

My Visual Studio SSIS is missing the "Script Task" tool. There is only "Script Component" tool. I tried to search google for this problem but there wasn't anyone who had ...
Hoang Minh Quang FX15045's user avatar
1 vote
0 answers
429 views

From last few days I am looking for solution- I need to connect to Azure SQL MI server using service principal authentication through SSIS script task - C# code. I am using Microsoft.Data.SqlClient....
user18963348's user avatar
0 votes
1 answer
363 views

In one of my SSIS package giving error during the execution time. Package contains two script task which will run in parallel. From script task what I'm doing is that, getting some svg files from a ...
Sreepathi's user avatar
  • 119
0 votes
1 answer
1k views

In SSIS Script task how to execute a stored procedure using oledb connection.
Sreepathi's user avatar
  • 119
0 votes
2 answers
421 views

I have a need to create a SQL database and a table and Insert data into the table from another SQL database . And also to use this newly created database as a oledb source in another dataflow in the ...
Naresh Kumar's user avatar
0 votes
0 answers
668 views

I have an API call using client.GetAsync(url) within a SSIS script task but for some reason its not waiting for response from API and jumping back to the entry point for the script task which is ...
QuickSilver's user avatar
0 votes
1 answer
707 views

I have an excel file .xlsx which i will get from client and after certain rows data it will have a blank row and then a generic comment everytime and the starting work of that phrase will be same all ...
TheSacredKiller's user avatar
0 votes
0 answers
2k views

I need to modify numerous packages to deliver a flat file to a SharePoint. I've found this routine online to do it via C# in a script task but I am getting a "remote server returned an error &...
user3772443's user avatar
0 votes
1 answer
639 views

I have an elastic post API. To fetch the data from the post API I am using the below JSON code in the body section in postman. { "query": { "bool": { "should":...
Learner's user avatar
  • 25
0 votes
1 answer
153 views

I am trying to load the data from the API which consists of JSON data in C#. But I am getting an error when I am trying to serializer.Deserialize<Dictionary<string,string>[]> the data. ...
Learner's user avatar
  • 25
1 vote
1 answer
2k views

I get following result from my script task, How should I build expression to check if the result contains 'exceed' { "resultSetCount": 1, "recordsAffected": 0, "resultSets&...
Equator's user avatar
  • 87
1 vote
1 answer
721 views

We are upgrading from Sqlserver 2012 to 2019 in that process we need to migrate our SSIS packages also from 2012 to 2019. We have lot of script task which uses connection string and other ...
vengatfz's user avatar
0 votes
1 answer
225 views

We get an excel file in a specific location where the name of the file may vary every time. So every time we rename the excel file manually to "Report.xlsx" and then we have some operation ...
SM079's user avatar
  • 797
0 votes
1 answer
675 views

I am trying to query the APIs and insert the responses from it in to the SQL Server table using the script task. The script task is behaving in consistent that one time loads the data the other time ...
user4912134's user avatar
  • 1,053
0 votes
0 answers
404 views

I have the two SSIS packages which basically has two action like below First it truncates the contents of the table and then it executes the script task like basically call an API and inserts the ...
user4912134's user avatar
  • 1,053
0 votes
1 answer
134 views

I have some flat files with filename includes date in yyyyMMdd format. Here are some example: Folder Path: C:\Source FileNames: myfile1_20220104983423.txt myfile1_20220104983423.txt ...
SafeGuy's user avatar
  • 369
0 votes
2 answers
2k views

From the script task I get an output { "resultSetCount": 1, "recordsAffected": 0, "resultSets": [ { "rowCount": 1, "rows": [ { "flag": 1 } ] ...
Equator's user avatar
  • 87
-2 votes
1 answer
1k views

I am trying to create a SSIS package that makes a call to the REST API and insert the responses into the Azure SQL server table. For this I am using the script task and ADO.NET connection manager. The ...
user4912134's user avatar
  • 1,053
1 vote
1 answer
2k views

I am trying to create a SSIS package that makes a call to the REST API and insert the responses into the Azure SQL server table. For this I am using the script task and ADO.NET connection manager. The ...
user4912134's user avatar
  • 1,053
0 votes
1 answer
2k views

Need to access Azure Key Vault using SSIS Script Task in C#, to assign the Azure SQL Connection String to Connection Manager in SSIS.
arvind gova's user avatar
0 votes
2 answers
120 views

I am trying to generate a text file for each XML file from a third party system using SSIS package script task and XSLT. Sometimes few special characters appear in these XML files. One such character ...
ninja_md's user avatar
  • 173
1 vote
1 answer
568 views

We receive a flat file that is delimited from our third-party client. Row Delimiter = LF; Column Delimiter = Tab The file has 8 columns. The delimited formatting in the file is correct for the most ...
maljee's user avatar
  • 21
1 vote
2 answers
2k views

I have to build a job in SSIS to check if file with today's date exist then load data into targeted table. My problem is I have different files stored with different dates in this folder with the ...
Pravesh Loto's user avatar
1 vote
0 answers
831 views

Whenever I try to create a Script Task in SSIS, it gives me the following error: One or more errors occurred. Even though I haven't done any changes in the script task and added no line of code. I ...
Arpit Chinmay's user avatar
4 votes
1 answer
849 views

I have a requirement to build a SSIS package that sends HTML formatted emails and then saves the emails as tiff files. I have created a script task that processes the necessary records and then ...
peston's user avatar
  • 61

1
2 3 4 5
8