一、set feedback on
默认的当一条sql发出的时候,oracle会给一个反馈。
比如说执行下面这个创建表语句:
create table t_test_lll(id varchar2(10));
命令行会返回:Table created。
又比如执行一个pl/sql存储成功的时候,命令行会返回:
PL/SQL procedure successfully comple...
分类:
数据库 时间:
2014-11-27 10:48:36
阅读次数:
295
Windows Phone 8.1开发中使用ListView作为数据呈现载体时,经常需要一个下拉(拇指向上滑动)加载更多的交互操作。如何完成这一操作呢?下面为您阐述。 思路是这样的: 1.在ListView的loaded事件中,获取ListView中的ScrollView对象。 如何获得Scroll...
一、如果在SQL*PLUS中,需要先开启参数输出命令
SQL> set serverout on
SQL> exec dbms_output.put_line('test');
test
PL/SQL procedure successfully completed
SQL>
二、PL/SQL Developer中,调试存储时可以用DBMS_OUTPUT.put_line()命...
分类:
数据库 时间:
2014-11-25 10:54:50
阅读次数:
223
安装NTP之后,systemctl enable ntpd设置为开机自动启动,但是重启之后NTP并没有启动,使用systemctl status ntpd查看,得到如下信息:ntpd.service - Network Time Service
Loaded: loaded (/usr/lib/systemd/system/ntpd.service; enabled)
Active:...
分类:
其他好文 时间:
2014-11-25 09:19:10
阅读次数:
193
用require函数只能加载一次,因为它的特性是:
1、require函数会搜索目录加载文件
2、require会判断是否文件已经加载避免重复加载同一文件。
而这个特性二,虽然我们可能知道这两个特性,但是潜意识里面常常把这个特性二给忽视掉了.
直到哪天我们需要反复加载同一个lua文件,但是没有实现自己想要效果的时候,才会发现这个特性二的存在感特别强!
那么,如何实现反复加载一个lua文件?......
分类:
其他好文 时间:
2014-11-22 10:40:16
阅读次数:
232
创建:在终端中输入:sudo passwd rootEnter new UNIX password: (在这输入你的密码)Retype new UNIX password: (确定你输入的密码)passwd: password updated successfully以后,如果在想获得root权限,...
分类:
系统相关 时间:
2014-11-20 18:19:06
阅读次数:
172
解决: 开机启动 进入 升级之前的内核系统 然后 执行卸载 VMware 命令# vmware-uninstall You have gotten this message because you are either downgrading VMwareWorkstation, Player, ....
分类:
系统相关 时间:
2014-11-20 15:09:07
阅读次数:
1840
使用方法public partial class HomeView : PhoneApplicationPage{ public HomeView() { InitializeComponent(); Loaded += HomeView_Loaded; ...
关于mac上brew安装一些软件时遇到这个问题的解决。如果报错代码如:Error: The `brew link` step did not complete successfullyThe formula built, but is not symlinked into /usr/local/im...
分类:
其他好文 时间:
2014-11-20 13:22:08
阅读次数:
315
centos yum 错误 Error: Cannot find a valid baseurl for repo: addons 装了个CentOS 6.5,使用yum时出现了下面的错误提示。
[root@localhost ~]# yum install lrzsz
Loaded plugins: fastestmirror
Determining fastest mirrors
Co...
分类:
Web程序 时间:
2014-11-19 16:07:35
阅读次数:
223