05 2015 档案

摘要:private void Form1_Paint(object sender, PaintEventArgs e) { this.textBox1.SelectAll(); this.textBox1.Focus(); } 阅读全文
posted @ 2015-05-28 08:43 走路到纽约 阅读(1600) 评论(0) 推荐(0)
摘要:解决办法: 先创建一个临时表,然后把远程的含CLOB字段的表导入到临时表中,再倒入本表。 create global temporary table demo_temp as select * from demo; insert into demo_temp select * from demo@... 阅读全文
posted @ 2015-05-11 13:40 走路到纽约 阅读(1935) 评论(0) 推荐(0)
摘要:select textfrom dba_source twhere t.TYPE = 'PACKAGE BODY'and name ='EMR_RECORD_INPUT'order by line 阅读全文
posted @ 2015-05-10 00:13 走路到纽约 阅读(3880) 评论(0) 推荐(0)