D 2014-08-28T16:02:55.176 L CloneTable P 4a796e8e2b7c8b6893758a8f4af9fd8ec43a0251 U sandro W 14886
Table | Create Statement | Geometry Column | Index | Trigger |
---|---|---|---|---|
regions | none | none | none | |
prov_itc | geom srid=32632 MULTIPOLYGON no Spatial Index |
none | none | |
prov_itf | same as prov_itc | |||
prov_itg | ||||
prov_ith | ||||
prov_iti | ||||
provinces | geom srid=32632 MULTIPOLYGON Spatial Index |
option name | action | notes |
---|---|---|
::with-foreign-keys:: | while creating the destination Table all Foreign Keys defined by the origin will be duplicated. (this may eventually cause subsequent failures if the referenced Table doesn't effectively exist). | |
::with-triggers:: | while creating the destination Table all Triggers defined by the origin will be duplicated. (this may eventually cause subsequent failures if the Trigger's action references some not existing Table or Column). | |
::append:: | assumes that the destination Table has been already created in a previous step. Additional Columns may be automatically added if required. |
Mismatching column declarations or SQL constraints may lead to an eventual fail. e.g. this will usually happen when an ordinary column is already defined and creating a Geometry of the same identical name is strictly required. |
::resequence:: | resets from beginning the sequence of values used by a Primary Key of the INTEGER AUTOINCREMENT type. Any other different type of Primary Key lacking the AUTOINCREMENT clause will be unaffected. |
potentially harmful option if some further Foreign Key insists on that Primary Key |
::ignore::column_name | Shadows a column present in the origin Table as if it was not existing. | this option will be always ignored for any column directly referenced by a Primary or Foreign Key or even by an Index. |
::cast2multi::geometry_name | Forces a Geometry to be promoted to its MULTI-type equivalent. | See the documentation about the CastToMulti() SQL function for more details. |