摘要:
imp userid=用户名/密码@orcl file=d:\nc60.dmp full=y用户名 :就是你的目标用户 。密码 :就是你的目标用户登录密码。orcl:是实例名称 就是数据库名file:就是你要导入的dmp文件全路径。full=y 是否全部导入 只有当前用户是dba的时候 才能用此选项 。 阅读全文
摘要:
http://blog.csdn.net/andamajing/article/details/7386965 阅读全文
摘要:
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 ... 阅读全文
摘要:
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 阅读全文
摘要:
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; 阅读全文
摘要:
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 阅读全文
摘要:
http://dukemil.egr.duke.edu/Ultrasound/Simulation/field_ii/field_ii_gui.html 阅读全文
摘要:
http://www.eggheadcafe.com/tutorials/sharepoint/223c6e57-f81f-44b3-ab05-5995f2b0ab63/sharepoint-video-library-template-available-for-download.aspx 阅读全文
摘要:
阅读全文
摘要:
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 ... 阅读全文