Viewing 4 posts - 1 through 4 (of 4 total)
Other solutions for same task(you may create a function out of this):
1:
declare
@pString VARCHAR(7999)='asdfasdf-asddf- -wer-we',
@pDelimiter CHAR(1) = '-'
;with a(N) as
(
select 1
union all
select...
June 18, 2013 at 1:46 pm
Actually you can do it quite simple - for example you are using a stored procedure to load data from SQL Server or other RDBMS - LoadData_sp.
And this procedure has...
February 22, 2012 at 1:46 pm
In my practice I never seen the situation when jobs are always finished successfully.
Besides, FACT tables are a subject to read - not only ETL insert is involved.
Sometimes you may...
January 29, 2009 at 7:13 pm
No sense adding PK to FACT if strategy is only INSERT(APPEND).
Will just slow down the load.
October 28, 2008 at 5:35 pm
Viewing 4 posts - 1 through 4 (of 4 total)