摘要:
SELECT DATEADD(HOUR,1,'2015-01-01 00:00:00') h INTO vinson_h DELETE vinson_h DECLARE @num INT=0 DECLARE @h int SELECT @h=DATEDIFF(HOUR,'2015-01-01 00:
阅读全文
posted @ 2018-11-02 09:56
vinsonLu
阅读(1545)
推荐(0)
摘要:
出处:https://blog.csdn.net/qq_35893120/article/details/78560973
阅读全文
posted @ 2018-08-08 12:12
vinsonLu
阅读(65156)
推荐(2)
摘要:
$("input[id^='code']");//id属性以code开始的所有input标签 $("input[id$='code']");//id属性以code结束的所有input标签 $("input[id*='code']");//id属性包含code的所有input标签 $("input[name^='code']");//name属性以code开始的所有input标签 $("input...
阅读全文
posted @ 2018-06-12 10:43
vinsonLu
阅读(488)
推荐(0)
摘要:
出处:https://www.cnblogs.com/huangyoum/p/6625213.html
阅读全文
posted @ 2018-06-12 10:42
vinsonLu
阅读(12011)
推荐(0)
摘要:
/// /// 发送 改成异步发送了 /// /// /// /// /// private static void Notify(NotifyContext noticontext, List notifyenum) { ...
阅读全文
posted @ 2018-05-28 16:27
vinsonLu
阅读(261)
推荐(0)
摘要:
--查找存在某表名的存储过程 SELECT distinct b.name from syscomments a,sysobjects b WHERE a.id=b.id and a.TEXT LIKE '%你要查找的表名%' --查找存在某内容的存储过程 SELECT NAME FROM sysobjects o, syscomments s WHERE o.id = s.id A...
阅读全文
posted @ 2018-05-21 16:50
vinsonLu
阅读(461)
推荐(0)
摘要:
【1】问题背景:Oracle数据库版本为11.2.0.1,操作系统CentOS release 5.9,详细的报错信息如下: Dump file /data/oracle/diag/rdbms/db01/db01/incident/incdir_70215/db01_ora_17588_i70215
阅读全文
posted @ 2018-03-28 11:13
vinsonLu
阅读(1478)
推荐(0)
摘要:
select * from sys_department start with departmentid = '0303e461-2454-4d5a-bfea-2cd5a4c064c6' connect by prior departmentid = parentid
阅读全文
posted @ 2018-03-05 11:22
vinsonLu
阅读(3674)
推荐(0)
摘要:
把查询结果依次执行 查出行数为0的表信息.
阅读全文
posted @ 2017-05-15 09:48
vinsonLu
阅读(11751)
推荐(0)
摘要:
create user Develop identified by Develop; grant dba to Develop 删除USER。 DROP USER XX CASCADE 删除表空间。 DROP TABLESPACE tablespace_name INCLUDING CONTENTS AND DATAFILES; 删除空的表空间,不包含物理文件。 DROP TA...
阅读全文
posted @ 2017-04-01 23:45
vinsonLu
阅读(297)
推荐(0)