∏三毛

昔者庄周梦为胡蝶,栩栩然胡蝶也。自喻适志与!不知周也。

俄然觉,则蘧蘧然周也。不知周之梦为胡蝶与?胡蝶之梦为周与?

周与胡蝶则必有分矣。此之谓‘物化’。

posts - 90,comments - 53,trackbacks - 0
摘要: http://www.newsmth.net/pc/pccon.php?id=5721&nid=220783 vi编辑器是所有Unix及Linux系统下标准的编辑器,它的强大不逊色于任何最新的文本编辑器,这里只是简单地介绍一下它的用法和一小部分指令。由于对Unix及Linux系统的任何版本,vi编辑器是完全相同的,因此您可以在其他任何介绍vi的地方进一步了解它。Vi也是Linux中最基本的文本编辑...阅读全文
posted @ 2011-10-25 12:05 闫力昕 阅读(2) 评论(0) 编辑
摘要: http://blog.csdn.net/jaminwm/article/details/5666014 方法1:SQL> create table b as select 1 id from dual connect by level<=100; 方法2:SQL> create table a (id int);Table created.SQL> insert into a select 1 ...阅读全文
posted @ 2011-10-21 15:34 闫力昕 阅读(6) 评论(0) 编辑
摘要: 重新启动计算机,按F8进入Windows 高级选项菜单,选择[带命令行提示的安全模式],登录系统后在提示符下执行以下命令 C:\Documents and Settings\Administrator>cd \ C:\>cd WINDOWS\system32 C:\WINDOWS\system32>del DG.cfg, DG.ini, DGClient.exe, DgClientEx.exe...阅读全文
posted @ 2011-09-09 10:26 闫力昕 阅读(15) 评论(0) 编辑
摘要: You can identify the Oracle session ID for an RMAN channel by looking in the RMAN log for messages with the format shown in the following example:channel ch1: sid=15 devtype=SBT_TAPEThe sid and devtyp...阅读全文
posted @ 2011-09-07 11:24 闫力昕 阅读(4) 评论(0) 编辑
摘要: http://www.dba-oracle.com/t_rman_export_expdp.htm Question: I've been using data pump (the export utility) to backup my database, but I wonder if I should be using RMAN instead. They both do backups, ...阅读全文
posted @ 2011-08-31 09:08 闫力昕 阅读(7) 评论(0) 编辑
摘要: http://topic.csdn.net/t/20040318/07/2855549.html 此问题是因为安装完MS SQL Server 后修改了服务名称,导致数据库中名称与实际名称不一致造成的。 use msdbgosp_configure 'show advanced options', 1 GORECONFIGUREGO SP_CONFIGURE 'ALLOW UPDATES',1...阅读全文
posted @ 2011-08-22 17:10 闫力昕 阅读(6) 评论(0) 编辑
摘要: http://topic.csdn.net/t/20050326/12/3883164.html if serverproperty( 'servername') <> @@servernamebegindeclare @server sysnameset @server = @@servernameexec sp_dropserver @server = @serverset @server =...阅读全文
posted @ 2011-08-22 17:04 闫力昕 阅读(4) 评论(0) 编辑
摘要: 端口被进程号为880的进程占用,继续执行下面命令:C:\Users\Administrator>tasklist|findstr "880"svchost.exe 880 Services 0 2,240 K参考:http://www.blogjava.net/rabbit/archive/2008/03/12/185559.htmlhttp://www.foundstone.com/us/...阅读全文
posted @ 2010-06-07 11:27 闫力昕 阅读(14) 评论(0) 编辑
摘要: Table Variable vs. Temp Table Summary:Local Temporary Tables and Table Variables Feature Table Variable Temp Table Note Table Name Max 128 characters Max 116 characters Data Storage In memory and Temp...阅读全文
posted @ 2010-01-18 09:14 闫力昕 阅读(47) 评论(0) 编辑
摘要: USE AdventureWorks ;GOWITH DirectReports(LoginID, ManagerID, EmployeeID) AS ( SELECT LoginID, ManagerID, EmployeeID FROM HumanResources.Employee WHERE ManagerID IS NULL UNION ALL SELECT e.LoginID, e.M...阅读全文
posted @ 2009-12-10 14:29 闫力昕 阅读(97) 评论(0) 编辑