Viewing 9 posts - 1 through 9 (of 9 total)
Already Googled
April 7, 2016 at 2:00 pm
Thanks for the reply, I need it to add working days, skipping weekends
April 7, 2016 at 1:07 pm
It only populates the last 2 dates for 855 and the last date for 856 for a new record and updates nothing for existing records.
* 855 has the...
June 29, 2011 at 3:41 pm
Lowell,
Thank you but this only does what my original code does. It populates the last date field only on an initial insert and doesn't update anything.
SQL Server 2008...
June 29, 2011 at 3:15 pm
Also, the application does not recognize views, this data must be in a table which is then viewed by the end user within the application.
June 29, 2011 at 1:59 pm
There is only 1 row in the days table, got that covered. It contains 16 fields based on the 2 different proposal types.
set @proposal_number = (select proposal_number from inserted);...
June 29, 2011 at 1:53 pm
Only one record will be updated at a time based on a single insert or update via a front end user app. Each record has 8 dates. The...
June 29, 2011 at 1:35 pm
This is my set statement on the rfi days, it is as basic as it gets and works adding all days perfectly.
set @sh_act_rfi_days = (select sh_act_rfi_days from sh_procurement_days);
Maybe...
May 22, 2011 at 8:39 am
Thank you for the reply, I greatly appreciate it. Your solution parses and executes but returns no date at all. any additional ideas?
May 22, 2011 at 7:32 am
Viewing 9 posts - 1 through 9 (of 9 total)