Viewing 15 posts - 31 through 45 (of 59 total)
Thanks for reply, but in car table data is same pattern as I wrote. Yes model_id is repeated.
August 3, 2012 at 7:56 am
Michael, I did try following way but still showing error before running. this is what I was looking for
DECLARE @VALUE INT
SET @VALUE = 101
SELECT
STATEUS
from
STATEOFUSA
WHERE STATEUS =
(case
when @VALUE = 103
then...
July 27, 2012 at 6:58 am
Great. Thanks for your help
July 18, 2012 at 12:24 pm
Yes, I got it that part and it does work too. If you know, could you please tell me if location is different then how to point that dtsconfig to...
July 18, 2012 at 12:03 pm
Thank you. If I put both dtsx and dtsconfig file together in different computer then when I execute package it will aumotmatically point the path correct.
July 18, 2012 at 10:33 am
Sir that was sample of table, it not real table. If I solve this problem, then I can easily do my real problem.
July 6, 2012 at 4:58 pm
create table dbo.EmployeeWork
(
empid int,
CountryWorkAt Varchar(20)
);
insert into dbo.EmployeeWork values (1,'China');
insert into dbo.EmployeeWork values (1,'Germany');
insert into dbo.EmployeeWork values(1,'USA');
insert into dbo.EmployeeWork values(2,'China');
insert into dbo.EmployeeWork values(3,'India');
insert into dbo.EmployeeWork values(3,'USA');
insert into dbo.EmployeeWork values(4,'China');
insert into dbo.EmployeeWork...
July 6, 2012 at 2:54 pm
with out .sou, and bin folder also, QA team can executer that package
July 4, 2012 at 7:15 am
Main purpose of that package to be in SVN is so that it can be executed by QA and Production team too. In that senerio I have to upload all...
July 3, 2012 at 10:42 am
I did try that way but it still throwing an error.
July 3, 2012 at 8:17 am
Viewing 15 posts - 31 through 45 (of 59 total)