测试,使用linux 系统,迁移至windos测试系统,迁移用户scott 1.源端导出(linux) 2.传输 3.目标端导入(windows) 1.源端导出,本次使用expdp 1)创建操作系统转储目录,存放expdp导出的dump文件 [oracle@enmo ~]$ cd /picclife ...
以前只以为cheerio是nodejs版本的jQuery,可以轻松操作提取HTML,没想到原来还可以操作XML,记录一下。 示例XML: pg132.rdf <?xml version="1.0" encoding="utf-8"?> <rdf:RDF xml:base="http://www.gu ...
分类:
其他好文 时间:
2019-01-06 12:48:14
阅读次数:
192
Effective C++ Scott Meyers Chapter 7. Templates and Generic Programming 1. Item 45: Use member function templates to accept "all compatible types". Co ...
分类:
其他好文 时间:
2019-01-05 00:10:33
阅读次数:
217
Effective C++ Scott Meyers Chapter 7. Templates and Generic Programming 1. Item 41: Undetstand Implicit interfaces and compile-time polymorphism Both ...
分类:
其他好文 时间:
2019-01-02 10:45:29
阅读次数:
120
Effective C++ Scott Meyers Chapter 1. Uses and Abuses of vector 1. Item 4: Make sure that objects are initialized before they're used. Use member init ...
分类:
其他好文 时间:
2018-12-24 12:32:39
阅读次数:
144
如下: function codePointLength(text){ var result = text.match(/[\s\S]/gu); return result? result.length:0; } var s = '𠮷𠮷'; s.length //4 codePointLengt... ...
分类:
其他好文 时间:
2018-12-24 12:03:50
阅读次数:
155
@echo off echo ================================================ echo Windows环境下Oracle数据库的自动备份脚本 echo 1. 使用当前日期命名备份文件。 echo 2. 自动删除7天前的备份。 echo =======... ...
分类:
数据库 时间:
2018-12-23 23:48:56
阅读次数:
193
9. View the Exhibit and examine the privileges granted to the SL_REP user. The EMP table is owned by the SCOTT user. The SL_REP user executes the foll ...
分类:
其他好文 时间:
2018-12-16 11:52:07
阅读次数:
174
import cx_Oracle conn = cx_Oracle.connect("scott/admin@localhost:1521/orcl")cursor = conn.cursor() sql = "insert into dept (deptno,dname,loc) values ( ...
分类:
数据库 时间:
2018-12-15 22:32:55
阅读次数:
318
#!/bin/bash # Name: Atomic Archive configuration script # Copyright Atomicorp, 2002-2018 # License: AGPL # Credits # Scott R. Shinn (atomicorp) # Andy... ...
分类:
其他好文 时间:
2018-12-14 17:39:43
阅读次数:
158