Viewing 15 posts - 1 through 15 (of 65 total)
CREATE PROCEDURE Process.InitiateLoad (@Area VARCHAR(150), @Domain VARCHAR(150), @BusinessDomain (VARCHAR(150), @Stage VARCHAR(100), @SliceDate DATETIME, @Months INT = 0)
AS
you have one to many opening brackets up there.
October 26, 2022 at 3:16 pm
declare @len int=20declare @table table (id int identity(1,1), strin varchar(202))insert into @table select 'antidisestablishmentarianism' union allselect 'thisisatestfieldof20' union allselect 'elephant' union allselect 'otorhinolaryngological'select len(strin),strin,concat(left(strin,@len),replicate('.',len(strin)-@len)) from @table
April 16, 2020 at 8:33 pm
Yes , it needs to have a CDATA section. I would have loved to work with xmlpath instead but CDATA section is the key here.
August 6, 2018 at 5:29 pm
I recommend using temp table over table variable when you are dealing with larger data sets for performance reasons. There are some advantage you have with temp table over table variable....
July 13, 2017 at 6:07 pm
I am not sure if I understand your question correctly. This could be a simple inner join on the three matching columns. Also it matters when you say the...
May 24, 2016 at 6:04 pm
ymbaez (10/15/2015)
October 15, 2015 at 3:06 pm
This is for Execute Sql Task. Its completely different in OLEDB Source in Data flow task. My issue was in OLEDB Source in DFT.
September 29, 2015 at 3:32 pm
Guras (8/13/2015)
August 14, 2015 at 5:04 pm
TBIG (4/8/2015)
When I added this complex...
April 8, 2015 at 4:30 pm
Start here.
If you do not use ssis 2012, you need to compose your own sql to do the incremental merge.
April 7, 2015 at 3:11 pm
saikumar.mca2007 (4/6/2015)
Currently we are trying to load the xml files into sqlserver tables by using ssis 2012,
We are getting xml files as a column in source table ,so...
April 7, 2015 at 10:55 am
ASFAIK- you would need to open the ssis package and refresh it for it pick up the metadata changes.
February 18, 2015 at 11:15 am
Eirikur Eiriksson (11/18/2014)
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @TXML XML =
'<SecureEvent EDate="08/04/2011" ID="47854303" InternalSecureEventID="154472406">
<SecureEventDate>08/04/2011</SecureEventDate>
...
November 20, 2014 at 2:25 pm
Eirikur Eiriksson (10/15/2014)
October 16, 2014 at 11:11 am
Eirikur Eiriksson (10/15/2014)
peacesells (10/15/2014)
October 15, 2014 at 2:44 pm
Viewing 15 posts - 1 through 15 (of 65 total)