Viewing 15 posts - 2,401 through 2,415 (of 2,651 total)
I am sorry but not much you can do without them fixing the extraction of the data.
Lets analyze the sample you gave us - which I trully...
May 19, 2018 at 1:40 am
Is that really the content of the file? if so it is a piece of crap data really.
ADV ,A_DAT ,A_TIM ,P_tit ,S_Tit
"SOCLEAN INC","5/16/2018","14:39:44",""Z-QUNICY,"DR K 60...
May 18, 2018 at 1:34 pm
Take in consideration what Steve and Sue said and look at better/correct ways of doing your process.
However just as a possible rewrite of what you have you can...
May 15, 2018 at 1:44 am
on the counts replace the "else 0" with "else null"
e.g change
COUNT(distinct (CASE WHEN obranome LIKE 'C%' AND etotaldeb <> 0 THEN obrano ELSE 0 END)
to
COUNT(distinct (CASE...
May 12, 2018 at 5:53 am
If referring to PowerBI Report Server then any will do - but be careful with licensing - either you have a Enterprise edition with SA (and you can then install...
May 8, 2018 at 11:25 am
instead of presenting 8 vcpu with 1 core each present less vcpu with more cores. that will sort the licensing limit
May 4, 2018 at 4:50 pm
you may be able to - but being a DMZ you probably should not anyway.
have a look at https://www.experts-exchange.com/questions/25053526/Passing-user-credentials-from-a-trusted-domain-through-SPN-and-Delegation.html. this contains other links that may help you...
April 22, 2018 at 5:08 pm
I'm experiencing a SSIS package error during execution. The package runs ok without error...
April 22, 2018 at 6:19 am
did you install SSDT also?
https://docs.microsoft.com/en-us/sql/ssdt/download-sql-server-data-tools-ssdt
March 26, 2018 at 11:11 am
March 20, 2018 at 6:44 pm
March 20, 2018 at 12:47 pm
If your PowerBI is loading the whole table then following will most likely apply.
Even if not some of it may still be worthwhile doing.
PowerBI uses the...
March 19, 2018 at 7:07 pm
any further char that you wish to include add them to the list
select *
from #TEMP t
where patindex('%[^A-Z ''-]%', name) = 0
[^A-Z ''-] means any...
March 16, 2018 at 8:04 am
select *
from #TEMP t
where patindex('%[^A-Z ''-]%', name) = 0
will do the trick here - but be aware that depending on your collation you may need more...
March 15, 2018 at 4:38 pm
Viewing 15 posts - 2,401 through 2,415 (of 2,651 total)