I have a database with 24M records in SQL Server 2000.
When I run this query
select * from cdr
where starttime between '2011-05-15 00:00:00.000' and '2011-05-16 00:00:00.000'
and even this
declare @MinDate char(30) ,@MaxDate char(30)
set @MinDate=substring(convert(char,(getdate()-1), 120),1,10)+' 00:00:00.000'
set @MaxDate=substring(convert(char,(getdate()), 120),1,10)+' 00:00:00.000'
select * from cdr
where starttime between '2011-05-15 00:00:00.000' and @MaxDate
it runs very fast and return 3500 records in firs 10 seconds, note that starttime is char(30) in database
But when I run this query it just return 32 records in 10~60 seconds
declare @MinDate char(30), @MaxDate char(30)
set @MinDate = substring(convert(varchar, (getdate()-1), 120),1,10)+' 00:00:00.000'
set @MaxDate = substring(convert(varchar, (getdate()), 120),1,10)+' 00:00:00.000'
select * from cdr
where starttime between @MinDate and @MaxDate
:: @MinDate value is 2011-05-15 00:00:00.000
Note that starttime is indexed in my database
I want to know what is my problem?
StartTimecolumn isVARCHAR(30)- however, your criteria you use@MinDateand@MaxDateare defined asCHAR(30)which means they'll be padded to the defined length with spaces. This both wastes space, as well as requires conversion betweenCHARandVARCHAR- if your column's type isVARCHAR(30), I would make the search criteria's datatypeVARCHAR(30)as well – marc_s May 16 '11 at 9:06cdrtable?? If not - explicitly specify the columns you need - and only those you really truly need. This cuts back query and data transfer time – marc_s May 16 '11 at 9:06