Skip to content

10月31日

10月30日

10月26日

  • 导出整个数据库结构和数据的命令
    • mysqldump -hxxx.xxx.xxx.xxx -P4006 -uroot -pxxxxxxxx dvsv3>/usr/local/sunlight/sql/dvsv3.sql;

10月25日

  • pnpm扁平化

10月21日

10月20日

  • mysql Update 替换字段中的一部分
      UPDATE your_table_name
      SET your_column_name = REPLACE(your_column_name, '/xczl-pages', '/package/xczl/pages')
      WHERE your_column_name LIKE '/xczl-pages%';

##10月19日

10月18日

10月16日

  • 查询表结构
    select * from information_schema.`TABLES` where  table_schema = 'dvsdb30' and TABLE_NAME = 'indicator_1713806542282850304'

10月11日

10月10日

  • 查看数据库的大小
      SELECT 
          table_schema AS 'Database',
          ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS 'Size (MB)'
      FROM 
          information_schema.tables 
      GROUP BY 
          table_schema;
  • 只查看某个特定的数据库
    SELECT 
      table_schema AS 'Database',
      ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS 'Size (MB)'
    FROM 
        information_schema.tables 
    WHERE 
        table_schema = 'your_database_name'
    GROUP BY 
        table_schema;
  • 查看某数据库所有表空间占用
      SELECT 
          table_name AS 'Table',
          ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS 'Size (MB)'
      FROM 
          information_schema.tables
      WHERE 
          table_schema = 'dvsdb30'
      GROUP BY 
          table_name
      ORDER BY 
          (data_length + index_length) DESC;

10月9日

10月8日

  • uni-app-x https://uniapp.dcloud.net.cn/uni-app-x/

  • linux通过命令查看自己的公网ip

      curl ifconfig.me
  • 定时跳转钉钉

  • docker容器中代理接口地址

    location /so/api/v1 {
        proxy_pass http://101.35.211.235:3001/api/v1;
    }
  • 脚本一键停止容器、删除容器、重新创建容器 执行容器 run.sh脚本下的代码

      #!/bin/bash
      container="vue-course"
    
      podman stop $container
    
      echo "停止docker容器:$container"
    
      podman  rm $container
    
      echo "删除docker容器:$container"
    
      podman-compose  up -d

    通过sh run.sh运行 执行后报错: Error: no container with name or ID "vue-course\r\r" found: no such container

    vim run.sh
    :set fileformat=unix
    :wq

10月7日

  • linux 部署clash

  • linux 安装git

    sudo yum install git
    // 安装完毕后可以查看版本
    git --version
  • linux生成ssh

    ssh-keygen -t rsa -b 4096
    // 拷贝 id_rsa.pub秘钥到服务器
  • linux 安装bun

    // 前提是先安装好clash
    curl -fsSL https://bun.sh/install | bash
  • .net core dapper调用存储过程

    • 入参参数和出参参数 还有一个返回值的未进行实验
    • 存储过程可以参考ffpfun_calculateincome_2309
  var parameters = new DynamicParameters();
  parameters.Add("@p_hid", value:formData["hid"], dbType: DbType.String, direction: ParameterDirection.Input);
  parameters.Add("@p_result", dbType: DbType.Int32, direction: ParameterDirection.Output);
  this.GetConnection().Execute(form.BehindSQL, parameters, dbTransaction, null, CommandType.StoredProcedure);
  var result = parameters.Get<int>("@p_result");
  if(result > 0)
  {

  }