-
2008-05-04 19:22:34 / 外语角
1. Life was like a box of chocolates, you never know what you’re gonna get. (生命就像一盒巧克力,结果往往出人意料) 2. Stupid is as stupid does. (蠢人做蠢事,也可理解为傻人有傻福) 3. Miracles happen every day. (奇迹每天都在发生) 4. Jenny and I was like peas and carrots.(我和珍妮形影不离) 5. Have you given any thought to your future?(你有没有为将来打算过呢) 6. You just stay away from me please.(求你离开我)
查看(286)
评论(0)
-
2008-05-04 19:20:05 / 外语角
1. Lights out! 熄灯! 2. Risk goes up, price goes up. 价钱随风险上涨 3. Same old shit. 还是老样子 4. Put your trust in the Lord, your ass belongs to me.把信仰寄托给神, 把贱命交给我. 5. Man should have a skill. 人人都应有一技之长 6. Salvation lies within. 得救之道, 就在其中 7. Get busy living or get busy dying.忙碌着活, 或忙碌着死 (至高哲理) 8. Every man has his breaking point. 人的忍耐是有限度的
查看(389)
评论(1)
-
2008-04-28 19:44:30 / 外语角
http://ora110.itpub.net/post/33978/460688
查看(251)
评论(0)
-
2008-04-20 10:17:28 / Oracle数据库管理
solaris 9oracle 8.1.6要显示某个时间段范围的备份集。显示归档文件我会,但备份集命令不知道如何写?请问有人知道吗?
查看(149)
评论(4)
-
2008-01-03 20:41:03 / 外语角
Consider an ordered list of the values divided into block-wide ranges (leaf blocks).The end points of the ranges along with pointers to the blocks can be stored in asearch tree and a value in log(n) time for n entries could be found. This is the basicprinciple behind Oracle indexes.谁能帮我翻译下。thanks in advance.
查看(306)
评论(0)
-
2008-01-01 12:17:44 / Oracle开发
ORA-06502: PL/SQL: numeric or value errorORA-06512: at line 1SELECT OWNER,view_name,apps.Find_Value(owner,view_name )FROM dba_views;CREATE or REPLACE function Find_Value( av_owner varchar2, av_viewname varchar2)RETURN varchar2ISlong_var LONG;BEGINSELECT text INTO long_varFROM dba_viewsWHERE owner = av_ownerAND view_name = av_viewname;return long_var;END;
查看(265)
评论(2)
-
2007-12-26 09:01:20 / Oracle数据库管理
[php]C:\Documents and Settings\Administrator>sqlplus /nologSQL*Plus: Release 8.1.6.0.0 - Production on Wed Dec 26 08:56:02 2007(c) Copyright 1999 Oracle Corporation.All rights reserved.SQL> connect / as sysdbaERROR:ORA-01031: insufficient privilegesSQL> connect sys/manager as sysdbaConnected.SQL> show userUSER is "SYS"SQL> connect '/ as sysdba'Enter password:ERROR:ORA-01017: invalid username/password; logon denied好像把'/ as sysdba'整个字符串当作一
查看(448)
评论(10)