YYT6801

Welcome to YYT6801's Blog!

To make the world a little bit different because of my code.

Miniconda常用操作

Miniconda实用操作

Miniconda简介

官网介绍: Miniconda is a free, miniature installation of Anaconda Distribution that includes only conda, Python, the packages they both depend on, and a small number of other useful packages. If you need more packages, use the conda install command to install from thousands of packages available by default in Anaconda s public repo, or from other channels, like conda-forge or bioconda.

MongoDB常用操作

MongoDB是Nosql数据库,以文档形式存储,适合大规模非关系型数据归档。

MongoDB与关系型数据库的对应关系:

SQL MongoDB 备注
database database 数据库
table collection 表 -> 集合
row document 某条数据记录 -> 文档
column field 字段 -> 域/键

MongoDB安装

  • 官网下载二进制安装包。
  • 历史归档版本
  • 使用压缩包安装
    MongoDB目录中新建data文件夹,data中新建db和log文件夹 mongod.cfg中配置数据保存路径(db)、日志目录(log)
    安装命令:
    mongod
    –bind_ip 0.0.0.0
    –logpath c:\MongoD..log文件的路径
    –logappend
    –dbpath c:\MongoD…data\db文件夹路径
    –port 27017
    –serviceName “MongoDB”
    –serviceDisplayName “MongoDB”
    –install

例如:在 bin目录中执行:

Oracle操作维护手册

Oracle是一款关系型数据库管理系统,广泛应用于企业级应用中。本文档将介绍Oracle的基本操作和维护方法,帮助用户更好地管理和维护Oracle数据库。

1. Oracle 安装

Oracle的安装过程比较复杂,需要按照官方文档进行操作。以下是一些基本的安装步骤:

0%