Viewing 14 posts - 46 through 59 (of 59 total)
Hi SSCoach, it does works great, Instead of "," if I want to put <p> how do I do that? I try all the position but it display at first
June 21, 2012 at 5:55 pm
As I said I am new so, I answered what I knew. I know that not fully correct or that's partially correct. After that He move different question.
June 12, 2012 at 5:18 pm
Since I am new, I did say I will use Index. Then I said I will look at execution plan, and figure out why it is taking so long time....
June 12, 2012 at 3:31 pm
Dear David,
I am need in SQL Server, it was asked in interview.
June 12, 2012 at 12:27 pm
No I donot have any cluster or pirmary or unique key in table, but as Antares686 said
select EmailAddress FROM omar.dbo.a123 where EmailAddress like 'ca%'...
March 28, 2012 at 3:59 pm
Thanks Lynn Pettis,
I do like your answer, if query optimizer table scan is best rather then index seek.
March 28, 2012 at 3:44 pm
create table omar.dbo.a123
(
contactid char(10),
firstname varchar(20),
emailaddress varchar(20)
)
CREATE NONCLUSTERED INDEX IX_NC_PresidentNumber
ON omar.dbo.a123 (EmailAddress)
Let's assume, there...
March 28, 2012 at 3:29 pm
I used, following index.
CREATE NONCLUSTERED INDEX IX_NC_PresidentNumber
ON omar.dbo.a123 (EmailAddress)
March 28, 2012 at 2:58 pm
Viewing 14 posts - 46 through 59 (of 59 total)