2016年9月8日

Oracle PLSQL 数据库导入导出常见问题

摘要: 1.PLSQL 导入、导出DMP时按钮无效 导出按钮无效是因为Export Executable没有添加exp.exe配置,导入也是同样问题; 2.exp 无法导出dmp文件 如果Oracle客户端是免安装版本,是没有.exe文件的 所以不管是使用exp 还是使用plsql都是无法导出dmp的;但是 阅读全文

posted @ 2016-09-08 09:23 wang-2345 阅读(1547) 评论(0) 推荐(0)

2016年8月25日

ORACLE创建表空间 用户

摘要: 新建用户并授权:-- Create the user create user SPHY identified by ffffff default tablespace SPHY_DATA temporary tablespace TEMP profile DEFAULT;-- Grant/Revok 阅读全文

posted @ 2016-08-25 12:31 wang-2345 阅读(145) 评论(0) 推荐(0)

2016年5月26日

action 返回值

摘要: action部分: 阅读全文

posted @ 2016-05-26 19:20 wang-2345 阅读(179) 评论(0) 推荐(0)

js 函数的参数是变量

摘要: var id = "#"+paramArray[i]; var paramValue = $(obj).parent().find(id).text() 阅读全文

posted @ 2016-05-26 19:10 wang-2345 阅读(281) 评论(0) 推荐(0)

2016年5月16日

PL/SQL导出、导入 表结构和表数据

摘要: 导出表结构:Tools->Export User Objects 导出表数据:Tools->Exports Tables Exp导出:scott用户,exp scott/密码@地址:端口号/实例名 file=路径 exp scott/tiger@192.168.0.1:1521/orcl file= 阅读全文

posted @ 2016-05-16 09:34 wang-2345 阅读(1927) 评论(0) 推荐(0)

2016年4月21日

jQuery checkbox 默认选中 取消选中后取值仍然会取到未选中的值

摘要: 事先说明一点:在标签中配置checked属性时 不管设置为ture或false 默认都为选中<input type="checkbox" checked="ture"/>或<input type="checkbox" checked="false"/> 所以使用jquery配置默认选中; $("in 阅读全文

posted @ 2016-04-21 16:27 wang-2345 阅读(2211) 评论(0) 推荐(0)

导航