Viewing 15 posts - 49,141 through 49,155 (of 49,571 total)
Easiest, yes, fastest, no.
Using a function on a column in the where clause of a query will prevent the optimiser from using any index that may exist on that...
April 21, 2006 at 1:48 am
What type is the TAB lock? S, X, IX, Sch-S?
An IX lock on table level is fairly normal when doing modifications. It's not a full exclusive lock, it's there in...
April 20, 2006 at 12:35 am
I'd love to work in the 3D graphics industry. I do modelling and rendering as a hobby, but I'm no where near as good as the professionals
That, or be an...
April 19, 2006 at 4:09 am
Table A to be able to create 1 row for each distinct gr# with first occurence of toname and fromname
What do you mean by first? First alphabetically? Is there another...
April 13, 2006 at 2:48 am
Apparently they don't.
Sorry, I wrote those a while back and they did work then. Haven't used them in ages. Will check.
April 11, 2006 at 11:48 pm
I am. Hope to write it in May. I'm working through books online and the MS E-learning. MS also has a (free?) skills assessment that I plan to do soon.
April 7, 2006 at 4:31 am
Not 2 sps, 2 queries in one sp.
CREATE PROCEDURE ...
AS
SELECT ... FROM Sales
SELECT ... FROM Sales JOIN SalesDetails ... GROUP BY ...
GO
It will work, crystal can handle 2 recordsets coming back...
April 7, 2006 at 4:26 am
To be quite honest, that's a presentation issue, not a data issue. It should be taken care of where you're presenting the data (excel, or reporting tool) not in the...
April 7, 2006 at 4:13 am
I'm going to need some sample data to help out with this, and an example of what you want.
By the looks of things, a saleID can have more than one...
April 7, 2006 at 3:47 am
Am I correct in saying that you're looking for records where err is not full full of spaces?
Put an index on the err column and try this
SELECT <fields> FROM <table> WHERE Err...
April 7, 2006 at 3:39 am
Sorry, I missed the field 'site'. Also must come out of the group by and be agregated (or removed) in the select.
No, it's not because they have the same saleID. the...
April 7, 2006 at 3:23 am
Easy enough, move the completion date out of the group by. You'll have to then put a max or min on it in the select clause. Do you want the...
April 7, 2006 at 2:45 am
A table design that doesn't require constant changing would be a good place to start. This is also violating relational concepts a fair bit, but I can't think of a...
April 6, 2006 at 5:25 am
Viewing 15 posts - 49,141 through 49,155 (of 49,571 total)