Viewing 15 posts - 1,786 through 1,800 (of 2,701 total)
it does help to read the manual
$A = Import-Csv -Path .\file.csv -Header 'column1', 'column2', 'column3'|select column1,column3
January 22, 2020 at 10:06 pm
it all depends on the requirements matrix that you should have done already - that will give you a hint of what you may need.
its not enough to say that...
January 22, 2020 at 8:49 pm
no need to do it - that comma is part of the data and unless you have a business rule that requires its removal you should leave it in.
In posh...
January 22, 2020 at 7:23 pm
how have you determined that you need in memory tables? can you supply the requirements matrix that you used for it?
unless you are looking into thousands of transactions per second...
January 22, 2020 at 5:39 pm
and second step - and sometimes the only one as what the "users" see does not necessarily reflect the underlying database - look at code that uses that db
SQL procs
Functions
View
and...
January 22, 2020 at 1:21 pm
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
Viewing 15 posts - 1,786 through 1,800 (of 2,701 total)