大数据

  • MySQL常用sql

    一、常用操作数据库命令 查看所有数据库:show database; 创建一个数据库:create database if not exists 数据库名; 删除一个数据库;drop database if exists 数据库名; 选择一张表(注意建表之前要选择数据库):…

    大数据 2022年7月18日
  • redis重点是 dir 的默认配置一定要改

    find / -name dump.rdb 发现有两个dump文件,这两个文件目录不一致,问题在于 redis.conf 文件属性dir,默认配置是dir ./ 表示在哪启动server时候的时候,dump.rdb就在哪生成   重点是 dir 的默认配置一定要改,改…

    大数据 2022年7月18日
  • 【系统设计】分布式键值数据库

    键值存储 ( key-value store ),也称为 K/V 存储或键值数据库,这是一种非关系型数据库。每个值都有一个唯一的 key 关联,也就是我们常说的 键值对。 常见的键值存储有 Redis, Amazon DynamoDB,Microsoft Azure Co…

    大数据 2022年7月18日
  • 数据库事务与锁

    开启事务就自动加锁。事务与锁是不同的。事务具有ACID(原子性、一致性、隔离性和持久性),锁是用于解决隔离性的一种机制。事务的隔离级别通过锁的机制来实现。另外锁有不同的粒度,同时事务也是有不同的隔离级别的…

    大数据 2022年7月18日
  • 数据库设计案例

    数据库设计案例 描述:简单构建设计数据库 sql代码实现 /* 数据库设计案例 */ -- 音乐表 CREATE TABLE Music ( title VARCHAR (32), -- 专辑名 alias VARCHAR (32), -- 专辑别名 image VARCHAR (64), -- 封面照片 st…

    大数据 2022年7月18日
  • MySQL按日期分组统计(按天统计,按月统计)

    以下为您演示MySQL常用的日期分组统计方法: 按月统计(一) SELECT date_format( r.pay_time, '%Y-%m' ) pay_time, r.pay_time, SUM( r.actual_payment ) AS actual_payment, r.org_id, r.semester_year, r.season…

    大数据 2022年7月18日
  • Complex Row Level Security in Oracle BI (OBIEE)

    by Kurt Wolff Row level security (constraining a user’s view of the data to rows which meet pre-defined criteria) is a common requirement in OBIEE. This post will explore this topic, using a simple s…

    大数据 2022年7月18日
  • Complex Row Level Security in Oracle BI (OBIEE)

    by Kurt Wolff Row level security (constraining a user’s view of the data to rows which meet pre-defined criteria) is a common requirement in OBIEE. This post will explore this topic, using a simple s…

    大数据 2022年7月18日
  • The Grammar of Business Intelligence

    by Ron Cruz Business Intelligence has changed. There are new disruptive technologies, the cloud, and a paradigm shift that is putting more power into the hands of users instead of IT. More competitio…

    大数据 2022年7月18日
  • Google Data Studio - Initial Impressions

    by Rushendra Prasad This blog post offers an insight into the features and functionalities of Google Data Studio and compares it with popular data analysis tools like Tableau, QlikView and new entran…

    大数据 2022年7月18日