-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shorten table names in temporary tables of the insert_into_target_tables function #25
Comments
Hi, There are several things in your issue:
|
Thank you for your help. I would like to address your 4 bullet points
{
"tables": {
"AllocationSeriesNotification": {
"fields": {
"EDSNBusinessDocumentHeader": { "transform": "elevate_wo_prefix" },
"Allocation_Series": { "transform": "elevate_wo_prefix" },
"Manifest": { "transform": "elevate_wo_prefix" },
}
},
}}
|
I tried to address some of this points in #29:
Easy fix, done.
The issue here is that Manifest is not a child of AllocationSeriesNotification but rather EDSNBusinessDocumentHeader, so you need to add a config for table EDSNBusinessDocumentHeader under which you can put the config for the Manifest field. #29 better checks the config and should raise an exception with the config you have provided.
This one is a bit more difficult and requires more testing as table names are used in different places. In the short run if you are able to configure elevate_without_prefix for the long names it should alleviate the issue.
I tried to implement in #29 static typing for model config so that type checker e.g. IDEs could tell whether the config object, and more runtime checks, especially to check that tables and fields for which config is provided do exist. Would you be able to check whether #29 helps in this regards? |
Thank you for making the effort. Our team has decided to go into another direction. So we will not be able to test this PR anymore. |
Hi guys
When I'm trying insert data, by using the
insert_into_target_tables
function I get the following error:}
I tried printing the source and target table to verify my model.
The output of these print statements is shown at the bottom of this issue.
Conclusion: Iam able to use the elevate_wo_prefix to get rid of the top level elements. But I'm unable to get rid of the sub-level elements.
For example, the
EDSNBusinessDocumentHeader
DOES work. But theManifest
DOES NOT work.I have tried the following combinations already.
EDSNBusinessDocumentHeader_Manifest
Manifest_ManifestItem
and I can also not find
AllocationSeriesNotification_Manifest_ManifestItem
or any other logical combination in the xsd. To reduce the length of the temp_a1893bc5_AllocationSeriesNotification_Manifest_ManifestItem. I have no issue creating tables, that works fine. These temp tables are only created by inserting the data. I would like to know how I can reduce those lengths.The text was updated successfully, but these errors were encountered: