Viewing 15 posts - 31 through 45 (of 57 total)
Thnaks for ur reply.
Yeah I know I can do it in SSMS but I cannot import or export packages by connecting to integration services, coz I am encountered with an...
October 29, 2010 at 8:34 am
Hello chris,
this is a part of my function
CREATE function [dbo].[PostcodeValidation](@Country NVARCHAR(100),@Addressline NVARCHAR(100))
RETURNS VARCHAR(10)
AS
BEGIN
DECLARE @Result varchar(10)
IF @COUNTRY IN ('Afghanistan','Albania','Angola','Antarctica','Antigua And Barbuda','Aruba','Bahamas','Belize','Bhutan','Botswana',
'Burkina Faso','Burundi','Cameroon','Central African Republic','Comoros','Cook Islands','Cote DIvoire','Democratic Peoples Republic Of Korea',
'Democratic...
October 27, 2010 at 5:41 am
Thanks for reply, but dtexec and dtexecui are giving the same error
Description: SSIS Error Code DTS_E_PRODUCTLEVELTOLOW. The product level is insufficient for component "Fuzzy Lookup"...
October 12, 2010 at 5:10 am
Is there any way in standard edition to execute this package other than executing in bids?
October 11, 2010 at 10:08 am
Sorry bear with me:-).
I got to clean my city data in TableA based on the similarities and confidences, want to use fuzzy match so that can clean any...
September 28, 2010 at 3:52 am
Yeah Sure Paul
Suppose my tableA conatins Values like
insert tableA
(city)
values ('Pleasanton'),
('Ven');
My reference TableB contains values like
insert @TableB
(input_city,output_city)
values ('LEA' 'Albert Lea'),
(PLEASANTON','Pleasanton')
('VEN',Belgium)
('ZAVENTUM',Zaventum);
then our update statement might update city Pleasanton with output_city Albert...
September 24, 2010 at 9:21 am
The wildcard solution i tried before is not working in the way I want.
So switched to Charindex.
I am nearly there.
Select * from tablea
where exists
(Select * from tableb where...
September 23, 2010 at 7:01 am
Thanks for the reply.
Actually my reference table contains 2 million records. So I dont want to use join now as it is giving inappropriate results.
I tried something like this
Select *...
September 23, 2010 at 6:17 am
Sure Paul I will from next time.
I'll have a try on the solution u provide.
Thanks a lot.
September 17, 2010 at 3:48 am
My final table TableA shoulb be like this
TableA
City
-----
London
London
London
London
Chicago
Chicago
September 17, 2010 at 3:38 am
Thanks for the reply.
I have tied that,
but the thing is I dont have any idea of framing my condition, which need % with column name
September 17, 2010 at 3:31 am
SORRY Small change
On a whole something like this
when city LIKE %input_city
then set city = output_city.
when city LIKE %input_city%
then set city = output_city
when city LIKE input_city%
then set city = output_city.
September 17, 2010 at 3:03 am
Thanks a lot Vani.
Your Solutions is really working and helped me.
Thanks a lot again
September 15, 2010 at 3:27 am
Viewing 15 posts - 31 through 45 (of 57 total)