Viewing 15 posts - 1 through 15 (of 84 total)
Thanks for the help, you have solved the problem.
Prefix - Was the data before I received help.
PostFix - What I wanted my end solution to look like
August 21, 2014 at 8:07 am
I like your suggestion and thanks for the feedback.
I will create a movie dimension table. I will have a list of the movie text fields. Would you be able to...
August 21, 2014 at 7:51 am
Oh sorry, it represents SUBSCRIBER.DAILY_DV_NEW PARTITION
The other table is has some sort of usage which has been aggregated. This is the REVENUE.MONTHLY_VOUCHER_NEW
create table dbo.test_create_2-- creates empty table
(
Report_Monthint,
MSISDNfloat,
Usagefloat
)
insert into...
August 19, 2014 at 12:26 pm
Its meant to be a combination of two months worth of data.
If an MSISDN is in both months then the final output would be:
Report_Month || MSISDN || SUB_SEGEMNT
201406 || 721312144...
August 19, 2014 at 12:17 pm
Sure thing...
create table dbo.test_create-- creates empty table
(
Report_Monthint,
MSISDNfloat,
SUB_SEGMENTvarchar(100),
)
insert into dbo.test_create (Report_Month, MSISDN,SUB_SEGMENT)
VALUES (201406,0721312144,'Silver'),
(201406,0521312144,'Silver'),
(201406,0621312144,'Gold'),
(201406,0821312144,'Silver'),
(201406,0921312144,'Silver'),
(201407,0721312144,'Silver'),
(201407,0521312144,'Silver'),
(201407,0621312144,'Gold'),
(201407,0777892144,'Silver'),
(201407,972649133,'Silver')
The final result should only have MSISDN's:
721312144
521312144
621312144
As these are...
August 19, 2014 at 12:06 pm
That's great! Thanks so much ๐
May 13, 2014 at 10:31 am
Perfect! Thanks a million ๐
September 12, 2012 at 12:42 am
Thanks so much!!! Appreciate the help!!!
August 21, 2012 at 1:51 am
Thanks a million for the help everyone! Really appreciate it ๐
August 20, 2012 at 8:44 am
Ended up using SSIS and the Fuzzy Lookup algorithm.
March 2, 2012 at 4:40 am
Thanks for the help and advice.
John when I run CREATE CLUSTERED INDEX IDX_incident_driver ON MyTable (incident_driver);
I receive this error:
Warning! The maximum key length is 900 bytes. The...
March 1, 2012 at 11:42 pm
Jcb im no expert but I was told that even though I drop the temp tables they sit in a TempDB and the drive that they sit on is almost...
February 10, 2012 at 3:33 am
Thanks for the post Cadavre, that answers my question. I'll read up on what you posted
February 10, 2012 at 3:29 am
Hi Chris,
I'm not exactly sure if I understand your question.
AF_Fraud_Jan_24 is the table that will be updated with the additional column. This is a table I created. The other two...
February 1, 2012 at 11:31 pm
Viewing 15 posts - 1 through 15 (of 84 total)