Viewing 15 posts - 1 through 15 (of 190 total)
Thanks a lot all for the expert advise and feedbacks.
October 23, 2019 at 8:05 pm
Thanks and I've tried that and it works for varchar datatype but not for datetime datatype. REPLACE(COLUMN_NAME, "\"", "")
October 22, 2019 at 10:07 pm
Thanks Sir but I am using Azure Blob Source and not a flat file connection manager. (I've mentioned that in my post)
Is there any other way to get rid of...
October 22, 2019 at 7:38 pm
Thanks a lot @heb1014. So When I look at the view it uses around 10 tables join and one of the table has 3 billion rows and uses...
October 2, 2019 at 3:01 pm
but that's my default constraint. May be I need to define it the other way. Then its working.
ALTER TABLE #temp2 ADD CONSTRAINT DF_lastprocessed DEFAULT GETDATE() FOR lastprocessed
Thanks
October 1, 2019 at 8:20 pm
Yes Phil. Authentication part is not an issue at all. It works. Thanks for your help.
September 11, 2019 at 10:41 pm
Nope, its the same error there too. Trying to fix it but not sure why its not working. if anyone has worked on similar and tell if the syntax is...
September 11, 2019 at 8:03 pm
Here is the answer I found by myself for anyone out looking there,,,
SELECT ACCOUNT_NO, RATE_PLAN_NO = STUFF((SELECT N', ' + ' U' + CAST(RATE_PLAN_NO AS VARCHAR)...
July 26, 2019 at 8:22 pm
Mya be you have some different collation or timezone setting. Here is what I am getting. 6/14/2019 5:00:00 PM
June 17, 2019 at 2:09 pm
Thanks all. Here is the SSIS expression for those who only need to use SSIS,
DATEADD("hh",17,(DT_DBTIMESTAMP) ( (DT_STR,30,1252) (DT_DBDATE) (DATEADD("dd", -1 - (DATEPART("dw", getdate()) % 7), getdate()) ) ) )
June 17, 2019 at 1:40 pm
Thanks Sreedhar... Ur expression works but the variable has datetime datatype so it converts it to 6/7/2019 5:00:00 PM format rather than 2019-06-07 17:00:00.000. Anyway Thanks for all ur help...
June 14, 2019 at 12:44 pm
Thanks Sreedhar but this is T-SQL Way of doing it and I want it as SSIS expression way.
June 14, 2019 at 12:05 am
Yeah. Thats correct Phil.
June 13, 2019 at 10:44 pm
Thanks Phil.
I have to fetch data only until friday 5 pm. So this expression gives me last friday( i need to remove -1 from my expression) with current timestamp but...
June 13, 2019 at 10:36 pm
Viewing 15 posts - 1 through 15 (of 190 total)