Viewing 15 posts - 1 through 15 (of 16 total)
@Koen Verbeeck.. Thanks Boss.. I have the book already. Nice pointer from you.
January 9, 2014 at 3:05 am
Please search for the term 'gazetteer' on-line. It's a good pointer.
January 8, 2014 at 4:53 am
Thanks all..
Cadavre , vinu512 ,dwain.c, Ravi Kumar-191606
.. you all are wonderful .. God bless.
June 19, 2012 at 8:33 am
The question is how can I achieve the expected/desired result with tsql using the 2 table structures I specified.
Thanks Boss
June 18, 2012 at 8:55 am
Good day Welsh Corgi,
I merge incremental to initial load most times, don't use to clear my staging.
I will henceforth borrow Lynn Pettis's idea.
Thanks Welsh
Thanks Lynn 😛
May 11, 2012 at 9:18 am
Hi Friend,
I would suggest you use sample data from MetOffice.gov.uk as your source. Since it's POC, you can tune the data to look like how you want.
Better still generate data...
May 11, 2012 at 9:04 am
This is my contribution. This works for me.
1. create LAST_LOAD variable as datetime
2. execute tsql command: SELECT LSET FROM [STG].[dbo].[ETL_CONFIG_LOAD] WHERE NAME = 'TABLEA' ..
return as LSET to save...
May 11, 2012 at 8:47 am
Thanks Boss. Forgive my laziness I will try that ASAP. Many thanks.
December 29, 2011 at 4:37 am
Thanks all,
Your contributions has re-sharpen how I see SCD type 2. Am only trying to base my scd type 2 on 3 column table where two of the columns are...
December 9, 2011 at 3:32 am
Thanks Koen for your help.
By my understanding, User!UserId returns windows user (i.e one who logged in to machine) .
I want to return sharepoint user (One who sharepoint FBA authenticates).
Many...
December 8, 2011 at 3:22 am
Thanks Boss,
See below
DECLARE @Stock table (
INDEX_CODE varchar(20)
,INDEX_DATE date
,[OPEN] decimal(32,2)
,HIGH decimal(32,2)
,LOW decimal(32,2)
,[CLOSE] decimal(32,2)
)
insert into @Stock (INDEX_CODE,INDEX_DATE,[OPEN],HIGH,LOW,[CLOSE])
select 'AA', '2011/01/01', 2.0, 3.2,1.2,2.4 UNION ALL
select 'AB', '2011/01/01', 0.2, 1.1,0.1,0.1...
September 30, 2011 at 4:35 am
Phil,
The function runs well.
The function returns daily/average balance for each records, based on account_id, from_date and to_date. it's an oracle function..
CREATE OR REPLACE function getAvgBal(cAcid varchar,sDate...
July 19, 2011 at 3:44 am
Phil,
Many thanks Boss ...
Yes, It's runs 4 hours. There is a particular function running the process slow...
July 19, 2011 at 2:52 am
Boss,
Am very greatful.
Aside the code, you have given me more idea on the sharing process..
Thanks
June 23, 2011 at 5:51 am
Viewing 15 posts - 1 through 15 (of 16 total)