1.how to create a tablespace that employs the most common features create tablespace tb_name #create bigfile tablespace tb_name datafile ‘/u01/dbfile/orcl/tb_name.dbf’ size 100m autoextend on maxsize 1000m #don’t recommend use the AUTOEXTEND feature.…
This article shows how to access MongoDB data using an Entity Framework code-first approach. Entity Framework 6 is available in .NET 4.5 and above. Entity Framework is an object-relational mapping framework that can be used to work with data as objec…
http://hi.baidu.com/kaisep/item/0e4bf6ee5da001d1ea34c986 源地址 启动weblogic的错误:Could not obtain an exclusive lock to the embedded LDAP data files directory 启动weblogic时报以下错误:<2004-12-22 上午05时25分29秒 CST> <Critical> <WebLogicServer> <BEA-000…
Help index About source code version control with Software Configuration Management (Subversion) Using command-line svn to access project source files Getting started with Subversion Working with files in the SVN repository Contributing your changes…
17.1.1.6 Creating a Data Snapshot Using Raw Data Files 创建一个数据快照使用 Raw Data Files 如果数据库是大的, 复制raw 数据文件可以变的更加有效相比使用mysqldump 和导入文件在每个slave上. 这个即使跳过更新索引的负载 使用这种方法 表在存储引擎具有复杂的caching和logging 算法需要额外的步骤来产生一个完全的时间点快照. 初始的copy命令需要留下cache信息和记录更新,即使你需要的一个全局的读锁…
0.课程地址与说明 1.课程地址:https://www.coursera.org/learn/python-network-data/home/welcome 2.课程全名:Using Python to Access Web Data 3.建议使用Python2进行学习 4.仅第一周有中文字幕,其它的只有英文字幕,只要英语有四级基本没有太大问题 5.本人使用的工具是蓝灯,做作业时可以用Google翻译插件帮帮忙 注:第一周讲课程说明和安装Python,无笔记 1.Regular Expres…
Coursera课程<Using Python to Access Web Data> 密歇根大学 Week6 JSON and the REST Architecture 13.5 JavaScript Object Notation(JSON) JSON是一种相比于XML更简单的格式,而且现在在互联网上非常普遍.XML是很强大,但是很多时候我们并不需要使用这么强大的格式,我们就能完成我们的任务. import json data = '''{ "name": "…
How to Fix "Linux Failure to Download extra data files for ttf-mscorefonts-installer" error Hi Using Linux for a time ,in its very essence one of the errors I often come across with is downloading problem for certain add-ons. If you get the foll…
Coursera课程<Using Python to Access Web Data> 密歇根大学 Week5 Web Services and XML 13.1 Data on the Web 在网络上我们需要用一种固定的模板进行交流,python将我们的内容serialize成这种模板,然后再de-serialize让另外一种语言读懂. 现在有两种交流模板:XML和JSON. 13.2 Extensible Markup Language(XML) XML也就是可扩展标记语言(Extens…
Coursera课程<Using Python to Access Web Data> 密歇根大学 Week4 Programs that Surf the Web 12.3 Unicode Characters and Strings Representing Simple Strings 使用ASCII码,每个字符都被一个0到256的数字表示来存在8bits的内存里. 使用ord()函数可以查询,指定字符所对应的ASCII码. >>> print(ord('H')) 72…
Coursera课程<Using Python to Access Web Data> 密歇根大学 Week3 Networks and Sockets 12.1 Networked Technology Transport Control Protocol(TCP) TCP端口就是为TCP协议通信提供服务的端口.TCP(Transmission Control Protocol),TCP是一种面向连接(连接导向)的.可靠的.基于字节流的运输层(Transport layer)通信协议. 在计…
Hadoop Datanode节点无法启动(All directories in dfs.data.dir are invalid) java.io.IOException: All directories in dfs.datanode.data.dir are invalid: "/usr/local/hadoop-2.4.0/dfs/data" at org.apache.hadoop.hdfs.server.datanode.DataNode.checkStorageLocat…
1.Networked Programs 1.Internet 我们现在学习Internet部分,即平时我们浏览器做的事情,之后再学习客服端这部分 2.TCP 传输控制协议 3.Socket HTTP80端口用来与浏览器沟通 4.Sockets in Python mysock=socket.socket(socket.AF_INET,socket.SOCK_STREAM)#like file open #AF_INET refer i'm make an internet socket #ST…
1.Understanding HTML 1.最简单的爬虫 import urllib fhand=urllib.urlopen('http://www.dr-chuck.com/page1.htm') for line in fhand: print line.strip() 2.Python 爬网页和直接访问网页 3.Scrape 2.Parsing HTML with BeautifulSoup 1.这次直接使用简单方法 BeautifulSoup 2.BeautifulSoup的安装 1…