show和set命令是两条用于维护SQLPlus系统变量的命令
SQL show all --查看所有系统变量值
SQL show user --显示当前连接用户
SQL show error --显示错误
SQL set heading off --禁止输出列标题,默认值为ON
SQL set feedback off --禁止显示最后一行的计数反馈信息,默认值为对6个或更多...
分类:
数据库 时间:
2014-06-10 17:37:50
阅读次数:
388
1:使用SHOW语句找出在服务器上当前存在什么数据库:mysql> SHOW
DATABASES;2:2、创建一个数据库MYSQLDATAmysql> CREATE DATABASE
MYSQLDATA;3:选择你所创建的数据库mysql> USE MYSQLDATA; (按回车键出现Databas...
分类:
数据库 时间:
2014-06-10 17:17:39
阅读次数:
245
原题地址:https://oj.leetcode.com/problems/letter-combinations-of-a-phone-number/题意:Given
a digit string, return all possible letter combinations that the ...
分类:
编程语言 时间:
2014-06-10 16:40:57
阅读次数:
223
The most strait forward approach is calculating
all the possible areas and keep the max one as the result. This approach needs
O(n*n) time complexity,...
分类:
其他好文 时间:
2014-06-10 16:11:31
阅读次数:
184
原题地址:https://oj.leetcode.com/problems/palindrome-number/题意:Determine
whether an integer is a palindrome. Do this without extra space.click to show
spo...
分类:
编程语言 时间:
2014-06-10 16:06:52
阅读次数:
286
MFC 判断子窗体是否已经打开,避免重复创建
在主窗体中,嵌入一个很多个子窗体,但是,每次只显示一个。
我的做法是,首先在主窗体头文件中定义子窗体对象,然后在单击显示按钮的时候,先判断子窗体是否已经被创建,如果创建了,则ShowWindow(SW_SHOW);将其他已经创建的窗体ShowWindow(SW_HIDE);如果没有创建,则先Create窗体并显示。
在MainDlg.h里面定...
Given a linked list and a valuex, partition it
such that all nodes less thanxcome before nodes greater than or equal tox.You
should preserve the origi...
分类:
其他好文 时间:
2014-06-10 12:06:09
阅读次数:
205
iOS开发UI篇—Quartz2D简单使用一、画直线代码: 1 // 2 //
YYlineview.m 3 // 03-画直线 4 // 5 // Created by apple on 14-6-9. 6 // Copyright
(c) 2014年 itcase. All rights...
分类:
移动开发 时间:
2014-06-10 11:20:35
阅读次数:
360
Write an algorithm to print all ways of arranging
eight queens on an 8*8 chess board so that none of them share the same row,
column or diagonal.思路:本质...
分类:
其他好文 时间:
2014-06-10 10:36:29
阅读次数:
182
问题描述:
A permutation is an ordered arrangement of objects. For example, 3124 is one possible permutation of the digits 1, 2, 3 and 4. If all of the permutations are listed numerically or alphabeti...
分类:
其他好文 时间:
2014-06-10 06:13:21
阅读次数:
299