用mysql实现类似oracle spool的功能-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 944214
  • 博文数量: 83
  • 博客积分: 32
  • 博客等级: 民兵
  • 技术积分: 2080
  • 用 户 组: 普通用户
  • 注册时间: 2010-08-12 09:45
个人简介

努力学习,努力分享,努力.....在努力..努力离开..

文章分类

(83)

  • (1)
  • (0)
  • (7)
  • (1)
  • (0)
  • (0)
  • (1)
  • (8)
  • (65)
  • (0)
文章存档

(3)

(1)

(47)

(32)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: mysql/postgresql

2013-12-12 16:28:52

在用oracle的sql*plus的时候spool真是好用啊.在mysql中如何实现呢?下面来实验说明

mysql中可以用tee参数具体实现方式有三种

第一种:tee参数加入my.cnf参数文件
例子:
tee =/mysql/mysql_op.log
注意:如果需要对client进行记录在[client]中加入

第二种:命令行
例子:
mysql -u root -p --tee=/mysql/mysql_op.log
这样会记录你的所有操作

第三章:
例子:
mysql> tee mysql_op.log
logging to file 'mysql_op.log'
mysql> 
mysql> show databases;
--------------------
| database           |
--------------------
| information_schema |
| mysql              |
| performance_schema |
| test               |
--------------------
4 rows in set (0.00 sec)
mysql> exit
bye
[mysql@localhost ~]$ ls
desktop  documents  downloads  music  mysql_op.log  pictures  public  templates  videos
[mysql@localhost ~]$ cat mysql_op.log 
mysql> 
mysql> show databases;
--------------------
| database           |
--------------------
| information_schema |
| mysql              |
| performance_schema |
| test               |
--------------------
4 rows in set (0.00 sec)
mysql> exit

关闭tee
mysql>notee
这种最类似于sql*plus的spool功能,将你命令行中的输出结果保存到外部文件中.如果指定已经存在的文件,则结果会附加到文件中.
阅读(5874) | 评论(3) | 转发(5) |
0

上一篇:

下一篇:

给主人留下些什么吧!~~

airmy2013-12-16 09:20:28

:我去了,写的不错。

文明上网,理性发言...谢谢.夸奖

|

2013-12-14 23:33:46

我去了,写的不错。

|

airmy2013-12-14 11:19:03

文明上网,理性发言...自己顶一下自己

|
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图