Viewing 15 posts - 256 through 270 (of 382 total)
Gila,
If that is the case and I am getting a filter on column 6, then why does the exection plan say
Index Seek -> Select
with no filter or any...
February 26, 2009 at 9:14 am
You are correct. I wouldn't do it. I was using it more as a simplified example that if I have queries that use all 6 column, but each...
February 26, 2009 at 8:54 am
So if I searched by column, 1, 2, 3, & 4, I could essentially create 4 indexes as follows and I should get seeks on all of them?
Column1, column2, column3,...
February 26, 2009 at 8:35 am
Man, for a bunch of guys who are getting something free, you guys are lazy and a little whiney.
My only question is how long are the session scheduled to...
February 11, 2009 at 9:41 pm
Not that I am aware of or that is being recorded. Note that this happens almost immediately.
As soon as a ticket is updated, the queue goes off line and...
February 10, 2009 at 11:57 am
Smith,
Just a quick question. Is there a performance difference between using the
WHERE NOT that you are using and
where <> 'I' and <> 0
Thanks,
Fraggle
February 8, 2009 at 10:17 am
Please don't double post.
With that said, you can also use the
SET ROWCOUNT XXX
This affects the very next query in the process and will return the number of rows specified...
February 7, 2009 at 10:33 pm
I would question why you are wanting to get count something without wanting to use the count(*) function. This is a standard function in the SQL language and is...
February 7, 2009 at 10:28 pm
Well the good news is that the ORDER BY isn't the issue. The bad news is that the query is the issue.
Is should look like something similar to this,...
February 7, 2009 at 1:24 pm
To me, CTE (Common Table Expressions) are best for recursion and running totals.
Fraggle
February 7, 2009 at 12:52 pm
So really we are looking at
Product 1 Shop b ...
February 7, 2009 at 12:47 pm
Alright, I do not have a complete understanding, but I am getting there.
you want to return a result set of
product 1 ...
February 7, 2009 at 12:04 pm
From what I understand, you are actually wanting to sort, not by shop, but by Partneraantal. Is this correct? If so, then the issues is the ORDER BY...
February 7, 2009 at 11:40 am
The only thing worse than running Profiler on a production server for an extended period of time is running profiler on a different computer connecting to a instance of sql...
February 7, 2009 at 11:31 am
When you say that the ORDER BY statement doesn't work, are you stating that it is throwing up an error and that you are not able to execute the query,...
February 7, 2009 at 11:19 am
Viewing 15 posts - 256 through 270 (of 382 total)