-
SQLSERVER注入必殺技
表ID=1 and (Select top 1 name from(Select top [N] id,name from sysobjects where xtype=char(85)) T order by id desc)1[T] = 表
应用 2007-07-05
-
注射MSSQL时恢复sp_addextendedproc
的分号.show.aspx?id=1 and (select @@version)0;果然,2003的系统show.aspx?id=1 and ''sa''=(select System_user)嘿嘿 正确返回 有权限了
应用 2007-07-03
-
SQLSERVER注入必殺技
ID=1 and (Select top 1 name from(Select top [N] id,name from sysobjects where xtype=char(85)) T order by id desc)1[T] = 表名
应用 2007-07-02
-
oracle statspack实例之二
内存调整select * from v$sga;调整前SGANAME VALUE Fixed Size 452184Variable Size 402653184
应用 2006-03-01
-
几个删除重复记录的SQL语句
在大的数据库应用中,经常因为各种原因遇到重复的记录,造成数据的冗余和维护上的不便。1。用rowid方法据据oracle带的rowid属性,进行判断,是否存在重复,语句如下:查数据: select
应用 2006-02-27
-
oracle热物理备份步骤
1,选取所有表空间select tablespace_name from dba_tablespaces;2,对于每一个表空间建立数据文件的列表select file_name from
应用 2006-02-21
-
mysql 日期小技巧
按月份统计当月记录数select pid,DATE_FORMAT(adddate,''%Y%c''),count(*) as abc from T_TONE_LOG group by pid
应用 2006-02-20
-
Oracle一些常用的SQL
查询表结构select substr(table_name,1,20) tabname,substr(column_name,1,20)column_name,rtrim
应用 2006-02-09
-
oracle 8i管理
二、查看当前用户每个表占用空间的大小:Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group
应用 2006-02-07
-
用T-SQL获得当前连接客户端IP和机器名
Declare @RowCount intSelect @rc=0Select @RowCount=0begin//create temp table ,save sp_who informationcreate table #tspid( spid int null, ecid
应用 2005-11-28