You are not logged in.

Dear visitor, welcome to Palo Community Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Mathias S.

Trainee

  • "Mathias S." is male
  • "Mathias S." started this thread

Posts: 3

Date of registration: Jul 13th 2010

Location: Karlsruhe

  • Send private message

1

Tuesday, July 13th 2010, 12:44pm

ERROR 4006 - space character

Hello,

I 've got an error message while launching my ETL-Process:

ERROR : Cannot load Dimension auftragsart: (4006) element name begins or ends with a space character

Is there an Error-Overview or something like that?

Mathias S.

Trainee

  • "Mathias S." is male
  • "Mathias S." started this thread

Posts: 3

Date of registration: Jul 13th 2010

Location: Karlsruhe

  • Send private message

2

Wednesday, July 14th 2010, 10:07am

Next message:

Cannot load Dimension auftragsart: Streaming result set com.mysql.jdbc.RowDataDynamic@ae86 is still active. No statements may be issued when any streaming result sets are open and in use on a given connection. Ensure that you have called .close() on any active streaming result sets before attempting more queries.

axi

Sage

Posts: 661

Date of registration: Mar 5th 2009

Location: Germany / Bargteheide

Occupation: BI

  • Send private message

3

Wednesday, July 14th 2010, 11:09am

Quoted

Is there an Error-Overview or something like that?


see attachment

Source code

1
2
3
4
5
6
7
8
9
10
if (name[0] == ' ' || name[name.length() - 1] == ' ') {
	throw ParameterException(ErrorException::ERROR_INVALID_ELEMENT_NAME, "element name begins or ends with a space character", "name", name);
}


for (size_t i = 0; i < name.length(); i++) {
	if (0 <= name[i] && name[i] < 32) {
		throw ParameterException(ErrorException::ERROR_INVALID_ELEMENT_NAME, "element name contains an illegal character", "name", name);
	}
}


source: http://palo.svn.sourceforge.net/

you can checkout the whole source there and grep over the contents

This post has been edited 1 times, last edit by "axi" (Jul 14th 2010, 11:10am)


Posts: 173

Date of registration: Jan 4th 2008

Location: Freiburg / Germany

  • Send private message

4

Wednesday, July 28th 2010, 8:54am

Concerning the 2nd error message:
Try the option Fetch-Mode="Full" in the MySQL-Connection definition.

Rate this thread