OMF相关参数:DB_CREATE_FILE_DESTDefines the location
of the default file system directory or Oracle ASM disk group where the database
creates datafiles or ...
分类:
数据库 时间:
2014-06-29 13:34:37
阅读次数:
300
except是A集合减去B集合的结果;intersect是A集合和B集合的交集;都是返回的是非重复值,很多属性都和union类似。还是以student为例select
* from student;select * into student1 from student;goinsert into s...
分类:
数据库 时间:
2014-06-29 13:15:13
阅读次数:
342
使用场景:1. 该数据库增长的较大,存储磁盘空间不足; 2.
在特定情况下该数据库需要移动到另外一块磁盘上(呵呵。。。我的情况就是之前的磁盘要还给别人)步骤: 1. 新建查询 SELECT name,
physical_name FROM sys.master_files...
分类:
移动开发 时间:
2014-06-29 12:43:21
阅读次数:
672
模块是包括python定义和声明的文件。文件名=模块名+".py"。模块名保存在全局变量__name__中。1、模块中的执行语句,只是在导入时执行一次。这些语句通常用于初始化模块。2、被导入的模块被放到全局语义表中。3、import用法
+import moduleName +from modu.....
分类:
编程语言 时间:
2014-06-29 12:34:03
阅读次数:
277
From
:http://blog.csdn.net/hotdigger/article/details/6456240一般我们都用$_POST或$_REQUEST两个预定义变量来接收POST提交的数据。但如果提交的数据没有变量名,而是直接的字符串,则需要使用其他的方式来接收。方法一:
使用全局变量...
分类:
Web程序 时间:
2014-06-07 11:29:34
阅读次数:
221
Powerdesigner 从数据库导入数据 第一步, 打开 powerdesigner, 在菜单选择
【File】 选项, 然后在弹出的下拉单中选择 【Reverse
Engineer】选项,再选择【Database】选项第二步可以选择【Usingadatasource】选项右边的按钮第三步弹出【...
分类:
数据库 时间:
2014-06-07 09:50:33
阅读次数:
230
public bool BackupAA() { int temp = 0; int tempdel
= 0; string sql = "INSERT INTO [WMSBAK].[dbo].[AACopy] SELECT * FROM
[TestDB].[dbo].[AA] WHERE Add....
分类:
其他好文 时间:
2014-06-07 09:46:26
阅读次数:
150
删除数据库用sql语句 的方法:删除数据库DROP DATABASE
`数据库名称`;删除数据库里的表DROP TABLE `数据库里的表名`;
分类:
数据库 时间:
2014-06-07 08:13:32
阅读次数:
280
/////ado.net1.0中使用Transacation(事务)string
connectionString =
"database=Northwind;pwd=admin;uid=sa;server=DATABASE-VPC\\SQL2005";using
(SqlConnection co...
分类:
其他好文 时间:
2014-06-07 08:09:03
阅读次数:
244
Given a binary tree, find its maximum depth.The
maximum depth is the number of nodes along the longest path from the root node
down to the farthest le...
分类:
其他好文 时间:
2014-06-05 14:10:38
阅读次数:
304