I currently have one table to hold ForecastAdjustmentTypes
Now each forecast adjustment are recorded differently.
Thus, attached to different schema.
For example some adjustments are done at the population level and some are done at the drug level.
Is it best practice to keep the type names...
Our company wants to view data from a normalized table in a pivoted grid. Not only that, they need to be able to update the values as well. Thus, I created a pivoted stored procedure which uses dynamic sql b/c the crap pivoted function doesn't read the column values.
Now updating the grid in...
Query 1 (I want all the results and only matching results from query 2)
They will be joined on PricingDrugGroupID and ForecastPeriodTimelineID eventhough query 2 does not return these columns it is in the table.
Query 1 code...
SELECT dbo.PricingDrugGroup.PricingDrugGroupID...
My comments are getting replaced by system commment?
How do I override this? Is it a template or something?
/****** Object: StoredProcedure [MarketForecaster].[Population_SelectByVersionID] Script Date: 12/16/2008 14:53:12 ******/
Here is my table
DrugId | BrandGeneric | Coutnry
=============================================
1 brand US
1 brand France
1 generic US
1 generic France
1...
I am having a tough time on where to begin with this...
PricingDrugGroupID | PricingDrugName | Country | BrandGeneric
===========================================================================
1 PricingDrug A USA BRAND
2...
In MS Access you can reference a calculated fields by the alias name: example:
SELECT [sales]/[unit] AS UnitSales, [UnitSales]-1 AS UnitSalesLessOne
FROM Table1;
Can this be done in t-sql, I get an invalid field name error?
If not then that is crappooo
I have the following data, and I was wondering if I should create a ErosionRateType and ErosionModel (with name and rate type) table or just leave the data as is since we are only going to have 3 erosion models at max. Btwm geography is an id field to the geography table.
Example data...
I have the following tables
Version
--------
VersionID
VersionName
VersionGeography
-----------------
VersionGeographyID
VersionID (FK)
GeographyID (FK)
PricingDrugVersion
-------------------
PricingDrugID
VersionID (FK)
PricingDrugName
PricingDrugGroup
------------------...
We have a version system which essentially creates duplicate records and relates them since our users are essentially working with a "working version" of their version. I did not create this and our DBA was crazy he is not here no more.
The table layouts and sample records are in the excel file...
Is there a function I can use that will insert a character into a specified position in a string.
For example I want to add 0 into the 2nd position of the following string
"W3B3 JSUSJJ"
so it becomes "W03B3 JSUSJJ
I have a table with the following fields/records
GroupID GroupType DrugID BrandGeneric Country
1 E DrugZ Brand U.S.
2 E DrugZ Generic U.S.
3 E DrugZ Brand France
4 E DrugZ Brand...
Ok,
I am seperating my application into the standard 3 ntier layers. It is a winforms application.
My question is how to handle database transactions.
Should I load the entire database into memory and then update the server database when the application closes?
Currently the application...
I have a table (Lets call it Table1) in which about 80% of the records are created from a storage table (by rolling/grouping up records), and there is no direct relationships to it since the storage table comes from a read only warehouse and its ID's can change if the readonly warehouse is...
IN my select statement I have the following line
(dbo.PricingDrugCurrentTherapyDosing.UnitSales / MarketForecaster.SumOfUnitSales( dbo.PricingDrugCurrentTherapyDosing.PricingDrugID, dbo.PricingDrugCurrentTherapyDosing.Country, dbo.PricingDrugCurrentTherapyDosing.BrandGeneric))*100 AS...
Does anyone know of an elegant way I can add NewId's from the parent table to all related tables?
I am forecasting items and if a new item is added to the main table then all the other tables need to have that id in it so the user knows that data must be entered for that entity. I have many...
I need assistance with this stored procedure,
I am trying to add records into the T_PricingDrugGroup table from TableSource if the record doesn't exist in the destination table. I am not doing this on any id, in fact it is a grouping of
PricingDrugID,GeographyID,BrandGeneric that I am...
Ok, here is a stored procedure that our old DBA create, it uses data in another database but it does not implicitly reference it in the stored procedure. The name of the other database is "IMS". My question is there a way to configure a database to also add in the schema from another database...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.