Closed kgorman closed 10 years ago
In the RDBS world, it's very common to create a table from a select statement. All serverside.
CREATE TABLE myrollup AS SELECT * FROM foo;
It would be super handy to have an equivalent command in TokuMX. For instance:
db.createCollection(myrollup, {query:"db.mybigcol.find()"});
Please use our jira tracker, we've deprecated github issues.
You can do this with db.cloneCollection() today, or once we merge 2.6 features you'll be able to use the $out aggregation operator.
db.cloneCollection()
$out
In the RDBS world, it's very common to create a table from a select statement. All serverside.
It would be super handy to have an equivalent command in TokuMX. For instance: