临时表空间的临时文件损害,解决办法就是,增加一个新的临时文件,把老的给删除了就行。ocp 053699. Your database is using a default temporary tablespace that contains the temp01.tmp temporary file...
分类:
其他好文 时间:
2014-06-28 23:09:18
阅读次数:
352
--1.向已有表中增加一列ALTER TABLE TableName ADD ColumnName VARCHAR(20) NULL--2.删除表中的某一列ALTER TABLE TableName DROP COLUMN ColumnName--3.修改某一列的数据类型ALTER TABLE Ta...
分类:
数据库 时间:
2014-06-28 23:00:10
阅读次数:
238
Due to IE10 published, I’ll conclude the methods that how to add trust sites in to IE of the version before IE10. General, there are three methods to ...
分类:
其他好文 时间:
2014-06-28 21:33:51
阅读次数:
1028
private List GetOrganiztions(){var organizations = new List();organizations.Add(new Model.Organization.Organization{Id = "1",Name = "一汽",});organizati...
分类:
Web程序 时间:
2014-06-28 20:19:29
阅读次数:
230
#!/bin/bash###################################################### export the whole database use exp utility. ##################################...
分类:
其他好文 时间:
2014-06-28 19:58:18
阅读次数:
215
Interlockedsimplearithmetic operations are not atomic.Interlocked类提供了一个专门的机制用于完成这些特定的操作。这个类提供了Increment、Decrement、Add静态方法用于对int或long型变量的递增、递减或相加操作Inte...
分类:
其他好文 时间:
2014-06-21 12:06:35
阅读次数:
320
Enable-Migrations启用Migration数据迁移Add-Migration migrationname添加一个migrationUpdate-Database –TargetMigration:migrationname 回滚到指定数据库Update-Database –Verbos...
分类:
其他好文 时间:
2014-06-21 11:29:54
阅读次数:
214
按值传递地址传递:应该明白只有这2种传递,下面讨论函数的按值传递#include #include int add_rtVal(int a,int b){ int c = 0; c = a + b; return c;}int main(int argc,char* argv[])...
分类:
编程语言 时间:
2014-06-21 09:28:38
阅读次数:
267
--查询所有列select name from syscolumns where id=OBJECT_ID('PTS_ProjectTask')--列转为行GetColumnJoin 'ProjectTask'alter proc GetColumnJoin@TableName nvarchar(....
分类:
数据库 时间:
2014-06-21 08:35:37
阅读次数:
244
开始- 运行 - 输入“CMD” 确定在弹出来的窗口中,输入SQLPLUS / AS SYSDBA 回车然后,用命令修改:alter user 用户名 identified by "密码";回车~ 注意冒号~
分类:
数据库 时间:
2014-06-20 13:48:57
阅读次数:
188