Viewing 15 posts - 391 through 405 (of 663 total)
Thanks rbrow112, I just could not remember yesterday. Know it was quit uneventfull. Thanks!
June 5, 2003 at 4:23 pm
Can one make an assumption about the sequence
the statement d=@x,@x=@x+1 will be performed?
Always d=@d and then @x=@x+1?
June 5, 2003 at 4:17 pm
An after thought read about convert in BOL 2000, you'll most likely going to need it again.
June 5, 2003 at 4:13 pm
Crappy, keep on writing reports, explaining the problems, estimates, if not getting your heads of the sand scenario I have warned you, disk full, lost data, cost to resolve. How...
June 4, 2003 at 11:07 pm
Linked Servers, DTS, BCP
June 4, 2003 at 9:05 pm
Not good enough, specially in the case where multi updates participate in same transaction.
Seem to be working in simple, single updates.
Need some more grey stuff + time!
CREATE TRIGGER Test_Trig ON...
June 4, 2003 at 8:22 pm
Some of the posters manage to keep the formatting, how do they post there text??
June 4, 2003 at 6:42 pm
June 4, 2003 at 6:38 pm
Convert the datetime/ms to a string with CONVERT and return string to ADO back to app which can convert it back to the full monty of date/time/ms.
June 4, 2003 at 4:26 pm
Not one update statement, hope it helps!
Create Table ItemBin (
Item varchar(80),
BinId varchar(10),
PutawayPriority int,
QtyMax numeric(19,2),
QtyOnHand numeric(19,2))
GO
Set NoCount On
Insert Into ItemBin Values ('A1', 'BIN1', 1, 100, 50)
Insert Into ItemBin Values ('A1', 'BIN2',...
June 4, 2003 at 4:13 pm
These problems normally occurs when the 'date' is stored as a string / varchar and then compare with a date variable/value. If all the variables are datetime and you...
June 4, 2003 at 2:21 pm
BOL: BETWEEN returns TRUE if the value of test_expression is greater than or equal to the value of begin_expression and less than or equal to the value of end_expression.
Thus @date...
June 4, 2003 at 2:04 pm
See Steve Jones example above, create an update trigger and the updated contents should be in the inserted table. Also look at the update(Col) function.
June 3, 2003 at 8:18 pm
I think this may lead to some users picking up a phone and either complain about missing data or the error displayed or the funny rules that this field can...
June 3, 2003 at 7:44 pm
Viewing 15 posts - 391 through 405 (of 663 total)