Viewing 15 posts - 1,741 through 1,755 (of 2,654 total)
I have a question about the code being posted:
So you run an update, and if no rows were updated (reading @@rowcount), then you do an insert. What happens if...
January 20, 2020 at 8:04 pm
union all is what you need ... but not necessarily the way you were thinking about it
declare @Temptable table
( ID ...
January 20, 2020 at 6:18 pm
The whole retry loop could be removed in my opinion. This is a basic upsert. The variables used for flow of control are deterministic so the retry is not...
January 20, 2020 at 6:02 pm
change the dynamic port to a fixed port - you can even set it to the current picked dynamic.
alternatively, and if you have this on a Domain, allow the AD...
January 20, 2020 at 1:13 pm
so you are telling us that doing a
insert into archive_table
select *
from main_table where filtering_column = date_to_archive
takes 5 minutes?
or that it takes that amount of time retrieving the...
January 20, 2020 at 12:38 pm
you need to install ssdt-bi for 2013 - not the standard one.
https://www.microsoft.com/en-us/download/details.aspx?id=42313
but why are you still using 2013? you should be on the latest version or at least on 2017
January 20, 2020 at 6:49 am
you need to stop just asking your questions here and google first - plenty of links given for it including some from oracle and one of their tools to do...
January 19, 2020 at 7:49 pm
Teaching a man to fish...That's pretty cool, Frederico. Thanks for taking the time to post that.
If don't mind, I have one more question... what do you use to schedule...
January 17, 2020 at 11:39 pm
Can you give us the ACTUAL explain plan, not the estimated one.
INSERT INTO @retTable
SELECT c.ClaimID, cd.ServiceCode, c.ServiceDate, cd.ServiceQty, c.CareProviderID,...
January 16, 2020 at 7:08 pm
you need to get back them and tell them if they wish to use the .conmgr file that means using SSIS Catalog and Environments and Configurations within the catalog as...
January 16, 2020 at 1:20 pm
did you even bothered reading the manual?
January 16, 2020 at 8:05 am
interesting and a good example for SSIS - but does not catch all cases, neither addresses the real issue that is that the file was badly created and is therefore...
January 16, 2020 at 1:13 am
this may help you https://docs.microsoft.com/en-us/analysis-services/analysis-services-backward-compatibility
regarding multidimensional only mentions are that these 2 are deprecated
and these were discontinued
January 15, 2020 at 7:49 pm
I never did figure out why it would work in one place and then not installed on the server. I'm still thinking there is potentially a permissions issue. I...
January 14, 2020 at 11:28 pm
code here instead of word doc - easier for most to see
one thing i would change is the fact that the code, if the record does not exist already, does...
January 14, 2020 at 11:23 pm
Viewing 15 posts - 1,741 through 1,755 (of 2,654 total)