码迷,mamicode.com
首页 >  
搜索关键字:duplicate from active database    ( 76794个结果
asp.net调用带有输入和输出参数的存储过程
存储过程检测用户名是否重户create proc checklogin@username nchar(20),@pwd nchar(20),@hasrow int outputasselect @hasrow=count(*) from users where and GO存储过程写入数据crea....
分类:Web程序   时间:2014-05-09 16:40:52    阅读次数:367
【详解】如何编写Linux下Nand Flash驱动
From:http://www.crifan.com/files/doc/docbook/linux_nand_driver/release/html/linux_nand_driver.html版本:v2.2CrifanLi摘要本文先解释了Nand Flash相关的一些名词,再从Flash硬件机制...
分类:系统相关   时间:2014-05-09 16:36:30    阅读次数:691
mysql
descdesc select * from legou_home_product_on 查看是否被索引;desc legou_home_product_on 查看表定义修改表名ALTER TABLE emp RENAME emp2修改字段名MYSQL里修改字段名的...
分类:数据库   时间:2014-05-09 12:30:34    阅读次数:375
CSS3实现边框锯齿效果
通过CSS3的linear-gradient实现的.bg{width:300px;height:50px;background:#caca8c;background-image:-webkit-gradient(linear,50%0,0100%,from(transparent),color-st...
分类:Web程序   时间:2014-05-09 12:28:39    阅读次数:4486
matplotlib 显示中文
# --*-- coding: utf-8 --*--from matplotlib.font_manager import FontPropertiesimport matplotlib.pyplot as pltfont = FontProperties(fname=r"/usr/share/f...
分类:其他好文   时间:2014-05-09 11:51:09    阅读次数:323
Mysql基本用法-02
left join #左连接又叫外连接 left join 返回左表中所有记录和右表中连接字段相等的记录test_user表phpcvs表SQL: select * from test_user left join phpcvs on test_user.id=phpcvs.id执行结果如下图:.....
分类:数据库   时间:2014-05-08 21:08:56    阅读次数:445
LeetCode: Triangle 题解
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-05-08 21:08:25    阅读次数:407
【Android】开源项目汇总-备用
from://http://www.eoeandroid.com/home.php?mod=space&uid=765778&do=blog&id=47674Android开源项目第一篇——个性化控件(View)篇包括ListView、ActionBar、Menu、ViewPager、Gallery...
分类:移动开发   时间:2014-05-08 21:02:03    阅读次数:735
having 子句
HAVING 子句在 SQL 中增加 HAVING 子句原因是,WHERE 关键字无法与合计函数一起使用。SQL HAVING 语法SELECT column_name, aggregate_function(column_name)FROM table_nameWHERE column_name ...
分类:其他好文   时间:2014-05-08 20:48:01    阅读次数:311
因为数据库正在使用,所以无法获得对数据库的独占访问权
“因为数据库正在使用,所以无法获得对数据库的独占访问权”,终解决方案如下关键SQL语句:ALTER DATABASE [datebase] SET OFFLINE WITH ROLLBACK IMMEDIATE用完之后再ALTER database [ datebase] set online 第....
分类:数据库   时间:2014-05-06 09:34:07    阅读次数:335
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!