码迷,mamicode.com
首页 >  
搜索关键字:bulk operation    ( 3126个结果
CSU 1267: Operation(模拟啊 )
CSU 1267: Operation(模拟啊 )...
分类:其他好文   时间:2014-12-10 19:52:15    阅读次数:191
谁把我的表给drop了?
今天生产上有人把几张表给DROP了,一通折腾。恢复备份导数回来数据,重建索引。但是,我就想知道是谁给干掉了。到你被删除表数据库中找日志吧。其它的也想不到更好办法了USE '被删表数据库'--查年那些创建和删除表的用户和时间SELECT [Xact ID],Operation,[Transaction...
分类:其他好文   时间:2014-12-10 15:44:09    阅读次数:149
【汇编指令】数据处理指令之逻辑指令
逻辑指令集有:AND/ORR/EOR/BIC 1)与逻辑指令一般用于置零某位:AND AND Logical AND operation. Syntax   AND{cond}{S}  Rd, Rn, Op2 Description   Load Rd with logical AND of Rn with Op2. Rd := Rn AND Op...
分类:其他好文   时间:2014-12-09 23:13:26    阅读次数:378
【LeetCode】Edit Distance
Edit DistanceGiven two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You...
分类:其他好文   时间:2014-12-09 17:12:10    阅读次数:240
[Django]bulk_create 探究
使用django orm大批量插入的时候我们可以不使用for循环对一个一个的save而是使用 bulk_create来批量插入,可是使用了这个方法还需要在自己添加一个事务吗? 还是django本身对这个方法进行了事务的封装? 查看了源码(django1.5):在 django/db/models/query.py 中,看到这样的片段 with transactio...
分类:其他好文   时间:2014-12-08 19:41:18    阅读次数:615
简单工厂模式实例
运算类public class operation { private double a = 0; private double b = 0; public double A { get { return a; } ...
分类:其他好文   时间:2014-12-08 19:29:15    阅读次数:123
python 判断操作系统类型
#!/bin/python#import platformdef TestPlatform(): print ("----------Operation System--------------------------") #Windows will be : (32bit, Windo...
分类:编程语言   时间:2014-12-08 17:17:24    阅读次数:267
简单工厂模式c#
简单工厂模式c#上简单例子 namespace simplefactory {     public partial class Form1 : Form     {         private void button1_Click(object sender, EventArgs e)//用户层次         {             Operation operatio...
分类:Windows程序   时间:2014-12-07 23:14:21    阅读次数:287
Edit Distance
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:其他好文   时间:2014-12-07 17:37:04    阅读次数:110
十七、流程控制之for循环
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; namespace_17.流程控制之for循环 { classProgram { staticvoidMain(string[]args) { /** *for循环语句 *其语法: *for(<initialization>;<condition>;<operation>) *{ ..
分类:其他好文   时间:2014-12-07 06:39:19    阅读次数:126
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!