Viewing 7 posts - 1 through 7 (of 7 total)
I'm not sure why working from home would imply a pay cut. The employer is the one who saves money when the employee works from home - no infrastrcture costs...
April 26, 2011 at 12:49 am
?? looks like the original question got deleted... Oh well!
November 15, 2006 at 9:40 pm
take out the "as" in the table definition for Size_backup_D and it will work...
November 15, 2006 at 9:38 pm
declare @p nvarchar(255)
set @p = 'This is the data import for ' + convert(nvarchar, getdate())
select @p
November 13, 2006 at 4:18 am
it's up to the developer of the sp as to whether it continues when a problem is encountered. As the previous post says, look for transactions... specifically a rollback (or...
November 13, 2006 at 12:56 am
would this do the trick?
SELECT 'SALSTERR' = case when substring(A.LOCNCODE, 4, 1) = 'C'
then A.SALSTER + ' - Aeroton'
else A.SALSTER + ' - Isando' end,
A.LOCNCODE,
A.ITEMNMBR,
A.ITEMDESC,
ITMSHNAM,...
November 8, 2006 at 2:09 am
Viewing 7 posts - 1 through 7 (of 7 total)