我电脑装的是windows和ubuntu双系统。在windows下改变分区,包括新建分区、删除分区、合并分区等操作,会造成Ubuntu的grub找不到分区,以致进入grub rescue模式。这时可以通过如下方式恢复。...
http://blog.csdn.net/mazidao2008/article/details/4934257————————————————————————————————————————————————————STUN简介STUN(Simple Traversal of UDP over NA...
分类:
其他好文 时间:
2014-07-24 21:33:22
阅读次数:
314
1.首先,我们来介绍第一种方式:◆查询的SQL语句如下:select row_number() over (order by name) as rowid, sysobjects.[name] from sysobjects◆运行的结果:rowid name1 all_columns2 all_ob...
分类:
数据库 时间:
2014-07-24 17:28:45
阅读次数:
342
1.普通方式建立主表create table tbl_partition( id integer, name varchar(20), gender boolean, join_date date, dept char(4))2.创建分区表.(注意加上约束和继承)cre...
分类:
数据库 时间:
2014-07-24 17:19:55
阅读次数:
324
MyNotebookinstalledwithdualbootOS:LinuxMint16andWindows7DuringLinuxMint17overwrittingversion16,Iselectedthewindowsbootpartitionasthemintbootloaderdevicebymistake,sowindows7failedtostartaftertheinstallation.torecoverthebootpartition,boottheNBwithwindows7inst..
Description:Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome part...
分类:
其他好文 时间:
2014-07-23 20:34:35
阅读次数:
235
SELECT partition_name part, partition_expression expr, partition_description descr, table_rows FROM INFORMATION_SCHEMA.partitions WHERE...
分类:
数据库 时间:
2014-07-23 20:20:55
阅读次数:
258
Introduction In this post, we will introduce OTW(over the web) mode to install Teamcenter 4-tier rich client and also use WAM tool to generate it. To ...
分类:
系统相关 时间:
2014-07-23 15:11:06
阅读次数:
978
参考算法导论9.2
R_Select(int *a,int p,int r,int i){
if(p==r)
return a[p];
int q=partition(a,p,r);
int k=q-p;
if(i==k)
return a[q];
else if(i<k)
return R_Select(a...
分类:
其他好文 时间:
2014-07-23 13:04:06
阅读次数:
205
题目:Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve t....
分类:
编程语言 时间:
2014-07-23 12:27:46
阅读次数:
290