Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi community,
i have loaded a lot of tables into my app.
now i want a table to be deleted.
so i used Drop Table tablename;
the table is not existing in the script and the drop table runs into table not found but its still
in the datamodel and in the datamanager even after restart of the app.
Please help me thx in advance
Hi,
You can share your script with us to investigate.
Regards,
Kaushik Solanki
i think i have number 2
sorry if i missunderstood because my english is not that great.
but i have some tables with the same fieldname.
so u say I must drop them all till i can drop the one i want.
So i think its easier to copy all to a new app and load all with a new script so its nice and clean
Same Field means same field structure
Ex:
Table1: Col1,Col2,Col3
Table2: Col1,Col2,Col3
and loading one after another then both table get merge in first table
ok so drop the fields with same name that got merged and then rebuild the one table i dont want to deleted.
was that right?
hi Kaushik
the script was allready checked by com earlier but i del it by accident.
so script is not the problem
table1:
Load Col1,Col2, Col3 from x;
table2:
Load Col1,Col2, Col3 from x;
both table get merge into table1. So need to drop table1.
I think this will clear your doubt.
Eric,
could you describe what the exact issue was, to help people with a potential similar issue?
Since you marked Mayuresh Athalye's answer correct, I assume your issue had something to do with an auto-concatenated table.
But from your original post, this does not explain that you've seen a table in your model called 'NosBos' and you were not able to drop this table in your script using
Drop Tables NosBos ;
Have I missed something inbetween?
Thanks,
Stefan
i wanted to drop a table called NosBos.
and something got wrong while droping it because the table was not in the script anymore but in the data model and manager.
So because the table was linked to other tables i deleted parts of the connected table (the field with same name)
and after i restart the app and started loading data with the script again all was ok.