Dimitri Yatsenko

Results 116 comments of Dimitri Yatsenko

Did you mean to leave `latest` in the restriction of the set to be deleted? You already applied it to get `subj_keys`.

deletes with complex subqueries can get tricky.

This is a very interesting solution. It creates an extra "Filler" table that populates the primary key for the target table. In the future, we will find a way to...

https://github.com/dimitri-yatsenko/db-programming-with-datajoint

https://youtu.be/utrbqjhk9_s

https://github.com/dimitri-yatsenko/db-programming-with-datajoint/blob/master/notebooks/Alter.ipynb

Indeed, inserting one row at a time is slow because each insert triggers a round trip to the database server. You can insert multiple rows at a time instead: ```python...

These are good points but I would not go as far as deprecate the use of timestamps as part of a primary key. There are many cases where it can...

hi @stephenholtz The `ExternalTable` class and the storage functionality are designed for extensibility to other storage systems, including GCS. Adding GCS support would require only a small amount of development....

This issue will track the implementation of GSC support for external storage.