使用scott用户 set utotrace on报错
SCOTT@TEST0422>set autotrace on
SP2-0618: Cannot find the Session Identifier. Check PLUSTRACE role is enabled
SP2-0611: Error enabling STATISTICS report
SCOTT@TEST...
分类:
数据库 时间:
2014-05-10 19:35:23
阅读次数:
389
引言
自己之前Vim的代码补全插件都是使用 ctags + autotag + taglist + omnicppcompele 的组合,而且很多时候都没有提示或提示补全,而且每次打开一个新文件文件都需要创建一个 ctag 标签库,代码补全才能正能工作,十分的繁琐蛋疼。当时我就在想,既然源代码都有了,难道就没有一个 Vim 插件能的通过已有的源代码,实时构建语法书来提供代码补全提示吗...
分类:
其他好文 时间:
2014-05-10 09:36:32
阅读次数:
330
Ubuntu下执行命令:sudo apt-get install vim
失败解决办法:更新一下,命令:sudoapt-getupdate再安装即可成功:sudo apt-get install vim
分类:
其他好文 时间:
2014-05-07 20:11:29
阅读次数:
349
一、开发工具的选择 1、 可以用来写代码的工具:记事本、ULtraEdit、Vim、Xcode等。
2、 选择XCode的原因:苹果公司官方提供的开发利器、简化开发的工程、有高亮显示功能。 3、 使用XCode新建一个C程序的源代码文件(扩展名为.c或者.C)
# 开发XCode ...
分类:
移动开发 时间:
2014-05-07 18:53:23
阅读次数:
439
格式如下:#vim file*.txt 或者 #vim file file2
file3查看当前编程的是那个文件,在冒号命令行下:args 命令,类似:file [file2],以中括号里面为当前编辑的文件 ;:next
转到下一个文件可以简写:n ;:prev 转到上一个文件,简写无效;:last...
分类:
其他好文 时间:
2014-05-07 18:39:54
阅读次数:
233
由于find具有强大的功能,所以它的选项也很多,其中大部分选项都值得我们花时间来了解一下。即使系统中含有网络文件系统( N F S
),find命令在该文件系统中同样有效,只你具有相应的权限。在运行一个非常消耗资源的find命令时,很多人都倾向于把它放在后台执行,因为遍历一个大的文件系统可能会花费很...
分类:
系统相关 时间:
2014-05-07 10:24:54
阅读次数:
380
一、find命令详细find命令 --
之查找指定时间内修改过的文件比如我们要查找linux下指定时间内做过改动的文件,我们可以用find命令,其实find命令的功能十分强大,下面我们通过几个简单的例子来学习下find命令的简单用法:find
/opt -iname "*" -atime 1 -ty...
分类:
其他好文 时间:
2014-05-07 10:11:08
阅读次数:
330
Description Given a code (not optimized), and
necessary inputs, you have to find the output of the code for the inputs. The
code is as follows: int a,...
分类:
其他好文 时间:
2014-05-07 09:56:16
阅读次数:
310
Given a binary tree, find the maximum path
sum.The path may start and end at any node in the tree.For example:Given the
below binary tree, 1 ...
分类:
其他好文 时间:
2014-05-07 09:36:09
阅读次数:
300