select * from v$tablespace;select * from dba_tablespaces where contents like 'TEMP%';select * from v$tempfile f,v$tablespace t where f.TS# = t.TS#;cre ...
分类:
数据库 时间:
2020-04-10 00:17:11
阅读次数:
91
? Table of Contents 1. greek letter in MS word 1 greek letter in MS word insert/symbol alt codes check the Character code F alt+70 ζ U+03B6 https://ww ...
分类:
其他好文 时间:
2020-04-09 11:05:07
阅读次数:
67
1、 Microsoft .NET Pet Shop 4 ReadMe © 2005 Microsoft Corporation. All rights reserved. Contents This documentation provides installation instructions ...
分类:
Web程序 时间:
2020-04-08 22:46:02
阅读次数:
110
修改网站地址后,会有好多附件地址不变,附一个SQL语句,应用于phpmyadmin,批量修改: UPDATE `typecho_contents` SET `text` = REPLACE(`text`,'旧域名地址','新域名地址'); 同样可以替换其它表的内容: UPDATE `typecho_ ...
分类:
其他好文 时间:
2020-04-07 22:48:26
阅读次数:
134
Axure RP 在mac 环境,当时安装的是8.好久没用了,最近打开,一开就闪退。 网上找了一下,显示的都是各种文件夹没权限的问题,实验了一下不管用。 /Applications/develop/Axure RP 8.app/Contents/MacOS/Axure\ RP\ 8 --verbos ...
分类:
其他好文 时间:
2020-04-07 12:32:16
阅读次数:
465
thinkphp6+swagger-php配置管理接口文档
分类:
Web程序 时间:
2020-04-07 00:03:11
阅读次数:
704
方式一:正则 import requests import re contents = requests.get('http://www.sohu.com') links = re.findall('href="(.*?)"', contents.text) vaild_link = [] for ...
分类:
Web程序 时间:
2020-04-05 13:53:55
阅读次数:
83
try{ var mapView = MapView.Active; if (mapView != null) { var map = mapView.Map; if (map != null) { foreach (StandaloneTable table in map.StandaloneTa ...
分类:
其他好文 时间:
2020-04-04 00:15:12
阅读次数:
66
```python def singleton(cls): instances = {} def wrapper(*args, **kwargs): if cls not in instances: instances[cls] = cls(*args, **kwargs) return insta... ...
分类:
编程语言 时间:
2020-04-03 20:25:21
阅读次数:
172
Debugging SSL on Linux To help anyone looking at the SSL code, here are a few tips I've found handy. Contents Logging Network Traces Logging There are ...
分类:
系统相关 时间:
2020-04-02 19:44:51
阅读次数:
84