SSIS Script Component error: Index was outside the bounds of the array
Getting the following error when trying to run a script in SSIS
Index was outside the bounds of the array.
at ScriptMain.PreExecute()
at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.PreExecute()
The script was working fine in the past. I recently changed the metadata and data of the input (the input by itself is working), so that might be what is causing the issue. I dont know exactly what could be wrong however.
here's my script
public class ScriptMain : UserComponent
{
private Dictionary<string, string> tsgMapping;
private Dictionary<string, string> fgMapping;
public override void PreExecute()
{
base.PreExecute();
//load mapping
tsgMapping = new Dictionary<string, string>();
fgMapping = new Dictionary<string, string>();
var mappingFilePath = Connections.Connection.ConnectionString;
using (var reader = new StreamReader(mappingFilePath))
{
reader.ReadLine(); //skip first line of headers
string line;
while ((line = reader.ReadLine()) != null)
{
var splitLine = line.Split('|');
tsgMapping.Add(splitLine[0], splitLine[1]);
fgMapping.Add(splitLine[0], splitLine[2]);
}
}
}
public override void PostExecute()
{
base.PostExecute();
/*
* Add your code here
*/
}
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
if (!tsgMapping.TryGetValue(Row.TransactionName, out var tsg))
{
tsg = "Ask CPB";
}
Row.TSGRaw = tsg;
if (!fgMapping.TryGetValue(Row.TransactionName, out var fg))
{
fg = "Ask CPB";
}
Row.FGRaw = fg;
}
}
c# ssis
add a comment |
Getting the following error when trying to run a script in SSIS
Index was outside the bounds of the array.
at ScriptMain.PreExecute()
at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.PreExecute()
The script was working fine in the past. I recently changed the metadata and data of the input (the input by itself is working), so that might be what is causing the issue. I dont know exactly what could be wrong however.
here's my script
public class ScriptMain : UserComponent
{
private Dictionary<string, string> tsgMapping;
private Dictionary<string, string> fgMapping;
public override void PreExecute()
{
base.PreExecute();
//load mapping
tsgMapping = new Dictionary<string, string>();
fgMapping = new Dictionary<string, string>();
var mappingFilePath = Connections.Connection.ConnectionString;
using (var reader = new StreamReader(mappingFilePath))
{
reader.ReadLine(); //skip first line of headers
string line;
while ((line = reader.ReadLine()) != null)
{
var splitLine = line.Split('|');
tsgMapping.Add(splitLine[0], splitLine[1]);
fgMapping.Add(splitLine[0], splitLine[2]);
}
}
}
public override void PostExecute()
{
base.PostExecute();
/*
* Add your code here
*/
}
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
if (!tsgMapping.TryGetValue(Row.TransactionName, out var tsg))
{
tsg = "Ask CPB";
}
Row.TSGRaw = tsg;
if (!fgMapping.TryGetValue(Row.TransactionName, out var fg))
{
fg = "Ask CPB";
}
Row.FGRaw = fg;
}
}
c# ssis
Put a check on the size of thetsgMapping
andfgMapping
arrays. Most likely, one of the lines you are splitting doesn't have enough|
s
– Flydog57
Nov 20 at 20:23
add a comment |
Getting the following error when trying to run a script in SSIS
Index was outside the bounds of the array.
at ScriptMain.PreExecute()
at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.PreExecute()
The script was working fine in the past. I recently changed the metadata and data of the input (the input by itself is working), so that might be what is causing the issue. I dont know exactly what could be wrong however.
here's my script
public class ScriptMain : UserComponent
{
private Dictionary<string, string> tsgMapping;
private Dictionary<string, string> fgMapping;
public override void PreExecute()
{
base.PreExecute();
//load mapping
tsgMapping = new Dictionary<string, string>();
fgMapping = new Dictionary<string, string>();
var mappingFilePath = Connections.Connection.ConnectionString;
using (var reader = new StreamReader(mappingFilePath))
{
reader.ReadLine(); //skip first line of headers
string line;
while ((line = reader.ReadLine()) != null)
{
var splitLine = line.Split('|');
tsgMapping.Add(splitLine[0], splitLine[1]);
fgMapping.Add(splitLine[0], splitLine[2]);
}
}
}
public override void PostExecute()
{
base.PostExecute();
/*
* Add your code here
*/
}
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
if (!tsgMapping.TryGetValue(Row.TransactionName, out var tsg))
{
tsg = "Ask CPB";
}
Row.TSGRaw = tsg;
if (!fgMapping.TryGetValue(Row.TransactionName, out var fg))
{
fg = "Ask CPB";
}
Row.FGRaw = fg;
}
}
c# ssis
Getting the following error when trying to run a script in SSIS
Index was outside the bounds of the array.
at ScriptMain.PreExecute()
at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.PreExecute()
The script was working fine in the past. I recently changed the metadata and data of the input (the input by itself is working), so that might be what is causing the issue. I dont know exactly what could be wrong however.
here's my script
public class ScriptMain : UserComponent
{
private Dictionary<string, string> tsgMapping;
private Dictionary<string, string> fgMapping;
public override void PreExecute()
{
base.PreExecute();
//load mapping
tsgMapping = new Dictionary<string, string>();
fgMapping = new Dictionary<string, string>();
var mappingFilePath = Connections.Connection.ConnectionString;
using (var reader = new StreamReader(mappingFilePath))
{
reader.ReadLine(); //skip first line of headers
string line;
while ((line = reader.ReadLine()) != null)
{
var splitLine = line.Split('|');
tsgMapping.Add(splitLine[0], splitLine[1]);
fgMapping.Add(splitLine[0], splitLine[2]);
}
}
}
public override void PostExecute()
{
base.PostExecute();
/*
* Add your code here
*/
}
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
if (!tsgMapping.TryGetValue(Row.TransactionName, out var tsg))
{
tsg = "Ask CPB";
}
Row.TSGRaw = tsg;
if (!fgMapping.TryGetValue(Row.TransactionName, out var fg))
{
fg = "Ask CPB";
}
Row.FGRaw = fg;
}
}
c# ssis
c# ssis
asked Nov 20 at 20:20
Vitor Valentim
32
32
Put a check on the size of thetsgMapping
andfgMapping
arrays. Most likely, one of the lines you are splitting doesn't have enough|
s
– Flydog57
Nov 20 at 20:23
add a comment |
Put a check on the size of thetsgMapping
andfgMapping
arrays. Most likely, one of the lines you are splitting doesn't have enough|
s
– Flydog57
Nov 20 at 20:23
Put a check on the size of the
tsgMapping
and fgMapping
arrays. Most likely, one of the lines you are splitting doesn't have enough |
s– Flydog57
Nov 20 at 20:23
Put a check on the size of the
tsgMapping
and fgMapping
arrays. Most likely, one of the lines you are splitting doesn't have enough |
s– Flydog57
Nov 20 at 20:23
add a comment |
1 Answer
1
active
oldest
votes
After reading my own post I figured out what was wrong.
There was bad data on my mapping file (blank row at the end) which was causing the script to fail.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53400932%2fssis-script-component-error-index-was-outside-the-bounds-of-the-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
After reading my own post I figured out what was wrong.
There was bad data on my mapping file (blank row at the end) which was causing the script to fail.
add a comment |
After reading my own post I figured out what was wrong.
There was bad data on my mapping file (blank row at the end) which was causing the script to fail.
add a comment |
After reading my own post I figured out what was wrong.
There was bad data on my mapping file (blank row at the end) which was causing the script to fail.
After reading my own post I figured out what was wrong.
There was bad data on my mapping file (blank row at the end) which was causing the script to fail.
answered Nov 20 at 20:25
Vitor Valentim
32
32
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53400932%2fssis-script-component-error-index-was-outside-the-bounds-of-the-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Put a check on the size of the
tsgMapping
andfgMapping
arrays. Most likely, one of the lines you are splitting doesn't have enough|
s– Flydog57
Nov 20 at 20:23