Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help with part of stored procedure involved with versioning

Status
Not open for further replies.

jtrembla

ISP
Jul 6, 2006
104
US
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 I attached. Essentially, I need help with the PricingDrugGroup Insert statement that populates the pricingdruggroup table with the correct data. All of the records in red are the working version records and it is the desired output I am looking for.

here is the code from the stored procedure, everything works except for inserting into the pricingdruggroup table. I am having problems with the multiple joins using declared tables.

Code:
			DECLARE @OldPricingDrug TABLE
			(
				RowNumber			SMALLINT
			,	PricingDrugID			INT
			);
			-- @@@JHO Used for creating the new PricingDrug entries
			DECLARE @NewPricingDrug TABLE
			(
				RowNumber			SMALLINT
			,	PricingDrugID			INT
			);
			
			-- @@@JHO Used for creating the new PricingDrugGroup entries
			DECLARE @OldPricingDrugGroup TABLE
			(
				RowNumber			SMALLINT
			,	PricingDrugGroupID		INT
			);
			-- @@@JHO Used for creating the new PricingDrugGroup entries
			DECLARE @NewPricingDrugGroup	TABLE
			(
				RowNumber			SMALLINT
			,	PricingDrugGroupID		INT
			);
			
			-- @@@JHO Used for creating the new PricingDrugGroup entries
			DECLARE @NewVersionGeography  TABLE
			(
				RowNumber	SMALLINT, 
				VersionGeographyID  INT
			);
			
			DECLARE @OldVersionGeography  TABLE
			(
				RowNumber	SMALLINT, 
				VersionGeographyID  INT
			);


	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
	---- Version
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
	
	
			INSERT INTO
				dbo.Version 
				(
					ForecastID
				,	ShortName
				,	[Description]
				,	CreatedBy
				,	CreatedDate
				,	ModifiedBy
				,	ModifiedDate
				,	IsDeleted
				)
			SELECT
				@ForecastID
			,	dbo.Version.ShortName
			,	dbo.Version.Description
			,	@UserName
			,	@DateTime
			,	@UserName
			,	@DateTime
			--By default, a version is not deleted: set to 0
			,	0
			FROM
				dbo.Version
			WHERE
				dbo.Version.VersionID = @VersionID
				
			SELECT @WorkingVersionID = @@IDENTITY;


	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
	---- VersionGeography
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
			INSERT INTO
				dbo.VersionGeography 
				(
					VersionID
				,	GeographyID
				) 
			SELECT
				@WorkingVersionID
			,	dbo.VersionGeography.GeographyID
			FROM
				dbo.VersionGeography
			WHERE
				dbo.VersionGeography.VersionID = @VersionID

	---- ---- ---- ---- ---- ---- ----- ---- ---- ---- ---- ---- ---- ---- ---- ---
	---- PricingDrug
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
			INSERT INTO
				dbo.PricingDrug
				(
					VersionID
				,	PricingDrugName
				,	SequenceNumber
				) 
			SELECT
				@WorkingVersionID
			,	dbo.PricingDrug.PricingDrugName
			,	dbo.PricingDrug.SequenceNumber
			FROM
				dbo.PricingDrug
			WHERE
				dbo.PricingDrug.VersionID = @VersionID




	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
	---- VersionGeography
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
	
	INSERT INTO
				@OldVersionGeography (
					RowNumber,
					VersionGeographyID
				) 
			SELECT
				ROW_NUMBER() OVER
				(
				ORDER BY
					dbo.VersionGeography.VersionGeographyID
				) AS RowNumber
			,	dbo.VersionGeography.VersionGeographyID
			FROM
				dbo.VersionGeography
			WHERE
				dbo.VersionGeography.VersionID = @VersionID

			INSERT INTO
				@NewVersionGeography (
					RowNumber,
					VersionGeographyID
				) 
			SELECT
				ROW_NUMBER() OVER
				(
				ORDER BY
					dbo.VersionGeography.VersionGeographyID
				) AS RowNumber
			,	dbo.VersionGeography.VersionGeographyID
			FROM
				dbo.VersionGeography
			WHERE
				dbo.VersionGeography.VersionID = @WorkingVersionID


	---- ---- ---- ---- ---- ---- ----- ---- ---- ---- ---- ---- ---- ---- ---- ---
	---- PricingDrug
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----

			INSERT INTO
				@OldPricingDrug
			SELECT
				ROW_NUMBER() OVER
				(
				ORDER BY
					dbo.PricingDrug.PricingDrugID
				) AS RowNumber
			,	dbo.PricingDrug.PricingDrugID
			FROM
				dbo.PricingDrug
			WHERE
				dbo.PricingDrug.VersionID = @VersionID

			INSERT INTO
				@NewPricingDrug
			SELECT
				ROW_NUMBER() OVER
				(
				ORDER BY
					dbo.PricingDrug.PricingDrugID
				) AS RowNumber
			,	dbo.PricingDrug.PricingDrugID
			FROM
				dbo.PricingDrug
			WHERE
				dbo.PricingDrug.VersionID = @WorkingVersionID







	---- Need Help HERE with Populating the PricingDrugGroupTable
	---- PricingDrugGroup
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
		
		INSERT INTO
			dbo.PricingDrugGroup (
				PricingDrugGroupTypeID
			,	PricingDrugID
			,	BrandGeneric
			,	VersionGeographyID
			)
			SELECT 
				PricingDrugGroupTypeID
			,	NewGroups.PricingDrugID
			,	dbo.PricingDrugGroup.BrandGeneric
			,	NVG.VersionGeographyID
			
			FROM
				@NewPricingDrug NewGroups
				
			INNER JOIN @OldPricingDrug OldGroups ON NewGroups.RowNumber = OldGroups.RowNumber
			INNER JOIN dbo.PricingDrugGroup	ON OldGroups.PricingDrugID = dbo.PricingDrugGroup.PricingDrugID
			INNER JOIN @OldVersionGeography OVG ON @NewVersionGeography.RowNumber  = OVG.RowNumber
			--INNER JOIN @NewVersionGeography NVG ON @OldVersionGeography.RowNumber  = NVG.RowNumber
			INNER JOIN dbo.PricingDrugGroup ON @NewVersionGeography.VersionGeographyID = dbo.PricingDrugGroup.VersionGeographyID






	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
	---- WorkingVersion
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
			INSERT INTO
				dbo.WorkingVersion 
				(
					ForecastID
				,	VersionID
				,	WorkingVersionID
				) 
				VALUES 
				( 
					@ForecastID
				,	@VersionID
				,	@WorkingVersionID 
				)
 
