Unable to get value 'String(34)' from database resultset, index 2 - pentaho

I am getting this error and my pentaho transformation failed. What does index 2 means? and which one is it referring to?

Related

What does this error mean: Required column value for column index: 8 is missing in row starting at position: 0

I'm attempting to upload a CSV file (which is an output from a BCP command) to BigQuery using the gcloud CLI BQ Load command. I have already uploaded a custom schema file. (was having major issues with Autodetect).
One resource suggested this could be a datatype mismatch. However, the table from the SQL DB lists the column as a decimal, so in my schema file I have listed it as FLOAT since decimal is not a supported data type.
I couldn't find any documentation for what the error means and what I can do to resolve it.
What does this error mean? It means, in this context, a value is REQUIRED for a given column index and one was not found. (By the way, columns are usually 0 indexed, meaning a fault at column index 8 is most likely referring to column number 9)
This can be caused by myriad of different issues, of which I experienced two.
Incorrectly categorizing NULL columns as NOT NULL. After exporting the schema, in JSON, from SSMS, I needed to clean it
up for BQ and in doing so I assigned IS_NULLABLE:NO to
MODE:NULLABLE and IS_NULLABLE:YES to MODE:REQUIRED. These
values should've been reversed. This caused the error because there
were NULL columns where BQ expected a REQUIRED value.
Using the wrong delimiter The file I was outputting was not only comma-delimited but also tab-delimited. I was only able to validate this by using the Get Data tool in Excel and importing the data that way, after which I saw the error for tabs inside the cells.
After outputting with a pipe ( | ) delimiter, I was finally able to successfully load the file into BigQuery without any errors.

Why am I getting an error when scheduling a query on Google BigQuery?

When trying to schedule a query in BQ, I am getting the following error:
Error code 3 : Query error: Not found: Dataset was not found in location EU at [2:1]
Is this a permissions issue?
This sounds like a case of the scheduled query being configured to run in a different region than either the referenced tables, or the destination table of the query.
Put another way, BigQuery requires a consistent location for reading and writing, and does not allow a query in location A to write results in location B.
https://cloud.google.com/bigquery/docs/scheduling-queries has some additional information about this.

Getting error while using google data transfer to transfer multiple csv table refrences from GCS to Bigquery

I'm getting error while I'm trying to transfer file from Google cloud storage to google big query. This is the error :
Error while reading data, error message: CSV table references column position 101, but line starting at postion:2611 contains only 101 columns
There was a new field that was recently added, so we believe this may be the issue b/c out of many loads, only 3 per day are working.
When I read this error, I understand it was the line starting in the incorrect column - but correct me if I am wrong.
Can this be corrected?

Error in SSIS package when script component is trying to retrieve errorCode and errorColumn-[SSIS.Pipeline] Error: No object exists with the ID 0

I have a SSIS package where I am using a script component in DFT to retrieve the error column and error description from an insert into a SQL table.
My code is below. However, after the DFT is done (it completes all its steps) the package cannot continue onto the next DFT task with error of
[SSIS.Pipeline] Error: No object exists with the ID 0.
My code is below for the component
I have tried to delete the script component and re-create it but this did not work
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
Row.ErrorDescription = this.ComponentMetaData.GetErrorDescription(Row.ErrorCode);
IDTSComponentMetaData130 componentMetaData = this.ComponentMetaData as IDTSComponentMetaData130;
Row.ErrorColumnName = componentMetaData.GetIdentificationStringByID(Row.ErrorColumn);
}
Error Description and Error Column get to error table but package does not continue.
I am using a script component in DFT to retrieve the error column and error description from an insert into a SQL table.
If you are reading data from the Error output of OLE DB destination and you are using Table or View - Fast Load option as Access Mode, you are not able to retrieve the Column name since you are performing Bulk Insert operation.
If you need to get the Error Column name you cannot use Fast Load option, you need to perform Row-by row insert by selecting Table or View access mode which decrease the insert performance.
If you are not reading from OLE DB Destination error output, then refer to the following article for a step by step guide:
Retrieve the column causing an error in SQL Server Integration Services

Stale BigQuery table after load job

I've ran into a situation where a BigQuery table has become stale. I can't even run a count query on it. This occurred right after I ran the first load job.
For each query I run I get an error:
Error: Unexpected. Please try again.
See for example Job IDs: job_OnkmhMzDeGpAQvG4VLEmCO-IzoY, job_y0tHM-Zjy1QSZ84Ek_3BxJ7Zg7U
The error is "illegal field name". It looks like the field 69860107_VID is causing it. BigQuery doesn't support column rename, so if you want to change the schema you'll need to recreate the table.
I've filed a bug to fix the internal error -- this should have been blocked when the table was created.