Viewing 15 posts - 1 through 15 (of 29 total)
Our security team approved only Azure AD Authentication. But, I don't see Azure Active directory authentication options in my ssis 2012 when i try to connect with ado.net source. I...
February 6, 2020 at 4:36 pm
i got the answer both convert back and forth. Here is the example:
select dateadd(d,737060 -722815,'1980-1-1')
select datediff(d, 0, '2019-01-01') + 693596
Thanks for trying to answer.
January 22, 2019 at 2:09 pm
No excel here. sqlserver integer value to normal date and normal date to integer conversion. that integer value is stored in sql server table. I can able to convert using...
January 22, 2019 at 12:39 pm
;WITH myTable as December 6, 2018 at 7:43 am
Sorry. I forgot to attach sample data file. Please advise the steps to do following scenarios:
1. if amtperact <min_cst of lowest seqnum, then UnitPrice should be updated with...
September 3, 2018 at 5:12 am
Thank you. But thing is not sure how to handle other two scenarios
1. if amtperact <min_cst of lowest seqnum, then UnitPrice should be updated with min_cst of lowest of seqnum(1) always.
September 1, 2018 at 2:58 pm
before they were having only three types charges. Now they can be having having multiple number of charges. that's the reason they removed 1,2,3 concept and generalized with seqnum and...
August 29, 2018 at 8:33 am
Current table cp_inv structure:
finnum, cst1, cst2,cst3,prc1,prc2,prc3, chk_amt1, chk_amt2, chk_amt3
Logic to update:
Update ProdStg
set unit_cost=case when ci.totcstperacct<ci.cst1 then ci.chk_amt1
when ci.totcstperacct>=ci.prc2 and ci.totcstperacct<ci.cst2 then ci.chk_amt2
when ci.totcstperacct>ci.prc3 then...
August 29, 2018 at 6:38 am
Update ProdStg
set unit_cost=case when ch.totcstperacct<(select ch.cst from cp_chk where ch.seqnum=1) then (select ch.chk_amt from cp_chk where ch.seqnum=1)
when ch.totcstperacct>=(select ch.prc from cp_chk where ch.seqnum=2) and ch.totcstperacct<(select ch.cst from cp_chk...
August 28, 2018 at 6:00 am
I need another help.
Need to modify the Update statement to include combination two new fields instead of one field
Current table cp_inv structure:
ID, cst1, cst2,cst3,prc1,prc2,prc3, chk_amt1,...
August 26, 2018 at 6:39 am
Current table cp_inv structure:
ID, cst1, cst2,cst3,prc1,prc2,prc3, chk_amt1, chk_amt2, chk_amt3
New table cp_chk structure:
ID, cst, prc, chk_amt, seq_num
basically 9 columns replaced by 4 columns. Now they removed...
August 26, 2018 at 5:55 am
August 26, 2018 at 5:32 am
Thank you so much Jonathan!!!
August 26, 2018 at 4:10 am
Can i use Microsoft power query or third party tools like Alteryx to extract the unstructured data from excel to sql server? Please advise the best tool i can use?
August 7, 2018 at 12:04 pm
can i Master Data Services to import unstructured data to create as tables?
August 2, 2018 at 11:08 am
Viewing 15 posts - 1 through 15 (of 29 total)