首页 > 2015年10月12日 > 全部分享
清除sqlserver2008日志文件。
USE[master]GOALTERDATABASEDbNameSETRECOVERYSIMPLEWITHNO_WAITGOALTERDATABASEDbNameSETRECOVERYSIMPLE--简单模式GOUSEcp2yfxGODBCCSHRINKFILE(N‘DbName_log‘,11,TRUNCATEONLY)GOUSE[master]GOALTERDATABASEDbNameSETRECOVERYFULLWITHNO_WAITGOALTERDATABASEDbNameSETRECOVER..
分类:数据库技术   时间:2015-10-12 12:46:37    收藏:0  评论:0  赞:0  阅读:173
css3实现元素水平垂直居中
css3实现元素水平垂直居中,代码如下:<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"conte..
分类:Web开发   时间:2015-10-12 12:46:17    收藏:0  评论:0  赞:0  阅读:209
zookeeper管理应用服务器配置文件
附件中为:zookeeper管理应用服务器配置文件的开发文档。
分类:其他   时间:2015-10-12 12:45:57    收藏:0  评论:0  赞:0  阅读:224
GD库封装的处理图片工具类
<?php namespacevendor\gd\xx; /** *GDImgisthemodelbehindthep_w_picpath. * *//设定图片尺寸 *$width=300; *$height=150; *//图片一 *$src=‘001.jpg‘; *//$content=‘hello‘; *//$font_url=‘arial.ttf‘; *//$size=20; *//$color=[255,255,255,20]; *//$local=[‘x‘=>20..
分类:其他   时间:2015-10-12 12:45:47    收藏:0  评论:0  赞:0  阅读:284
delphi xe2 常用控件安装经验分享
为大家节省些时间,是写常用的控件安装方法,小经验小分享,时间匆忙就不写仔细了,大家可以看附件。
分类:Windows开发   时间:2015-10-12 12:45:27    收藏:0  评论:0  赞:0  阅读:137
JS实现中文名字转拼音的
<htmlxmlns="http://www.w3.org/1999/xhtml"class="loading"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"><title>contacts</title><metaname="viewport"content="width=device-width,initial-scale=1,user-scala..
分类:Web开发   时间:2015-10-12 12:45:07    收藏:0  评论:0  赞:0  阅读:177
ocp-310
QUESTION NO: 310 Which of the following represents the correct sequence of events for Database Replay?A. Capture, analyze, preprocess, replay B. Capture, preprocess, analyze, replay C. Capture, prep...
分类:其他   时间:2015-10-12 12:43:47    收藏:0  评论:0  赞:0  阅读:176
Andrew Ng机器学习课程17(2)
Andrew Ng机器学习课程17(2)声明:引用请注明出处http://blog.csdn.net/lg1259156776/说明:主要介绍了利用value iteration和policy iteration两种迭代算法求解MDP问题,还介绍了在实际应用中如何通过积累“经验”更新对转移概率和reward的估计的学习模型,并结合两种迭代算法进行求解的完整过程。...
分类:其他   时间:2015-10-12 12:43:37    收藏:0  评论:0  赞:0  阅读:213
ocp-309
QUESTION NO: 309 Which statement most accurately describes the implementation of a SQL Access Advisor recommendation? A. SQL Access Advisor recommendations are automatically implemented. B. Indivi...
分类:其他   时间:2015-10-12 12:43:27    收藏:0  评论:0  赞:0  阅读:276
LeetCode -- Find Peak Element
LeetCode -- Find Peak Element...
分类:其他   时间:2015-10-12 12:43:17    收藏:0  评论:0  赞:0  阅读:202
Canvas使用错误:screen.getContext('2d') is not a function
getContext是用来获取画布上下文的,如果出现not a function错误,一般是由于获取Canvas元素的方法不正确引起的。在某些浏览器中,变量和类命名也会导致奇怪的问题,注意尽量不用使用screen/canvas来作为元素的类名或JS中的变量名,以免和特定浏览器的默认定义冲突。本例出现的错误代码实例在:http://wow.techbrood.com/fiddle/11770解决方法...
分类:其他   时间:2015-10-12 12:43:07    收藏:0  评论:0  赞:0  阅读:594
【我们都爱Paul Hegarty】斯坦福IOS8公开课个人笔记46 Persistence持久化
本话将介绍IOS中的四种数据持久化方式: Archiving SQLite File System Core Data 前面我们将结果NSUsrDefaults的用法,它是针对小数据量的持久化技术,本话的四种方式是针对大数据量的操作。 1.Archiving Archiving是一种把对象存储到硬盘上的存储方式,被存储的对象不需要所有属性的目录。只要一个对象实现了Archiving的两...
分类:移动平台   时间:2015-10-12 12:42:57    收藏:0  评论:0  赞:0  阅读:244
JAVA_SE基础——42.final修饰符
高手勿喷~ final关键字可用于修饰类、变量和方法,它有“这是无法改变的”或者“最终”的含义,因此被final修饰的类、变量和方法将具有以下特征: 1.final修饰的类不能被继承。实例1 2.final修饰的方法不能被子类重写。实例2 3.fianl修饰的变量(成员变量和局部变量)是常量,只能被赋值一次。实例3 4.fianl修饰成员变量的时候,一定要在定义变量的同时赋予一个初始化值...
分类:编程语言   时间:2015-10-12 12:42:37    收藏:0  评论:0  赞:0  阅读:235
Docker 学习笔记(三)--Docker镜像与仓库
#镜像与仓库 ##查看和删除镜像 镜像存放的位置 /var/lib/docker ###列出镜像 docker images [OPTIONS] [REPOSITORY] -a, --all=false...
分类:其他   时间:2015-10-12 12:42:27    收藏:0  评论:0  赞:0  阅读:174
【springmvc+mybatis项目实战】杰信商贸-34.业务出口报运WebService1
我们要为出口报运做一个WebService,来提供跨系统的信息查询功能。 我们使用的技术是 -------Apache CXF WebService 作用:两个异构系统,需要共享数据。 需求:我们要给客户提供合同追踪。在出口报运中增加一个WebService,用户可以通过它的系统来访问这个服务,展现出口报运单,主要可以浏览用户的订单状态(走到哪个流程)。查看出口报运单 开发步骤...
分类:编程语言   时间:2015-10-12 12:42:18    收藏:0  评论:0  赞:0  阅读:234
ocp-327
QUESTION NO: 327 The following query will provide what information about transportable tablespaces for the current database? (Choose all that apply.) select d.platform_name ―Source‖, t.platform_name...
分类:其他   时间:2015-10-12 12:42:07    收藏:0  评论:0  赞:0  阅读:126
ocp-323
QUESTION NO: 323 To enable resumable space allocation for the instance, which of the following initialization parameters should you set to a nonzero value? A. RESUMABLE_SPACE_TIME B. RESUMABLE_SPA...
分类:其他   时间:2015-10-12 12:41:57    收藏:0  评论:0  赞:0  阅读:203
ocp-324
QUESTION NO: 324 Which of the following describes how a distributed resumable transaction behaves?A. The resumable setting on the initiating session determines the resumable conditions for the entire...
分类:其他   时间:2015-10-12 12:41:47    收藏:0  评论:0  赞:0  阅读:219
ocp-322
QUESTION NO: 322 When tuning Automatic PGA Memory Management, which of the following views will provide the information specified? A. The V$PGA_TARGET_ADVICE view shows the predicted cache hit-ratio...
分类:其他   时间:2015-10-12 12:41:37    收藏:0  评论:0  赞:0  阅读:218
ocp-326
QUESTION NO: 326 Which of the following are included in a transportable tablespace set? (Choose all that apply.)A. The datafiles that make up a self-contained group of tablespaces required for copyB....
分类:其他   时间:2015-10-12 12:41:27    收藏:0  评论:0  赞:0  阅读:354
1770条   上一页 1 ... 54 55 56 57 58 ... 89 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!