Table of contents
Open Table of contents
Tools
- DBeaver https://dbeaver.io/
- PGAdmin for PostgreSQL https://www.pgadmin.org/
- Jetbrains Datagrip https://www.jetbrains.com/datagrip/, IntelliJ Idea community edition with plugin https://www.logicbig.com/how-to/intellij/intellij-community-edition-connecting-database.html, and IntelliJ Idea ultimate edition https://www.jetbrains.com/help/idea/connecting-to-a-database.html.
Microsoft SQL Server
Use Microsoft SQL Server Management Studio in a Windows machine (virtual or actual Windows).
- File -> Connect Object Explorer
- In the popup, put in server name (sql server name)
- Authentication dropdown, use “Windows Authentication”
- User name and password section is grayed out. User name is
<user_name> - Change Encryption dropdown to optional
See active directory overview doc, domain account doc
How to check the Databases and Tables in the Microsoft SQL Server?
You can expand the database project structure (tree view) in the top left Object Explorer view. Or you could use SQL script below.
select * from information_schema.tables
-- table below shows columns: table_catalog (default should be master db), table_schema (dbo), table_name, and table_type (base_table, view)
select * from master.information_schema.tables
-- by default should be the same result as above
select * from <db>.information_schema.tables
-- tables in db
select name, database_id, create_date from sys.databases; go
-- list databses in this server: master, msdb, model, tempdb, .etc
MongoDB
For MongoDB 8.0.1 installed with HomeBrew.
mongosh
commands
brew services start mongodb-community@8.0
brew services stop mongodb-community@8.0
mongosh
show dbs # to show databases
show collections # to show collections
use <db_name>
db.<collection_name>.find() # scan the collection
db.<collection_name>.countDocuments() # total count in collection
# scan with a filter
db.<collection_name>.find({'field':'value'})
db.<collection_name>.findOne({'_id':'value'})
# delete with a filter
db.<collection_name>.deleteMany({'field':'value'})
{ acknowledged: true, deletedCount: 2 }
Pymongo
How to set log levels for pymongo
python mongodb client?
By default, the client log level is DEBUG
. You can change the log level as below. This line changes for the whole client.
logging.getLogger('pymongo').setLevel(logging.ERROR)
For more control at the module level, see pymongo doc logging.
References
- multiple databases vs multiple collections: https://www.mongodb.com/community/forums/t/multiple-databases-vs-multiple-collections/211758
- update across multiple collections in the same database https://www.mongodb.com/community/forums/t/update-data-across-multiple-collections-within-the-same-database/118979
- how to choose a shard key doc