在Window下操作Oracle:
打开cmd窗口之后
1.sqlplus /nolog
2.spool c:\jinwin.log;
4.spool off;
依次输入,操作完成。
如果想使用批处理完成以上操作,请问该怎么写。
sqlplus -S user/pass@DBService @C:\create.sql
其中:
1、-S:设置无提示模式,可通过sqlplus -h查到;
2、把spool命令放到create脚本中,或者在外面套个脚本也可以;
3、在create脚本末尾加上个exit命令行,以退出sqlplus;
windows环境不了解
linux环境:
sqlplus hr/password <<EOF
select * from employees;
commit;
quit;
EOF
IQueryable<t> table = null;
var query = from c in table
where c.Date >= DateTime.Parse("2012-04-21") && c.Date < DateTime.Parse("2012-05-23")
group c by c.Name into g
where g.Count() > 0
select new { Name