上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页
摘要: imp userid=用户名/密码@orcl file=d:\nc60.dmp full=y用户名 :就是你的目标用户 。密码 :就是你的目标用户登录密码。orcl:是实例名称 就是数据库名file:就是你要导入的dmp文件全路径。full=y 是否全部导入 只有当前用户是dba的时候 才能用此选项 。 阅读全文
posted @ 2013-04-18 14:50 louiskoo 阅读(221) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/andamajing/article/details/7386965 阅读全文
posted @ 2013-04-15 14:14 louiskoo 阅读(166) 评论(0) 推荐(0) 编辑
摘要: string connStr = @"Data Source=XE;User ID=AI;password=sa"; OracleConnection conn = new OracleConnection(connStr); Ai dt = new Ai(conn); var result = from t in dt.Platform join c in dt.Car on t.PlatID equals c.PlatID ... 阅读全文
posted @ 2013-04-09 04:03 louiskoo 阅读(153) 评论(0) 推荐(0) 编辑
摘要: https://forums.oracle.com/forums/thread.jspa?threadID=2177895&tstart=90As far as i have worked on EF4 using Oracle , Function importing doesn't seems to work here. I faced the same problem few months back and tried many ways to import a function but without any luck. But during searching I f 阅读全文
posted @ 2013-04-09 04:00 louiskoo 阅读(660) 评论(0) 推荐(0) 编辑
摘要: createorreplace package body package_user AS PROCEDURE PERSON_QUERY(RS OUT MY_RESULTSET_CURSOR,C OUTINTEGER) AS BEGIN OPEN RS FORselect * from emp; update A set ename='AAA'; SELECTCOUNT(*) INTO C from emp; END PERSON_QUERY; END; 阅读全文
posted @ 2013-04-09 03:05 louiskoo 阅读(135) 评论(0) 推荐(0) 编辑
摘要: alter table imcc.agentstatuslog add primary key (id)select count(1) from imcc.agentstatuslog where id is nulldelete from imcc.agentstatuslog where id is null 阅读全文
posted @ 2013-04-09 01:42 louiskoo 阅读(194) 评论(0) 推荐(0) 编辑
摘要: http://dukemil.egr.duke.edu/Ultrasound/Simulation/field_ii/field_ii_gui.html 阅读全文
posted @ 2013-04-07 21:08 louiskoo 阅读(411) 评论(0) 推荐(0) 编辑
摘要: http://www.eggheadcafe.com/tutorials/sharepoint/223c6e57-f81f-44b3-ab05-5995f2b0ab63/sharepoint-video-library-template-available-for-download.aspx 阅读全文
posted @ 2013-04-07 19:54 louiskoo 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-04-07 13:29 louiskoo 阅读(2317) 评论(0) 推荐(0) 编辑
摘要: delegate int del(int i);static void Main(string[] args){ del myDelegate = x => x * x; int j = myDelegate(5); //j = 25}创建表达式树类型:using System.Linq.Expressions;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Expression<del> myET = x ... 阅读全文
posted @ 2013-04-03 17:13 louiskoo 阅读(150) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页