Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hello Carles Coll,
I have written a service to create Data Tables dynamically. Service is working fine. Some Data tables created through service are in list of data tables but some are not in list.
I am not getting the reason and where could I see those data tables.
Thanks in advance,
Meenakshi
Solved! Go to Solution.
Hi,
Various things can happen...
Carles.
Hi,
Various things can happen...
Carles.
1) I am an Administrator use.
2) I have restarted tomcat and still data tables are not visible.
Data Tables are created but not in list as I am trying to create dt with the same name it is throwing "entity already exist" exception. So it is cnfirmed that Data tables are created.
2) --> Yes That's what I mean, if you have an unfinished transaction ( becouse of a exception thrown) on tomcat restart DataTables will be rolledback --> DataTables removed .
You should not let throw "Entity already exist" exception on the wild --> I think this is the problem, check first if Entity Exist before trying to recreate it, you can easily do it like:
var myDataTable= Things["myDataTableName"];
if (myDataTable==null) {
// -- you can "safely" create the datatable.
}
Hey Carles Coll
I tried it but still facing the same issue.
where can I find that created data tables as they exist but not in list?
Is there a way so that I can delete them?
Please help.
Thanks,
Meenakshi
If you created ghost entities, you have a tool to remove them on the marketplace: http://marketplace.thingworx.com/Items/Ghost%20Entities%20Cleaner