Viewing 15 posts - 16 through 30 (of 184 total)
I managed to get this working with some tweaking. I used a derived column transform to create a field that concatenates the lookup fields with a semi colon delimeter. The...
March 18, 2013 at 4:27 pm
After a while I have decided to create the lookup functionality in T-SQL. I have achieved this by using left outer joins and returning the same column for each join...
March 14, 2013 at 6:42 pm
Hey thanks for that. That has given me some ideas. Will go away and test.
March 13, 2013 at 8:09 am
I am not sure what you mean. Could you expand a little please
March 13, 2013 at 7:21 am
I mananged to solve it b creating a script task and splitting the parameter into an array and loading the array into an object variable. Then using th ForLoop to...
March 2, 2013 at 2:09 am
Many thanks. Will do some research and let you know If I find more information.
March 1, 2013 at 2:29 am
Much appreciated for the info. Will check it out.
November 28, 2012 at 5:51 pm
CREATE TABLE PRODUCTS(
Product_id int CONSTRAINT pk_products_pid PRIMARY KEY
,ProductName varchar(10) null
,ProductType varchar(10) null
,cost_price float null
)
CREATE TABLE SALES(
SalesOrder_id int CONSTRAINT pk_Orders_sid PRIMARY KEY,
Product_id INT CONSTRAINT fk_productSales_pid FOREIGN KEY REFERENCES Products(Product_id),
,quantity int null
,sales_price...
May 8, 2012 at 7:19 pm
Yeah, i am just looking for a notification error to in for the user that this employe cannot intern more the twice. I will go with the proc to check...
May 8, 2012 at 5:40 am
Joe I didn't realise my post would cause such controversy.
The denormalised table that i created was based on a csv source file we get from one of our vendors. It...
March 17, 2012 at 10:45 am
worked like a charm!! much appreciated.
March 16, 2012 at 10:01 am
I managed to get the desired result by using a recursive CTE as follows.
CREATE TABLE #tstDimPortfolio
(
[ID][INT] IDENTITY (1,1) NOT NULL,
[UPI] [varchar](20) NOT NULL,
[MF_CODE] [varchar](10) NULL,
[BH_Code] [varchar](10) NULL,
[CR_Code] [varchar](10) NULL,
[ValidFrom][varchar](10) NOT...
February 14, 2012 at 9:38 am
HI this is almost what I want need. However if a change occurs on two different attributes for one upi how can i bring those chnages through to the subsequent...
February 14, 2012 at 5:59 am
thanks, this is what i wanted. Apologies for my poor explanations at the beginning
January 19, 2012 at 4:41 pm
In the example I gave there are only 3 different packages. However what if there were 2000 packages. I like to have a generic query that will select all the...
January 19, 2012 at 3:03 pm
Viewing 15 posts - 16 through 30 (of 184 total)