Viewing 4 posts - 1 through 4 (of 4 total)
One other important note,
We do not have enterprise edition, thus I do not think we can use peer to peer.
July 24, 2009 at 10:35 am
Both locations can update the data, however, by application design, they cannot update the same report at the same time. If a report is open, I do not allow...
July 24, 2009 at 10:27 am
You will need to use dynamic sql and the getDate() function.
This should get you started...
@TABLE_NAME VARCHAR(50),
@SQL VARCHAR(MAX),
Set @TABLE_NAME = CONVERT(VarChar(20), GETDATE(), 101)
/* Generate table */
SET @SQL = Add create table...
February 10, 2009 at 6:39 am
Ok, The adjustments are used to calculate a final forecast price of a drug.
Formula is something like
DrugPrice * TreatedDays * Compliance * PatientShare = ForecastSalesPrice for a givendrug
Definitions of ajustments
TreatedDays...
February 9, 2009 at 12:04 pm
Viewing 4 posts - 1 through 4 (of 4 total)