上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页
摘要: 一般程序包出现该问题,都是程序包的问题, 先检查一下程序包的问题,在看其他的。 >http://www.lxway.com/586292514.htm 阅读全文
posted @ 2018-01-08 17:58 AlisonGavin 阅读(1676) 评论(0) 推荐(0) 编辑
摘要: 修改数据update语法: update table_name set column_name1=data1, column_name2=data2,...(where codition) ; 阅读全文
posted @ 2018-01-08 14:58 AlisonGavin 阅读(262) 评论(0) 推荐(0) 编辑
摘要: /** 校正数据表和对应的序列 使用方法:在 SQL 窗口执行 call PROC_CORRECT_TABLEANDSEQ('表名','序列字段名','序列名');*/ create or replace procedure PROC_SEQ_RESET(v_seqname varchar2)asn 阅读全文
posted @ 2018-01-08 14:10 AlisonGavin 阅读(272) 评论(0) 推荐(0) 编辑
摘要: --用户名不区分大小写--删除用户表空间drop user &用户名 cascade;drop tablespace &永久表空间名称 including contents and datafiles; drop tablespace &临时表空间名称 including contents and 阅读全文
posted @ 2018-01-08 14:09 AlisonGavin 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 给scott用户解锁, 以sysdba用户进入 alter user scott account unlock; 给scott用户设置密码 alter user scott identified by tiger; 创建用户wpms created user wpms identified by w 阅读全文
posted @ 2018-01-08 14:03 AlisonGavin 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 利用游标cursor 阅读全文
posted @ 2018-01-08 13:59 AlisonGavin 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/GYoungBean/archive/2013/03/20/2971045.html 阅读全文
posted @ 2018-01-05 10:58 AlisonGavin 阅读(189) 评论(0) 推荐(0) 编辑
摘要: win+R--> cmd > 列出所有端口的情况 netstat -ano 查找端口 netstat -aon|findstr "8081" 查看是哪个进程或者程序占用 tasklist|findstr "8081" 结束进程 taskkill /f /t /im **.exe taskkill / 阅读全文
posted @ 2018-01-05 10:20 AlisonGavin 阅读(876) 评论(0) 推荐(1) 编辑
摘要: 解决方法: 修改path的路径, java默认会找第一个path下\bin\java.exe文件,找到就不报错,找不到就报错! 参考: http://blog.csdn.net/u012551524/article/details/72795173 阅读全文
posted @ 2018-01-03 16:48 AlisonGavin 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 什么是索引?索引的定义是如何,在你的项目中用来了索引吗? 索引是为了加速对表中数据行的检索而创建的一种分散的存储结构。索引是针对表而建立的,它是由数据页面以外的索引页面组成的,每个索引页面中的行都会含有逻辑指针,以便加速检索物理数据。 索引的作用相当于图书的目录,可以根据目录中的页码快速找到所需的内 阅读全文
posted @ 2018-01-03 09:56 AlisonGavin 阅读(149) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页