摘要:---https://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_8003.htm drop user geovin; drop user geovindu; create user geovindu identified by ORCA; --oracle用户创建及权限设置 create user geovin ...
阅读全文
posted @ 2018-11-27 10:03
®Geovin Du Dream Park™
阅读(331)评论(0)推荐(0)
摘要:-- 统计 select count(*) as '当天记录数' from web_product where date(p_createtime) = curdate(); select count(*) as '当天记录数' from web_product where to_days(p_createtime) = to_days(now()); SELECT count(...
阅读全文
posted @ 2018-08-24 13:01
®Geovin Du Dream Park™
阅读(517)评论(0)推荐(0)
摘要:Since browser detection can be tricky and very slow, I compared a few packages.http://thadafinser.github.io/UserAgentParserComparison/v5/index.htmlhtt
阅读全文
posted @ 2018-07-06 11:24
®Geovin Du Dream Park™
阅读(496)评论(0)推荐(0)
摘要:运行pgAdmin出现”pgAdmin 4 the application server could not be contant“ 窗口。 参考:https://stackoverflow.com/questions/40083391/postgresql-cant-connect-applica
阅读全文
posted @ 2017-12-25 13:26
®Geovin Du Dream Park™
阅读(3648)评论(0)推荐(1)
摘要:--step 1 : 修改数据库名称 USE master GO ALTER DATABASE GeovinDuCms SET SINGLE_USER WITH ROLLBACK IMMEDIATE GO EXEC master..sp_renamedb 'GeovinDuCms','DuCms' GO ALTER DATABASE DB_SHANGHAI SET MULTI_USER GO ...
阅读全文
posted @ 2017-10-17 17:52
®Geovin Du Dream Park™
阅读(722)评论(0)推荐(0)
摘要:---涂聚文 2017-9-28 SELECT VipExamMailProjectId,VipExamMailStaffID FROM VipExamMailRecord WHERE VipExamMailProjectId = 1 GROUP BY VipExamMailStaffID,VipExamMailProjectId HAVING COUNT(1)>1 ORDER ...
阅读全文
posted @ 2017-09-27 17:08
®Geovin Du Dream Park™
阅读(777)评论(0)推荐(1)
摘要:---查看所有存储过程或视图的位置 select a.name,a.[type],b.[definition] from sys.all_objects a,sys.sql_modules b where a.is_ms_shipped=0 and a.object_id = b.object_id and a.[type] in ('P','V','AF') order by a.[nam...
阅读全文
posted @ 2017-06-27 16:11
®Geovin Du Dream Park™
阅读(553)评论(0)推荐(0)