码迷,mamicode.com
首页 >  
搜索关键字:drop    ( 5540个结果
iptables与tcpdump谁更靠近网卡
结论是tcpdump,用tcpdump抓包试试就知道了。// 将所有访问8080端口的包丢弃iptables -A INPUT -s 0.0.0.0/0.0.0.0 -p tcp --dport 8008 -j DROP// 查看iptables的策略iptables -L -n// 结果Chai....
分类:其他好文   时间:2015-02-13 23:38:47    阅读次数:208
ORA-04021 timeout occurred while waiting to lock object
用户要求删除一个数据库的用户 GREENPASS,在删除的过程中,报错如下:drop user GREENPASS * ERROR at line 1: ORA-04021: timeout occurred while waiting to lock object NEWDR.HNDR_SMS_L...
分类:其他好文   时间:2015-02-13 21:05:41    阅读次数:330
Oracle CBO评估like的数据量
对Like,有两种形式的写法是按照数据总量的5%评估。 SQL> drop table test purge; SQL> create table test as select * from dba_objects; SQL> exec dbms_stats.gather_table_stats(user,'test'); SQL> select count(1) from test;...
分类:数据库   时间:2015-02-13 18:33:43    阅读次数:201
查询数据库中所有表的记录数和大小
if exists ( select * from dbo.sysobjects where id = object_id(N'[dbo].[TableSpace]') and objectproperty(id, N'IsUserTable') = 1 ) drop table [dbo].[T....
分类:数据库   时间:2015-02-13 16:13:47    阅读次数:181
MySQL知识总结(二)基本语句总结
1. 数据库查看数据库show databases;使用数据库use [数据库名]如:use mysql创建数据库CREATE DATABASE bruce DEFAULT CHARACTER SET utf8删除数据库drop database bruce查询mysql版本select versi...
分类:数据库   时间:2015-02-13 13:06:22    阅读次数:162
mysql sql语句大全
1、说明:创建数据库CREATE DATABASE database-name2、说明:删除数据库drop database dbname3、说明:备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'testB...
分类:数据库   时间:2015-02-13 10:08:13    阅读次数:320
sql:PostgreSQL
PostgreSQL sql script:-- Database: geovindu-- DROP DATABASE geovindu;CREATE DATABASE geovindu WITH OWNER = postgres ENCODING = 'UTF8' TAB...
分类:数据库   时间:2015-02-12 18:09:15    阅读次数:212
CSS 滤镜 转
基本滤镜--可直接作用在对象上,并立即生效,主要有:1).alpha--通道2).blur--模糊3)MotionBlur--移动模糊4)Chroma--透明色5)Drop Shadow--下落阴影6)Flip--对称变换7)Glow--光晕8)GrayScale--灰度9)Invert--反色10...
分类:Web程序   时间:2015-02-12 10:29:26    阅读次数:313
uva 270 Lining Up (几何)
uva 270 Lining Up ``How am I ever going to solve this problem?" said the pilot. Indeed, the pilot was not facing an easy task. She had to drop packages at specific points scattered...
分类:其他好文   时间:2015-02-12 09:21:12    阅读次数:170
Oracle Flashback Drop: Undo a DROP TABLE Operation
7.4 Oracle Flashback Drop: Undo a DROP TABLE Operation Oracle Flashback Drop reverses the effects of a DROP TABLE operation. It can be used to recover after the accidental drop of a table. Flashbac...
分类:数据库   时间:2015-02-11 22:04:31    阅读次数:301
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!