1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <h2>DESCRIPTION</h2>
- <em>db.droptable</em> drops an attribute table.
- If the <b>-f</b> force flag is not given then nothing is removed, instead
- a preview of the action to be taken is printed.
- <h2>NOTES</h2>
- <em>db.droptable</em> is a front-end to <em>db.execute</em> to allow easier
- usage. To some extent it is verified if the table is connected to a vector map
- to avoid accidential table removal.
- <h2>EXAMPLE</h2>
- Removing an attribute table:
- <p><div class="code"><pre>
- # show available tables
- db.tables -p
- # this will show what would happen
- db.droptable table=sometable
- # actually drop the table
- db.droptable -f sometable
- </pre></div>
- <h2>SEE ALSO</h2>
- <em>
- <a href="db.describe.html">db.describe</a>,
- <a href="db.droptable.html">db.droptable</a>,
- <a href="db.execute.html">db.execute</a>,
- <a href="db.login.html">db.login</a>,
- <a href="db.tables.html">db.tables</a>,
- <a href="v.db.droptable.html">v.db.droptable</a>,
- <a href="sql.html">GRASS SQL interface</a>
- </em>
- <h2>AUTHOR</h2>
- Markus Neteler
- <p><i>Last changed: $Date$</i>
|