1、下载安装Microsoft.Visual.SourceSafe.2005.iso下载地址:http://download.csdn.net/source/1625282、安装vs2008补丁VS80-KB943847-X86-INTL.exe下载地址:http://download.microsoft.com/download/7/1/f/71fdb660-4e69-471a-ad58-d984b45cc140/vs80-kb943847-x86-in
系统 2019-08-12 09:27:02 2287
先开启execsp_configure'showadvancedoptions',1reconfigureexecsp_configure'AdHocDistributedQueries',1reconfigure然后调用INSERTINTOSoyErpBasicData.dbo.Base_Datadictionary(Type,Code,Name,SeqNO,State,Notes,ParentID,IsLeaf_YN,CompCode)SELECTTy
系统 2019-08-12 01:54:07 2287
在备库上建配置文件DGMGRL>createconfiguration'sharkdbbork'asprimarydatabaseis'sharkdb'connectidentifierissharkdb;Error:ORA-16501:theDataGuardbrokeroperationfailedError:ORA-16625:cannotreachdatabase"sharkdb"查看日志oracle@dg:[/u01/app/database/d
系统 2019-08-12 01:53:21 2287
原文:SQL2005性能分析一些细节功能你是否有用到?(二)上一篇:SQL2005性能分析一些细节功能你是否有用到?我简单的提到了些关于SQL性能分析最基本的一些方法,下面的文章我会陆续补充。前面提到了根据SQL的执行IO和执行计划来分析,还有一个特别重要的参数,就是SETSTATISTICSTIME。第一:SETSTATISTICSTIME定义:SETSTATISTICSTIME(Transact-SQL)显示分析、编译和执行各语句所需的毫秒数。语法:S
系统 2019-08-12 01:53:08 2287
MariaDB项目发布了多个版本分支的更新,包括:MariaDB5.5.29—ReleaseNotes,Changelog,DownloadsMariaDB5.3.12—ReleaseNotes,Changelog,DownloadsMariaDB5.2.14—ReleaseNotes,Changelog,DownloadsMariaDB5.1.67—ReleaseNotes,Changelog,DownloadsAPTandYUMRepositoryCo
系统 2019-08-12 01:52:38 2287
1)Database-updatesviaDMLinaSQLExec-statement(e.g.INSERTINTOPS_TEST_TABLEVALUES(‘value_field_1′,’value_field_2′),triggeredviaanonlinecomponent:PeoplebooksstatesthatDMLinaSQLExec-statementisonlyallowedinFieldChange,SavePreChange,Wor
系统 2019-08-12 01:33:42 2287
1.新建site-packages目录,进入到site-packages目录下;2.在site-packages目录下执行pipfreeze>requirements.txt;3.查看requirements.txt,可以看到当前机器的python所有依赖包已生成列表4.在当前目录下执行pipdownload-rrequirements.txt,可以看到pip开始下载依赖包列表中的所有依赖包5.等待下载完成后,可以看到当前目录下已经有了依赖包文件6.
系统 2019-09-27 17:56:10 2286
1,linux文件知识补充~$ls-alldrwxr-xr-x2qiaozanqiaozan40968月621:21Templates-rw-r--r--1qiaozanqiaozan09月1707:53test.txt解读:d和-分别代表目录和普通文件。rwxr-xr-x分别代表"(用户/用户组/其它用户)“的”(可读/可写/可执行)"权限。可以使用chmod修改文件权限。如:linux中给一个文件加可执行权限:**chmod+x文件或用0~7的数字ch
系统 2019-09-27 17:54:35 2286
以下几种方法来模拟enum:(感觉方法一简单实用)复制代码代码如下:#way1classDirections:up=0down=1left=2right=3printDirections.down#way2dirUp,dirDown,dirLeft,dirRight=range(4)printdirDown#way3importcollectionsdircoll=collections.namedtuple('directions',('UP','DOW
系统 2019-09-27 17:54:03 2286
本文实例为大家分享了python统计文本中单词出现频率的具体代码,供大家参考,具体内容如下#coding=utf-8importosfromcollectionsimportCountersumsdata=[]forfnameinos.listdir(os.getcwd()):ifos.path.isfile(fname)andfname.endswith('.txt'):withopen(fname,'r')asfp:data=fp.readlines(
系统 2019-09-27 17:53:23 2286