SQL总结之数据库元数据(MSSQL)
1、数据库元数据(1) 什么是数据元数据?元数据,是指定义数据结构的数据。那么数据库元数据就是指定义数据库各类对象结构的数据。例如用sql定义一张表,表名、字段类型、外键约束等信息,都存储在数据库的系统表中。这里数据库系统表就是用来存储数据库元数据的。常见的数据库对象,包括:数据库表触发器索引视图存储过程函数掌握数据库元数据,就需要深入地理解数据库的结构组成。 (2)那么掌握数据库元数据有什么用呢?...
View ArticleNoteRanger Beta a basic text based search
I started taking notes in markdown format following David Branner’s suggestion. Here are the two main reasons. They look much better on a browser than on a text editor on a terminal. I can access them...
View Article统计函数与分组查询
1、分组统计查询1.1 统计函数(分组函数) 在之前学习过一个COUNT()函数,此函数的功能是用于统计一张表中的数据量,那么实际上这就属于一种统计函数,在SQL语法中,定义了五个常用的统计函数:COUNT()、SUM()、AVG()、MAX()、MIN()。 范例:要求查询出公司总人数、每月支付的总工资、以及公司的平均工资、最高工资、最低工资。SELECT...
View ArticleRedis探索之旅(12)-Redis主从架构复制原理
在前一篇文章中,对Redis主从复制进行了较为详细的说明,本文将参考redis官网上关于主从复制的说明进行简单说明一下,这里对官网的英文描述进行简单翻译说明一下。首先说明下主从复制的特点,然后对主从复制的原理进行简单描述,最后对主从复制需要注意的问题进行说明。 首先,我们看看主从复制的一些特点: (1)采用异步复制; (2)一个主redis可以含有多个从redis;...
View ArticleSQL应用之跨数据库服务器数据库结构同步实现(MSSQL)
一、前言什么是“跨数据库服务器数据库结构同步”? 跨数据库服务器数据库结构同步,这里包含以下几个方面的问题跨数据库服务器:两个数据库分别位于不同的数据库服务器 数据库结构:由数据库对象(表、视图、存储过程、函数等)组成的数据库结构...
View Article数据库基础与SQL语言笔记
第十四天 PS:windows+R打开搜索框 操作数据库,一定要先备份 最重要的关键词select 一.数据库简介 1. DBMS(DataBaseManagement...
View Articlemongodb和pymongo包实践小结
背景最近项目中用到了mongodb,并且用python 的pymongo包操作。本文就把目前遇到的问题和学习经历做个小结,方便日后查询。Mongodb启动安装mongodbhttps://www.mongodb.com/download-center#community 配置环境变量把mongodb安装路径下的bin文件路径加入系统环境变量,我这里路径是 D:\MongoDB\bin...
View Articlesql查询语句
1、mysql:连接查询,级联操作一、mysql查询的五种子句 where(条件查询)、having(筛选)、group by(分组)、order by(排序)、limit(限制结果数) 1、where常用运算符: 比较运算符 > , < ,= , != (< >),>= , <= in(v1,v2..vn) between v1 and v2...
View ArticleSQL总结之DML(MSSQL)
一、基本的增、删、改、查1、基本操作INSERT-- 插入单条数据insert into table1(col1,col2,…) values(value1,value2,…)-- 插入多条数据insert into table1(col1,col2,…) values(value1,value2,…),(value1,value2,…),…-- 插入来自select查询的数据insert into...
View Article数据库之ADO.NET笔记
第十六天ADO.NET(通过C#代码对数据库操作) PS:vs所需连接的服务器名称“LYY\SQLEXPRESS” 实例化SqlConnection添加命名空间ctrl+. 一.简单介绍 1.为什么学ADO.NET 之前我们所学只能在查询分析器里查看数据,操作数据,我们不能让普通用户去学sql,所以我们搭建一个界面(Web Winform)让用户方便的操作数据库中的数据 2.什么事ADO.NET...
View ArticleMaintaining a Healthy Email Database with AWS Lambda, Amazon SNS, and Amazon...
Carlos Sanchiz Sr. Solutions Architect Mike Deck Partner Solutions Architect Reputation in the email world is critical to achieve reasonable deliverability rates (the percentage of emails that arrive...
View ArticleRethinking Endorsements Infrastructure, Part 2: The New Endorsements...
This is the second part in a series on how LinkedIn has evolved the Endorsements feature. Part 1 of the series, which discusses the basic existing Endorsements infrastructure and the new success...
View ArticleTephra ―― HBase 全局一致性事务支持
Tephra 在Apache HBase 的基础上提供了全局一致性的事务支持。HBase 提供了强一致性的基于行和区域的 ACID 操作支持,但是牺牲了在跨区域操作的支持。这就要求应用开发者花很大力气来确保区域边界上操作的一致性。而 Tephra 提供了全局事务支持,可以夸区域、跨表以及多个 RPC 上简化了应用的开发。 示例代码: /** * A Transactional...
View ArticleFrom the Neo4j Community: August 2016
ByRachel Howard, Community Curator | September 16, 2016 The Neo4j community has been busy this summer with a number of great projects, code libraries and a host of great articles on how graphs are...
View ArticleMongoDB & Data Streaming Implementing a MongoDB Kafka Consumer
Data Streaming In today’s data landscape, no single system can provide all of the required perspectives to deliver real insight. Deriving the full meaning from data requires mixing huge volumes of...
View ArticleConfiguring KeystoneJS to Use MongoDB Atlas
KeystoneJS is an open source framework for building web applications and Content Management Systems. It’s built on top of MongoDB, Express, and Node.js key components of the ubiquitous MEAN stack. This...
View Articlehbasefilter自定义Comparator
HBase之过滤器filter ==> SQL 中的Wherefilter的执行流程: 过滤器在客户端创建,然后通过RPC发送到服务器上,由服务器执行 基础过滤器:比较器:ComparatorDescription LongComparator Assumes the given value array is a Java Long number and uses Bytes.toLong()...
View Articleredis学习之Redis字符串(String)
Redis SET 命令 SET KEY_NAME VALUERedis SET 命令用于设置给定 key 的值。如果 key 已经存储其他值, SET 就覆写旧值,且无视类型。redis127.0.0.1:6379> set key 'value'OK127.0.0.1:6379> get key"value"127.0.0.1:6379> set key...
View ArticleSCPPO:项目中SQL语句的一些应用总结
【前言】纵观项目的开发,当项目框架搭建起来之后,更多的功能是无非是根据业务来操控SQL语句,针对每个开发来说SQL语句是个基本功,是避不开的。...
View ArticleAttivio Completes Certification On Cloudera Enterprise
Hadoop is fast becoming the center piece of a modern data architecture. And Cloudera Enterprise provides the centralized management and robust support that you need to effectively operate Hadoop. The...
View Article