一、创建逻辑目录,该命令不会在操作系统创建真正的目录,最好以system等管理员创建。
create directory dpdata1 as 'd:\test\dump';
二、查看管理理员目录(同时查看操作系统是否存在,因为Oracle并不关心该目录是否存在,如果不存在,则出错)
select * from dba_directories;
三、给scott用户赋予在指定目录的...
分类:
数据库 时间:
2014-07-29 22:04:53
阅读次数:
491
A stack is collection that implements the last-in-first-out protocal.This means that the only access object in the collections is the last one thatwas inserted.The fundamental operations of a stack a...
分类:
其他好文 时间:
2014-07-29 14:53:28
阅读次数:
218
#include
#include
#include
struct file_operations;
struct inode;
struct module;
struct cdev {
struct kobject kobj;
struct module *owner;
const struct file_opera...
分类:
系统相关 时间:
2014-07-29 14:18:28
阅读次数:
280
cocos2d-x 3.0中场景切换特效比较多,而且游戏开发中也经常需要用到这些特效,来使场景切换时不至于那么干巴,遂这里汇总一下,开发中使用。
场景切换用到导演类Directory,大多数用的都是替换场景,当然也可以用出栈进栈的方式来进行场景的替换,这里以replaceScene来举例。
场景切换特效的应用代码:
auto scene=HelloWorld::createScene();/...
分类:
其他好文 时间:
2014-07-29 13:18:27
阅读次数:
166
LeetCode: LRU CacheDesign and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set....
分类:
其他好文 时间:
2014-07-29 11:43:36
阅读次数:
232
在本地安装了wamp环境,默认的根目录是D:\wamp\www,使用起来非常不方便。那如何改变默认的根目录呢1,找到httpd.conf文件D:\wamp\bin\apache\Apache2.2.21\conf2,找到这个地方## DocumentRoot: The directory out o...
分类:
其他好文 时间:
2014-07-29 11:41:56
阅读次数:
263
使用mkisofs遇到错误:genisoimage: Uh oh, I cant find the boot catalog directory 'beini/boot/isolinux'!使用的命令是sudo mkisofs -o boot.iso -r -J --no-emul-boot --b...
分类:
其他好文 时间:
2014-07-28 15:18:33
阅读次数:
318
在python2.5+中可以用with来保证关闭打开的文件with open('hello.txt') as f: do some file operations为什么要引入with呢?在之前如果要保证关闭文件需要这样:f = open('hello.txt')try: do some fi...
分类:
编程语言 时间:
2014-07-28 11:36:00
阅读次数:
305
Active Directory Federation Service 也即联盟身份认证服务是微软的单点登录解决方案 (SSO),配置步骤相当多,中文资料也比较少,写在这里希望对后来人有所帮助,语言使用的是中文系统,实际上使用英文可能部署起来更容易些,因为感觉翻译不是很好。一些术语 Active D...
分类:
其他好文 时间:
2014-07-27 23:18:39
阅读次数:
370
/* Image format-dependent operations. */typedef struct { jas_image_t *(*decode)(jas_stream_t *in, char *opts); /* Decode image data from a stream. */ ...
分类:
其他好文 时间:
2014-07-27 23:14:09
阅读次数:
297