Viewing 15 posts - 16 through 30 (of 39 total)
GilaMonster (4/12/2009)
radek (4/12/2009)
April 12, 2009 at 2:31 pm
GilaMonster (4/12/2009)
It would really help if you could post the actual execution...
April 12, 2009 at 2:09 pm
RBarryYoung (4/11/2009)
Wow. Do you have the version of the SQLPLAN that has only 3 logical IOs?
Yes, It is plan with 3 IO on table tbl_product_area 🙂
there is result from...
April 11, 2009 at 12:49 pm
GilaMonster (4/11/2009)
While a heap is occasionally beneficial, in most cases it's better for a table to have a cluster. There's probably a missing index...
April 11, 2009 at 11:42 am
What's your query, what's the table structure in the two cases?
Table is realy simple:
CREATE TABLE [dbo].[tbl_PRODUCT](
[ID] [int] IDENTITY(1,1) NOT NULL,
[PRODUCT] [varchar](10) NOT NULL
) ON [PRIMARY]
but query is difficult because in...
April 11, 2009 at 10:56 am
RBarryYoung (4/11/2009)
Yes, just create your table with a Primary Key that is not clustered.
Right , but how? I tried it but it every create clustered index 🙂
like this:
CREATE TABLE...
April 11, 2009 at 10:35 am
GilaMonster (4/11/2009)
Grant Fritchey (4/11/2009)
April 11, 2009 at 9:51 am
Hmm, I don't know that sql 2000 have not include index, that's pity.
April 11, 2009 at 9:40 am
MR (4/6/2009)
select * from nodes
where macaddress = '00-13-d3-b4-47-ab'
I can't save the plan, because its sql server 2000 - but basically it is something like this:
Select (0%) <-...
April 11, 2009 at 8:54 am
Ok, thanks I add this condition into procedures.
BTW: Of course I know, if I have small table that it is not good to create index.. but i dont know that...
April 6, 2009 at 8:29 am
But let me ask you what made you to defrag your indexes were you experiencing any performance problems or is it a part of your maintenance plan? Since its a...
April 6, 2009 at 8:00 am
Table is not big, about 20 000 rows with 15 columns, index has 18 pages, and depth=2.
What cause that it cant fragmentation? only few pages?
thanks Radek
April 6, 2009 at 7:06 am
Hi I have other question about indexes:-)
I read something about indexes, that indexes is good create in "big table"
But when I create table in MS SQL by GUI and define...
March 8, 2009 at 4:05 pm
I can asked how did we find column to indexes?
I know when you use "where" than is good to create index...for big table.
And I read about profiler,...
March 7, 2009 at 3:50 am
So I have another question.
For find indexes column is better use DMV? or Profil?, of course I can create indexes where
I use "word" where or order by..
I think...
March 7, 2009 at 3:32 am
Viewing 15 posts - 16 through 30 (of 39 total)