摘要: 转自:http://blog.csdn.net/Rzhghost/article/details/2512150 CodeGear RAD 2007 up4最新下载及破解 官方http下载: http://altd.codegear.com/download/radstudio2007/CodeGearRADStudio2007_Dec2007.iso 官方 ftp下载: ftp://ftpd.c... 阅读全文
posted @ 2014-06-10 08:27 不及格程序员 阅读(506) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2014-05-28 18:13 不及格程序员 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Oracle Create Table T_new as select * from Tab_oldSQL ServerSelect * into T_new from T_old表改名Oraclealter table t rename to T_IdNameSQL Server sp_rename 'T' ,'T_IdName'数据库改名exec sp_renamedb 'hrmsys... 阅读全文
posted @ 2014-05-27 15:21 不及格程序员 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 最近正好做一个WEB中定期执行的程序,而.NET中有3个不同的定时器。所以正好研究研究。这3个定时器分别是: //1.实现按用户定义的时间间隔引发事件的计时器。此计时器最宜用于 Windows 窗体应用程序中,并且必须在窗口中使用。 System.Windows.Forms.Timer // 2.提... 阅读全文
posted @ 2014-05-26 11:25 不及格程序员 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 设置消息队列的账户权限没用[Everyone,Anonymous],给everyone控制权限即可。 阅读全文
posted @ 2014-05-26 11:13 不及格程序员 阅读(2013) 评论(0) 推荐(0) 编辑
摘要: oracle 版本 11.2.0SQL> startupORACLE instance started.Total System Global Area 422670336 bytesFixed Size 1336960 bytesVariable Size ... 阅读全文
posted @ 2013-06-12 12:08 不及格程序员 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 用戶可以在sql中查詢V$視圖,但是創建procedure或function時,提示V$視圖不存在。SQL> create function get_stat_val 2 ( 3 p_name in varchar2 4 ) return number 5 as 6 v_value number; ... 阅读全文
posted @ 2013-06-11 13:25 不及格程序员 阅读(386) 评论(0) 推荐(0) 编辑