Viewing 15 posts - 5,491 through 5,505 (of 6,486 total)
James Goodwin (12/11/2007)
Excellent question, James. Our policy is to never use auto number columns for anything other than identifying a row for update or delete.
I guess that doesn't really...
December 11, 2007 at 3:13 pm
If you don't care about actual tracking, you can still use a "blocking table" with a unique index on it (i.e. something allowing only one record in the particular table).
First...
December 11, 2007 at 2:51 pm
I think you just need to change the LEFT JOIN to be an INNER JOIN?
December 11, 2007 at 2:02 pm
Depending on the syntax - an oleDB provider can execute the query client-side (or locally). That means you might be pulling a LOT of data only to have it...
December 11, 2007 at 1:56 pm
My version of Suse had BOTH CD's in the package. Try the other disk?
December 11, 2007 at 1:51 pm
I was a bit disappointed by it as well after the testing. The syntax is cleaner, but it's limiting (only on specific type of operation per PIVOT statement for...
December 11, 2007 at 1:16 pm
Will Summers (12/11/2007)
December 11, 2007 at 12:51 pm
Steve Jones - Editor (12/7/2007)
Peter, no first class travel? Extra night on the road?
Will, no dedicated time to experiment with mouse speeds/sensitivity?
Matt,...
December 11, 2007 at 12:38 pm
Start shipping your ice, snow, sleet to the southeast. Black Ice, clear or otherwise. Really - we'll take it.
December 11, 2007 at 12:23 pm
If I understand correctly - you only want repromotes when they return to their previous highest level.
This ought to do it:
--run this once
alter table volume
ADD PrevMaxLev int
create index ix_volume...
December 11, 2007 at 12:18 pm
I'm pretty sure that code catches multiple occurrences, but just so I'm sure - could you mock up some data as you'd expect it to look after such an update?...
December 10, 2007 at 1:12 pm
TheSQLGuru (12/10/2007)
December 10, 2007 at 12:41 pm
I'm sure we could collapse this into a single statement, but...
Careful about the "reset" at the beginning, in case you're using the repflag for anything else.
update volume set repflag=''
update a
set...
December 10, 2007 at 12:35 pm
If you want a specific order - you should specify an ORDER BY clause. Because of the way SQL server accesses data, you can't count on it using a...
December 10, 2007 at 12:00 pm
Viewing 15 posts - 5,491 through 5,505 (of 6,486 total)