i've read that all values of the attributes are stored in xinco_add_attribute. But if i define a keyword as 'test', how to find this value in the database?
I want other applications with access to the database to capture those values.
Is this even possible?
Indeed all attributes are stored in the table "xinco_add_attribute".
They are linked to data in table "xinco_core_data" with the field "xinco_core_data_id".
Data is linked to folders in table "xinco_core_node" with the field "xinco_core_node_id".
With this information you can write SQL to find and retrieve any data and its attributes.
Age: 31
Joined: 14 Jun 2006
Posts: 398
Location: Texas
Just as a hint, the next version 2.1.0 will use JPA for DB access. Feel free to request a feature. I'm leaning to do the reporting with iReports/Jasper and expose the database with the persistence definition interface so anyone can do custom Reports. Jasper 3.0.0 supports this!
Age: 30
Joined: 12 Mar 2010
Posts: 4
Location: london
Sometimes the index picked is a dog and just does not work very well. Most indexes are supposed to contain attributes that have a large number of values evenly spread over the domain of attribute values. This allows the optimizer to get the fastest search plan for the retrieval of data. Well, sometimes the index attributes have very few values and are not good. This script helps to show the order and cardinality of the attributes in an index so the DBA can assess whether this index is worth the overhead. This script is dependent on runing the analyze utilities to load statistics for the SQL optimizer.
On some small tables, who cares, you do not even need an index. On other large tables an index will make a huge difference. This script helps me decide if the index will be useful. Why create an index if there is only a couple values in the domains of the attributes chosen, it will just add overhead to most queries.
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You cannot download files in this forum