data("iris")
x = as.scidb(iris)
# This is the SciDB array name corresponding to x:
print(x@name)
# Let's make an array with a different name:
y = as.scidb(iris, name="iris")
print(y@name)
# Removing everything will only delete arrays whose name begin with
# R_array by default:
scidbremove(scidblist())
scidblist()
# To remove the 'iris' array, use force=TRUE:
scidbremove("iris", force=TRUE)
scidblist()
Run the code above in your browser using DataLab