ulam 基于C语言的无类型Lambda演算解释器 github:https://github.com/hhusjr/ulam 代码很简短,只有单个C语言文件,600行不到。后面会逐步加入更多语法特征,以及改进为具有类型的$\lambda-calculus$等等。 Lambda演算 \(\lambd ...
分类:
编程语言 时间:
2020-12-03 11:41:04
阅读次数:
7
前言 之前写过Oracle还原数据库的博客。这次是备份数据库,同样也是用的数据泵。 旧文连接:https://www.cnblogs.com/BasicPlusPlus/p/13962554.html 系统环境 Windows Server 2003 R2 Oracle 10.2.0 报错脚本 ex ...
分类:
数据库 时间:
2020-12-02 12:21:02
阅读次数:
8
比如同步供应商数据: CREATE TABLE jd_unit( id varchar2(64) primary key, unit_name varchar2(500), unit_code varchar2(500), is_enable char(1), create_time timesta ...
分类:
数据库 时间:
2020-12-02 11:58:15
阅读次数:
9
强大的开源企业级数据库监控利器Lepus收录于话题#打怪升级进阶之路30个跳跃猫引导关注Lepus监控简单介绍官方网站:http://www.lepus.cc开源企业级数据库监控系统简洁、直观、强大的开源数据库监控系统,MySQL/Oracle/MongoDB/Redis一站式性能监控,让数据库监控更简单Git仓库地址:https://gitee.com/ruzuojun/Lepus简单介绍:Le
分类:
数据库 时间:
2020-12-02 11:53:38
阅读次数:
13
CREATE DEFINER=`test`@`%` PROCEDURE `prop_make_bak_sql`(psShecmal varchar(30),psFunctions varchar(3000)) BEGIN select CONCAT('-- 备份 ',name,' \r\nDELIM ...
分类:
数据库 时间:
2020-12-01 12:31:17
阅读次数:
15
很多场景我们需要根据多个表的某字段进行关联更新。 select * from table1 t1; select * from table2 t2; 现需求:参照table2表修改table1表,修改条件为两表的fname列内容一致。 常见陷阱: update table1 t1 set t1.fm ...
分类:
数据库 时间:
2020-12-01 12:27:08
阅读次数:
14
主键约束 SQL> alter table customers add constraint customers_pk primary key (customer_id); Table altered. col constraint_name for a30 col constraint_type ...
分类:
数据库 时间:
2020-12-01 12:20:58
阅读次数:
12
今天做数据库导出报错:EXP-00091:Exportingquestionablestatistics.在对ORACLE数据库做exp备份导出时报EXP-00091:Exportingquestionablestatistics”错误:详情如下:EXP-00091:Exportingquestionablestatistics.EXP-00091:Exportingquestionablesta
分类:
数据库 时间:
2020-12-01 11:59:32
阅读次数:
11
package com.example.test3; import android.app.AliasActivity; import android.app.ProgressDialog; import android.os.Bundle; import android.view.View; im ...
分类:
移动开发 时间:
2020-11-30 16:11:54
阅读次数:
19
简介 MAT 是Memory Analyzer的简称,他是一宽功能强大的Java堆内存分析器。多用于查找内存泄露以及查看内存消耗情况。 基于Eclipse开发,是一款免费的Java性能分析功能 下载安装 https://www.eclipse.org/mat/downloads.php 分析dump ...
分类:
编程语言 时间:
2020-11-30 16:10:09
阅读次数:
11