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.
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?
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.
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)
Concerning the 2nd error message:
Try the option Fetch-Mode="Full" in the MySQL-Connection definition.