Viewing 15 posts - 16 through 30 (of 35 total)
November 3, 2003 at 12:38 pm
Not quiet sure what you are saying, but I would put add a trigger on insert.
August 11, 2003 at 8:09 am
You cannot added 'character' in you cased 'Jan'. Either convert this to numeric or cast it to Integer type.
August 8, 2003 at 8:58 am
select Totalcount = (breakfast+dinner+lunch)
from
(
Select
(Select Count(*) From Time_TargetDelivery Where Time_TargetDelivery < breakfast time range) As breakfast,
(Select Count(*) From Time_TargetDelivery Where Time_TargetDelivery < Lunch time range) As Lunch,
(Select Count(*) From Time_TargetDelivery...
August 8, 2003 at 8:08 am
Not sure about the automatic process but you can check the sp with select @@version in QA.
http://www.sqlservercentral.com/columnists/dPriyankara/versionservicepack.asp
August 5, 2003 at 11:04 am
Use the float data type for very large or very small values and the decimal data type for values that require exact precision.
Exact Numeric Data Types
Exact numeric data types...
August 5, 2003 at 10:59 am
Not sure if this what you looking for but look up sp_helpgroup on BOL:
exec sp_helpgroup 'role'
August 5, 2003 at 7:27 am
Not sure why you want to copy same data into multiple. But have you look into the WHILE statement?
thanks
August 4, 2003 at 3:13 pm
take a look at this link: http://www.sqlservercentral.com/columnists/sjones/sqlmailresources.asp. Also look-up xp_sendmail from BOL.
August 2, 2003 at 8:08 am
take a look at this link:
http://www.sqlservercentral.com/columnists/sjones/sqlmailresources.asp
August 2, 2003 at 8:01 am
Viewing 15 posts - 16 through 30 (of 35 total)