I came up with this after racking my brain. I am not the DBA so I hope so it is right

Code:
---- @@@ JHO 11/20/08
	---- PricingDrugGroup
	---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
		
		INSERT INTO
			dbo.PricingDrugGroup (
				PricingDrugGroupTypeID
			,	PricingDrugID
			,	BrandGeneric
			,	VersionGeographyID
			)
			SELECT 
				PricingDrugGroupTypeID
			,	NewPricingDrug.PricingDrugID
			,	dbo.PricingDrugGroup.BrandGeneric
			,	NewVersionGeography.VersionGeographyID
			
			FROM
			(@OldVersionGeography OldVersionGeography
			INNER JOIN @NewVersionGeography NewVersionGeography ON OldVersionGeography.RowNumber = NewVersionGeography.RowNumber)
			INNER JOIN ((@NewPricingDrug NewPricingDrug INNER JOIN @OldPricingDrug OldPricingDrug ON NewPricingDrug.RowNumber = OldPricingDrug.RowNumber)	
			INNER JOIN dbo.PricingDrugGroup ON OldPricingDrug.PricingDrugID = dbo.PricingDrugGroup.PricingDrugID) ON OldVersionGeography.VersionGeographyID = dbo.PricingDrugGroup.VersionGeographyID
 
Looks as if it should work but you would know your own data better than we would.

I do want to caution you to not use @@identity to get the identity value. You should use scope_Identity() instead. @@identity will return the wrong identity value if the table ever has a trigger placed on it that inserts into a differnt table with an identity field, so it is NOT recommended for use. You can create very bad and impossible to fix data integrity problems using @@identity and wors, the issue may not surface for some time because there won't be an error. You'll only find it when someone goes to look at data that they personally know should be related and it isn't there.

"NOTHING is more important in a database than integrity." ESquared
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top