摘要:
如果查询当前用户下得分区表:select * from user_tables where partitioned='YES'如果要查询整个数据库中的分区表:select * from dba_tables where partitioned='YES' 如果要查询某个用户下得分区表:select ... 阅读全文
摘要:
String sqlStr="select t.car_kind,count(t) from table1 t where t.jb_date='"+jb_date+"' and t.state='"+state+"' and t.sbzt='1' and t.bureau_code='"+ljdm... 阅读全文
摘要:
HTTP的GET方法模拟 阅读全文
摘要:
1,启动停止Oracle实例(1) su -oracle(2) echo $ORACLE_SID(3) sqlplus /nolog //以不登录到数据库的方式进入sqlplus环境(4) conn as sysdba // 输入数据库用户名/密码(5) startup //启动 shutdown... 阅读全文
摘要:
/** * 抽象coffee父类,其实可以不用的 */function Coffee () {}Coffee.prototype.cost = function() { throw '实现这个方法';};/** * 黑咖啡,其实可以不用继承的; */function BlackCoffee (... 阅读全文
摘要:
prtconf64位也可以查看:ls -l /unix 阅读全文
摘要:
http://blog.itpub.net/28227905/viewspace-1060183/当然,首先网络工程师给你放开策略,开通ftp端口之后,你才能做下一步.[@more@]AIX开启ftp服务:1.ftp服务的守护进程是否存在#lssrc -s inetd2.ftp服务的开启与关闭#st... 阅读全文
摘要:
/** * 模拟一个接口,其方法会抛出异常; */function FlyInter () {}FlyInter.prototype.fly = function() { throw '实现这个接口';};/** * 实现一个fly noway的方法; */function FlyNoWays... 阅读全文