搜索到与相关的文章
Oracle

oracle高水位

oracle高水位http://www.cnblogs.com/chuyuhuashi/p/3548260.htmlhttp://blog.csdn.net/wyzxg/article/details/5631721数据表删除数据或者数据分区后,数据文件并没有减小。这是oracle数据库高数位highwatermark造成的。尽管用delete删除了数据,数据已经不在数据块中,但是,原有的数据块并不会被回收回去,只是被标记为空闲可用的了。就是说空间只要被划

系统 2019-08-12 01:54:35 2622

数据库相关

leetcode------Palindrome Partitioning

标题:PalindromePartitioning通过率:26.3%难度:中等Givenastrings,partitionssuchthateverysubstringofthepartitionisapalindrome.Returnallpossiblepalindromepartitioningofs.Forexample,givens="aab",Return[["aa","b"],["a","a","b"]]本题还是一个递归的过程,只是再递归的

系统 2019-08-12 01:54:23 2622

MySql

详细讲解如何导入和导出MySQL数据库

1.简介MySQL数据库的导入,有两种方法:(1)先导出数据库SQL脚本,再导入;(2)直接拷贝数据库目录和文件。在不同操作系统或MySQL版本情况下,直接拷贝文件的方法可能会有不兼容的情况发生。所以一般推荐用SQL脚本形式导入。下面分别介绍两种方法。2.方法一SQL脚本形式操作步骤如下:2.1.导出SQL脚本在原数据库服务器上,可以用phpMyAdmin工具,或者mysqldump(mysqldump命令位于mysql/bin/目录中)命令行,导出SQL

系统 2019-08-12 01:54:20 2622

Oracle

Oracle高级查询

使用Oracle特有的查询语法,可以达到事半功倍的效果1.树查询createtabletree(idnumber(10)notnullprimarykey,namevarchar2(100)notnull,supernumber(10)notnull//0isroot);--从子到父select*fromtreestartwithid=?connectbyid=priorsuper--从父到子select*fromtreestartwithid=?conn

系统 2019-08-12 01:53:40 2622

各行各业

mmseg4j 中文分词 for .net版本

1、mmseg4j用Chih-HaoTsai的MMSeg算法(http://technology.chtsai.org/mmseg/)实现的中文分词器,并实现lucene的analyzer和solr的TokenizerFactory以方便在Lucene和Solr中使用。2、MMSeg算法有两种分词方法:Simple和Complex,都是基于正向最大匹配。Complex加了四个规则过虑。官方说:词语的正确识别率达到了98.41%。mmseg4j已经实现了这两

系统 2019-08-12 01:33:32 2622

Linux

ZevenOS 5.0 发布,德国人的 Linux 发行

ZevenOS5.0发布了,更新软件包括:Linuxkernel3.5,X.Org7.7和PulseAudio2.1、Audacity2.0,Claws-Mail3.8.1,Firefox17,GIMP2.8,Inkscape0.48.下载地址:zevenos5-desktop.iso(700MB).ZevenOS是一份基于Ubuntu的GNU/Linux发行,它的主旨是提供一份快速易用的系统,并带有类似BeOS的用户界面和对老旧硬件的支持。该发行构建于一

系统 2019-08-12 01:32:44 2622

Tomcat

tomcat 配置首页

引用:http://topic.csdn.net/u/20080111/22/75ef5234-1def-43da-956a-8e701ba113bf.html目标:我在$tomcat/webapps/下建了个myjsp目录作为我网站的默认目录,在myjsp中有一个a.jsp文件,该文件要作为我网站的默认主页。修改配置文件:首先,修改$tomcat/conf/server.xml文件。在server.xml文件中,有一段如下:……

系统 2019-08-12 01:32:27 2622

Python

python 异步执行函数

参考:https://blog.csdn.net/jasonliujintao/article/details/77531519#coding:utf-8fromtimeimportsleepfromthreadingimportThreaddefasync(f):defwrapper(*args,**kwargs):thr=Thread(target=f,args=args,kwargs=kwargs)thr.start()returnwrappercl

系统 2019-09-27 17:55:56 2621

Python

推荐经典算法实现之SVDBias(python+MovieLen)

#coding:utf-8'''@author:Jason.F@data:2019.07.15@function:Implementation:SVDBiasDatatset:Movielen-1mEvaluation:hitradio,ndcgSquaredlossfunctionwithexplicitrating.'''importpandasaspdimportnumpyasnpimportmathfromcollectionsimportdefa

系统 2019-09-27 17:54:27 2621

Python

Python的Tkinter点击按钮触发事件的例子

如果要开发一个比较大的程序,那么应该先把代码封装起来,在面向对象编程中,就是封装成类先看代码:importtkinterastkclassApp:def__init__(self,root):root.title("打招呼测试")frame=tk.Frame(root)frame.pack()self.hi_there=tk.Button(frame,text="打招呼",fg="blue",command=self.say_hi)self.hi_ther

系统 2019-09-27 17:48:26 2621