Viewing 15 posts - 346 through 360 (of 1,114 total)
yes..it was run 15 days back only ( in both server).
January 12, 2009 at 7:23 am
Some more points...
I have tested the indexes and statistics...there is no difference between both servers and number of rows are almost same between the two server.
January 12, 2009 at 6:30 am
I have posted it twice. How should i delete it ?
I clicked 'DELETE' button. but i am unable to delete it.
January 12, 2009 at 6:18 am
oops...i said blindly SQL sorts the data automatically... I have phrased my words wrongly...
YES..UNION will sort the the data by using internal workt table.
but the sorting order looks different...Thats...
December 19, 2008 at 2:40 am
Thanks for quick reply....
actually i got this error messag while running a job..since it was very urgent my manager sit near to me...he even not give some time to look...
December 15, 2008 at 10:11 am
Garadin,
i have tested your code...
original output:
aaazzzz
bbb
zzz
ccc
b
a
bb
i got the below result set...
bbb
zzz
ccc
bb
it didn't show
aaazzzz.
December 12, 2008 at 7:24 am
yes...it should work..
because it should use the ascii value..so ascii value for b is always greater than ascii value of a...so it will show the first part...
but in my case....
what...
December 12, 2008 at 7:21 am
Basically
where name > ''
should avoid balnk string values. Am i right ? how it will check the datapages internally? thats what i wanted to know...
December 12, 2008 at 7:13 am
yes...i have tried your code...
the result is like as below
#1:
Jonny
kamatchi
karthik
kuhan
ravi
#2:
kuhan
ravi
but if i don't have index...or if we dont have ordered result set....what will happen? it leads to wrong result set....
December 12, 2008 at 7:12 am
ok.
but if we have unordered data...what will happen ?
you sample data has ordered, so we no need to worry about the result...
i think we can use ORDERBY clause...but again if...
December 12, 2008 at 7:06 am
Chris,
I have tested your scenario.
create table #t1
(
name varchar(15)
)
go
insert into #t1
select 'karthik'
union
select 'kuhan'
union
select 'kamatchi'
union
select 'Guna'
union
select 'ravi'
query:
select * from #t1
where name > 'karthik'
output:
ravi
kuhan
why it is not showing the remaining...
December 12, 2008 at 6:32 am
Why does this field need to be added indiscriminately to all these indexes?
This new field should be used in the where clause as a filter.
Say for example,
TableName: Emp
Columns:
Eno int
DOB...
December 5, 2008 at 3:21 am
If you want to know more about 'TALLY' table, i know your answer would be 'YES'. so read the below article....
November 26, 2008 at 5:14 am
Viewing 15 posts - 346 through 360 (of 1,114 total)