SkyQuery.dropTable {SciServer} | R Documentation |
Drops (deletes) a table from the user database (more info in http://www.voservices.net/skyquery).
SkyQuery.dropTable(tableName, datasetName="MyDB")
tableName |
name of table (string) within dataset. |
datasetName |
name of dataset or database context (string). |
Returns TRUE if the table was deleted successfully. Throws an exception if the user is not logged into SciServer (use Authentication.login for that purpose). Throws an exception if the HTTP request to the SkyQuery API returns an error.
Manuchehr Taghizadeh-Popp <mtaghiza@jhu.edu>
http://www.sciserver.org
http://www.voservices.net/skyquery
http://www.github.com/sciserver/SciScript-R
SkyQuery.listQueues
, SkyQuery.listAllDatasets
, SkyQuery.getDatasetInfo
, SkyQuery.listDatasetTables
, SkyQuery.getTableInfo
, SkyQuery.listTableColumns
, SkyQuery.getTable
, SkyQuery.dropTable
, SkyQuery.uploadTable
.
result = SkyQuery.dropTable("myTable", datasetName="MyDB")